Skip to content

Commit

Permalink
Merge pull request #2 from sony/fixed_check_update
Browse files Browse the repository at this point in the history
fixed: check:update tasks
  • Loading branch information
Shin-Ogata authored Oct 30, 2017
2 parents 2fce23c + d71f761 commit 51b1a95
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions packages/cafeteria/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"test": "run-s -l clean compile lint unit-test",
"ci": "run-s -l clean compile lint unit-test metrics document build:release",
"package": "cordova build --release",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"update": "npm update --save-dev && npm update --save && npm run update:cdp",
"update:cdp": "node ./tasks/cafeteria.js --operation=sdk",
"update:cdp:core": "node ./tasks/cafeteria.js --operation=sdk --target=cdp-core",
Expand Down Expand Up @@ -65,7 +65,7 @@
"porting:ios": "node ./tasks/porting-setup.js --platform=ios --porting=rebase",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js app/scripts/**/*.js app/lib/scripts/**/*.js platforms/*/porting/scripts/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e app/**/*.d.ts app/**/*.ts platforms/*/porting/scripts/**/*.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e app/**/*.d.ts app/**/*.ts platforms/*/porting/scripts/**/*.ts",
"tdd": "testem -f ./tests/runner/testem-amd.js",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -49,7 +49,7 @@
"minify": "uglifyjs dist/cdp.core.js -o dist/cdp.core.min.js --comments /^!/ --source-map includeSources,url=cdp.core.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"tdd": "testem -f ./tests/runner/testem-amd.js",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-framework-jqm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -52,7 +52,7 @@
"minify": "uglifyjs dist/cdp.framework.jqm.js -o dist/cdp.framework.jqm.min.js --comments /^!\\s\\s\\*\\scdp/ --source-map includeSources,url=cdp.framework.jqm.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"tdd": "testem -f ./tests/runner/testem-amd.js",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -52,7 +52,7 @@
"minify": "uglifyjs dist/cdp.i18n.js -o dist/cdp.i18n.min.js --comments /^!\\s\\s\\*\\scdp/ --source-map includeSources,url=cdp.i18n.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"tdd": "testem -f ./tests/runner/testem-amd.js",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-lazyload/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -47,7 +47,7 @@
"minify": "uglifyjs dist/cdp.lazyload.js -o dist/cdp.lazyload.min.js --comments /^!/ --source-map includeSources,url=cdp.lazyload.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
"coverage": "run-s clean:coverage compile coverage:exec",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"package": "run-s -l clean build lint document && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run setup:exports && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -49,7 +49,7 @@
"minify": "uglifyjs dist/cdp.js -o dist/cdp.min.js --comments /^!\\s\\s\\*\\s@cdp/ --source-map includeSources,url=cdp.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"coverage": "run-s clean:coverage coverage:exec coverage:report",
"coverage:exec": "node ./tasks/collect-coverage.js",
"coverage:collect": "node ./tasks/collect-coverage.js --collect",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-nativebridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -50,7 +50,7 @@
"minify": "uglifyjs dist/cdp.nativebridge.js -o dist/cdp.nativebridge.min.js --comments /^!\\s\\s\\*\\scdp/ --source-map includeSources,url=cdp.nativebridge.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
"coverage": "run-s clean:coverage compile:ts coverage:exec",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-promise/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -50,7 +50,7 @@
"minify": "uglifyjs dist/cdp.promise.js -o dist/cdp.promise.min.js --comments /^!/ --source-map includeSources,url=cdp.promise.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"tdd": "testem -f ./tests/runner/testem-amd.js",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -50,7 +50,7 @@
"minify": "uglifyjs dist/cdp.tools.js -o dist/cdp.tools.min.js --comments /^!\\s\\s\\*\\scdp/ --source-map includeSources,url=cdp.tools.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
"coverage": "run-s clean:coverage compile:ts coverage:exec",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-ui-jqm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -56,7 +56,7 @@
"minify": "node ./tasks/minify.js --js --css --map --external=false --rename",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
"coverage": "run-s clean:coverage compile:ts coverage:exec",
Expand Down
4 changes: 2 additions & 2 deletions packages/cdp-ui-listview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"package": "run-s ci && node ./tasks/clean.js --built --test --temp",
"update": "npm run update:depends && npm run rearrange && npm run package",
"update:depends": "npm update --save-dev && npm update --save",
"check:update": "npm outdated",
"check:update": "npm outdated || exit 0",
"check:coverage": "npm run coverage:report",
"depends": "npm list --depth=1",
"depends:prod": "npm list --depth=0 --only=prod",
Expand All @@ -50,7 +50,7 @@
"minify": "uglifyjs dist/cdp.ui.listview.js -o dist/cdp.ui.listview.min.js --comments /^!\\s\\s\\*\\scdp/ --source-map includeSources,url=cdp.ui.listview.min.js.map",
"lint": "run-p -l lint:*",
"lint:js": "eslint tasks/**/*.js src/**/*.js -c tests/eslint/eslintrc.json",
"lint:ts": "tslint --type-check -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"lint:ts": "tslint -p ./tsconfig.json -c ./tests/tslint/tslint.json -e src/**/*.d.ts",
"unit-test": "npm run coverage:exec",
"unit-test:ci": "testem ci -f ./tests/runner/testem-ci.js",
"coverage": "run-s clean:coverage compile:ts coverage:exec",
Expand Down

0 comments on commit 51b1a95

Please sign in to comment.