Skip to content

Commit 9bd5825

Browse files
committedJun 8, 2019
add npm run update-dependencies and run it
1 parent 31fae3f commit 9bd5825

File tree

3 files changed

+45
-31
lines changed

3 files changed

+45
-31
lines changed
 

‎README.md

+6
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,12 @@ npm version patch|minor|major
332332
make publish
333333
```
334334

335+
### Updating Dependencies
336+
337+
```console
338+
npm run update-dependencies
339+
```
340+
335341
## Big Thanks
336342

337343
Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs.

‎package-lock.json

+37-30
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"lint:print-config": "eslint --print-config .eslintrc.js",
3434
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
3535
"asbuild:development": "asc assembly/index.ts -b dist/wasm/msgpack.wasm -t dist/wasm/msgpack.wat --sourceMap --validate --debug && ts-node tools/pack-wasm.ts",
36-
"asbuild:production": "asc assembly/index.ts -b dist/wasm/msgpack.wasm -t dist/wasm/msgpack.wat --sourceMap --validate -O3 && ts-node tools/pack-wasm.ts"
36+
"asbuild:production": "asc assembly/index.ts -b dist/wasm/msgpack.wasm -t dist/wasm/msgpack.wat --sourceMap --validate -O3 && ts-node tools/pack-wasm.ts",
37+
"update-dependencies": "rimraf node_modules/ package-lock.json && npm install && npm dedupe"
3738
},
3839
"repository": {
3940
"type": "git",

0 commit comments

Comments
 (0)
Please sign in to comment.