Skip to content

Commit 92a247d

Browse files
committed
chore(package.json): update packge scripts
- exclude newly added helper from code coverage - bump up closuure, commitizen dependency version - update wallaby configuration
1 parent c3bf3e7 commit 92a247d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"build_es6": "rm -rf dist/es6 && tsc src/Rx.ts src/Rx.KitchenSink.ts --outDir dist/es6 --sourceMap --target ES6 -d --diagnostics",
1919
"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",
2020
"build_global": "rm -rf dist/global && mkdir \"dist/global\" && browserify src/Rx.global.js --outfile dist/global/Rx.js && npm run build_closure",
21-
"build_perf": "npm run build_es6 && npm run build_cjs && npm run build_global && webdriver-manager update && npm run perf",
22-
"build_test": "rm -rf dist/ && npm run lint && npm run build_es6 && npm run build_cjs && jasmine",
23-
"build_cover": "rm -rf dist/ && npm run lint && npm run build_es6 && npm run build_cjs && npm run cover",
21+
"build_perf": "npm run build_cjs && npm run build_global && webdriver-manager update && npm run perf",
22+
"build_test": "rm -rf dist/ && npm run lint && npm run build_cjs && jasmine",
23+
"build_cover": "rm -rf dist/ && npm run lint && npm run build_cjs && npm run cover",
2424
"build_docs": "./docgen.sh",
2525
"lint_perf": "eslint perf/ --fix",
2626
"lint_spec": "eslint spec/**/*.js --fix",
2727
"lint_src": "tslint -c .tslintrc src/*.ts src/**/*.ts src/**/**/*.ts",
2828
"lint": "npm run lint_src && npm run lint_spec && npm run lint_perf",
29-
"cover": "istanbul cover -x \"*-spec.js index.js *-helper.js\" jasmine && npm run cover_remapping",
29+
"cover": "istanbul cover -x \"*-spec.js index.js *-helper.js spec/helpers/*\" jasmine && npm run cover_remapping",
3030
"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",
3131
"test": "jasmine && markdown-doctest",
3232
"watch": "watch \"echo triggering build && npm run build_test && echo build completed\" src -d -u -w=15",
@@ -80,15 +80,15 @@
8080
"benchpress": "2.0.0-alpha.37.2",
8181
"browserify": "11.0.0",
8282
"colors": "1.1.2",
83-
"commitizen": "2.3.0",
83+
"commitizen": "2.4.4",
8484
"coveralls": "2.11.4",
8585
"cz-conventional-changelog": "1.1.4",
8686
"esdoc": "0.2.5",
8787
"eslint": "1.5.1",
8888
"fs-extra": "0.24.0",
8989
"ghooks": "0.3.2",
9090
"glob": "5.0.14",
91-
"google-closure-compiler": "20150920.0.0",
91+
"google-closure-compiler": "20151015.0.0",
9292
"http-server": "0.8.0",
9393
"istanbul": "0.3.22",
9494
"jasmine": "2.3.2",

src/observables/ForkJoinObservable.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class ForkJoinObservable<T> extends Observable<T> {
99
Promise<any> |
1010
((...values: Array<any>) => any)>) {
1111
super();
12-
}
12+
}
1313

1414
static create(...sources: Array<Observable<any> |
1515
Promise<any> |

wallaby.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = wallaby => ({
22
files: [
33
'index.js',
44
'src/**/*.ts',
5-
{pattern: 'spec/helpers/test-helper.js', instrument: false}
5+
{pattern: 'spec/helpers/*.js', instrument: false}
66
],
77

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

0 commit comments

Comments
 (0)