Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix travis issue #14

Merged
merged 11 commits into from
Mar 7, 2019
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,9 @@ before_install:
- npm update

install:
- npm ci
- lerna bootstrap --npm-ci-mode --ignore-scripts
- lerna exec --no-bail --npm-ci-mode -- npm run postinstall
- npm install

script:
- lerna run build
- lerna run lint
- npm run compile
- npm run lint
# - npm run coveralls
1,565 changes: 893 additions & 672 deletions generator-jsonforms/package-lock.json

Large diffs are not rendered by default.

163 changes: 132 additions & 31 deletions jsonforms-tooling-common/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions jsonforms-tooling-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
"lint": "tslint --project tsconfig.json"
},
"dependencies": {
"@jsonforms/core": "^2.0.12",
"@jsonforms/core": "^2.2.0",
"@jsonforms/react": "^2.2.0",
"ajv": "^6.5.5",
"yeoman-environment": "^2.3.4"
"yeoman-environment": "^2.3.4",
"react": "^16.8.3",
"redux": "^3.0.0"
},
"type-check": "tsc",
"devDependencies": {
Expand Down
Loading