Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update pacakge.json to lockfileVersion 2 #114

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Example/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dist/JavaScriptKitExample.wasm: JavaScriptKitExample
cp ./JavaScriptKitExample/.build/debug/JavaScriptKitExample $@

node_modules:
npm install
npm ci
build: node_modules dist/JavaScriptKitExample.wasm
cd ../Runtime && npm run build
npm run build
5,681 changes: 5,665 additions & 16 deletions Example/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dependencies": {
"@wasmer/wasi": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0",
"javascript-kit-swift": "file:../Runtime"
"javascript-kit-swift": "file:.."
},
"devDependencies": {
"webpack": "^4.44.2",
Expand Down
2 changes: 1 addition & 1 deletion IntegrationTests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dist/%.wasm: TestSuites/.build/$(CONFIGURATION)/%.wasm
cp $< $@

node_modules: package-lock.json
npm install
npm ci

.PHONY: build_rt
build_rt: node_modules
Expand Down
216 changes: 215 additions & 1 deletion IntegrationTests/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions IntegrationTests/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"private": true,
"dependencies": {
"javascript-kit-swift": "file:..",
"@wasmer/wasi": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0"
"@wasmer/wasmfs": "^0.12.0",
"javascript-kit-swift": "file:.."
}
}
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ MAKEFILE_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
.PHONY: bootstrap
bootstrap:
./scripts/install-toolchain.sh
npm install
npm ci

.PHONY: build
build:
Expand All @@ -26,4 +26,4 @@ run_benchmark:

.PHONY: perf-tester
perf-tester:
cd ci/perf-tester && npm install
cd ci/perf-tester && npm ci
Loading