Skip to content

Commit bfed18b

Browse files
committed
Updated package.json
1 parent 7a333fb commit bfed18b

File tree

3 files changed

+136
-53
lines changed

3 files changed

+136
-53
lines changed

package-lock.json

Lines changed: 126 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-spec",
3-
"version": "0.1.67",
3+
"version": "0.1.68",
44
"license": "LGPL-3.0",
55
"homepage": "https://github.com/js-works/js-spec",
66
"main": "index.js",
@@ -18,34 +18,34 @@
1818
"dist"
1919
],
2020
"devDependencies": {
21-
"@types/chai": "^4.1.7",
21+
"@types/chai": "^4.2.0",
2222
"@types/mocha": "^5.2.7",
23-
"@types/node": "^12.6.9",
23+
"@types/node": "^12.7.3",
2424
"bestzip": "^2.1.4",
2525
"chai": "~4.2.0",
2626
"copyfiles": "^2.1.1",
27-
"coveralls": "^3.0.5",
27+
"coveralls": "^3.0.6",
2828
"cross-conf-env": "^1.1.2",
2929
"crypto.js": "^1.3.1",
3030
"mocha": "^6.2.0",
3131
"nyc": "^14.1.1",
32-
"rollup": "^1.18.0",
32+
"rollup": "^1.20.3",
3333
"rollup-plugin-gzip": "^2.2.0",
3434
"rollup-plugin-node-resolve": "^5.2.0",
3535
"rollup-plugin-replace": "^2.2.0",
3636
"rollup-plugin-terser": "^5.1.1",
3737
"rollup-plugin-tslint": "^0.2.2",
38-
"rollup-plugin-typescript2": "^0.22.1",
39-
"rollup-plugin-uglify": "^6.0.2",
38+
"rollup-plugin-typescript2": "^0.24.0",
39+
"rollup-plugin-uglify": "^6.0.3",
4040
"rollup-plugin-uglify-es": "0.0.1",
4141
"rxjs": "^6.5.2",
4242
"shx": "^0.3.2",
4343
"symbol-observable": "^1.2.0",
4444
"ts-loader": "^6.0.4",
4545
"ts-node": "^8.3.0",
46-
"tslint": "^5.18.0",
46+
"tslint": "^5.19.0",
4747
"typedoc": "^0.15.0",
48-
"typescript": "^3.5.3"
48+
"typescript": "^3.6.2"
4949
},
5050
"scripts": {
5151
"clean": "shx rm -rf ./build ./dist ./coverage",

src/main/api/Spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ const Spec = {
535535
}
536536

537537
if (invalidKeys.length > 0) {
538-
ret = new SpecError('Invalid keys:' + invalidKeys.join(', '))
538+
ret = new SpecError('Invalid key(s): ' + invalidKeys.join(', '))
539539
}
540540
}
541541

0 commit comments

Comments
 (0)