Skip to content

Commit

Permalink
chore(package.json): update packge scripts
Browse files Browse the repository at this point in the history
- exclude newly added helper from code coverage
- bump up closuure, commitizen dependency version
- update wallaby configuration
  • Loading branch information
kwonoj committed Nov 11, 2015
1 parent c3bf3e7 commit 92a247d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"build_es6": "rm -rf dist/es6 && tsc src/Rx.ts src/Rx.KitchenSink.ts --outDir dist/es6 --sourceMap --target ES6 -d --diagnostics",
"build_closure": "java -jar ./node_modules/google-closure-compiler/compiler.jar ./dist/global/Rx.js --create_source_map ./dist/global/Rx.min.js.map --js_output_file ./dist/global/Rx.min.js",
"build_global": "rm -rf dist/global && mkdir \"dist/global\" && browserify src/Rx.global.js --outfile dist/global/Rx.js && npm run build_closure",
"build_perf": "npm run build_es6 && npm run build_cjs && npm run build_global && webdriver-manager update && npm run perf",
"build_test": "rm -rf dist/ && npm run lint && npm run build_es6 && npm run build_cjs && jasmine",
"build_cover": "rm -rf dist/ && npm run lint && npm run build_es6 && npm run build_cjs && npm run cover",
"build_perf": "npm run build_cjs && npm run build_global && webdriver-manager update && npm run perf",
"build_test": "rm -rf dist/ && npm run lint && npm run build_cjs && jasmine",
"build_cover": "rm -rf dist/ && npm run lint && npm run build_cjs && npm run cover",
"build_docs": "./docgen.sh",
"lint_perf": "eslint perf/ --fix",
"lint_spec": "eslint spec/**/*.js --fix",
"lint_src": "tslint -c .tslintrc src/*.ts src/**/*.ts src/**/**/*.ts",
"lint": "npm run lint_src && npm run lint_spec && npm run lint_perf",
"cover": "istanbul cover -x \"*-spec.js index.js *-helper.js\" jasmine && npm run cover_remapping",
"cover": "istanbul cover -x \"*-spec.js index.js *-helper.js spec/helpers/*\" jasmine && npm run cover_remapping",
"cover_remapping": "remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped.json && remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped.lcov -t lcovonly && remap-istanbul -i coverage/coverage.json -o coverage/coverage-remapped -t html",
"test": "jasmine && markdown-doctest",
"watch": "watch \"echo triggering build && npm run build_test && echo build completed\" src -d -u -w=15",
Expand Down Expand Up @@ -80,15 +80,15 @@
"benchpress": "2.0.0-alpha.37.2",
"browserify": "11.0.0",
"colors": "1.1.2",
"commitizen": "2.3.0",
"commitizen": "2.4.4",
"coveralls": "2.11.4",
"cz-conventional-changelog": "1.1.4",
"esdoc": "0.2.5",
"eslint": "1.5.1",
"fs-extra": "0.24.0",
"ghooks": "0.3.2",
"glob": "5.0.14",
"google-closure-compiler": "20150920.0.0",
"google-closure-compiler": "20151015.0.0",
"http-server": "0.8.0",
"istanbul": "0.3.22",
"jasmine": "2.3.2",
Expand Down
2 changes: 1 addition & 1 deletion src/observables/ForkJoinObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class ForkJoinObservable<T> extends Observable<T> {
Promise<any> |
((...values: Array<any>) => any)>) {
super();
}
}

static create(...sources: Array<Observable<any> |
Promise<any> |
Expand Down
2 changes: 1 addition & 1 deletion wallaby.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = wallaby => ({
files: [
'index.js',
'src/**/*.ts',
{pattern: 'spec/helpers/test-helper.js', instrument: false}
{pattern: 'spec/helpers/*.js', instrument: false}
],

tests: ['spec/**/*-spec.js'],
Expand Down

0 comments on commit 92a247d

Please sign in to comment.