@milaboratories/pframes-rs-wasm 0.1.3 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/pframes-rs-wasm",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -32,23 +32,24 @@
|
|
|
32
32
|
"@milaboratories/pl-model-middle-layer": "1.11.9"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
|
-
"
|
|
36
|
-
"ts:check": "ts-builder linter --check --target node && ts-builder formatter --check",
|
|
35
|
+
"bump-version": "cargo run -p pframes_rs_meta --bin npm_version -r --locked",
|
|
37
36
|
"component-transpile": "rimraf src/generated && jco transpile -o src/generated --no-namespaced-exports",
|
|
38
37
|
"ts-builder-build": "ts-builder build --target node --build-config build.config.js",
|
|
39
|
-
"rust
|
|
40
|
-
"ts
|
|
41
|
-
"build": "node --run rust
|
|
38
|
+
"build:rust": "cargo build --target wasm32-wasip2",
|
|
39
|
+
"build:ts": "node --run component-transpile -- ../../target/wasm32-wasip2/debug/pframes_rs_wasm.wasm && node --run ts-builder-build",
|
|
40
|
+
"build": "node --run build:rust && node --run build:ts",
|
|
42
41
|
"postbuild": "rimraf package.tgz && pnpm pack --out package.tgz",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"ci-build": "node --run
|
|
42
|
+
"ci-build:rust": "node --run build:rust -- -r --locked",
|
|
43
|
+
"ci-build:ts": "node --run component-transpile -- ../../target/wasm32-wasip2/release/pframes_rs_wasm.wasm -O -- -O4 && node --run ts-builder-build",
|
|
44
|
+
"ci-build": "node --run ci-build:rust && node --run ci-build:ts",
|
|
46
45
|
"postci-build": "node --run postbuild",
|
|
47
46
|
"preci-test": "node --run ci-build",
|
|
48
|
-
"test": "ts-builder type-check --target node",
|
|
49
47
|
"ci-test": "node --run test",
|
|
50
48
|
"pretest": "node --run build",
|
|
51
|
-
"
|
|
52
|
-
"
|
|
49
|
+
"test": "ts-builder type-check --target node",
|
|
50
|
+
"fix:ts": "ts-builder format",
|
|
51
|
+
"fix": "node --run fix:ts",
|
|
52
|
+
"check:ts": "ts-builder linter --check --target node && ts-builder formatter --check",
|
|
53
|
+
"check": "node --run check:ts"
|
|
53
54
|
}
|
|
54
55
|
}
|