@rue-js/runtime-vapor 0.0.27 → 0.0.28
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 +5 -4
- package/pkg/package.json +17 -0
- package/pkg/rue_runtime_vapor.d.ts +1982 -0
- package/pkg/rue_runtime_vapor.js +4 -0
- package/pkg/rue_runtime_vapor_bg.js +1921 -0
- package/pkg/rue_runtime_vapor_bg.wasm +0 -0
- package/pkg/rue_runtime_vapor_bg.wasm.d.ts +98 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rue-js/runtime-vapor",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.28",
|
|
4
4
|
"description": "Rue runtime implemented in Rust and compiled to WebAssembly",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rue",
|
|
@@ -38,9 +38,10 @@
|
|
|
38
38
|
"c8": "^10.1.3"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
|
-
"
|
|
42
|
-
"build": "wasm-pack build --release --target bundler --out-dir pkg",
|
|
43
|
-
"build
|
|
41
|
+
"cleanup-wasm-pack": "node -e \"const fs=require('fs');for(const p of ['pkg/.gitignore','pkg-node/.gitignore']){if(fs.existsSync(p))fs.unlinkSync(p)}\"",
|
|
42
|
+
"build-dev": "wasm-pack build --release --target bundler --out-dir pkg --features dev && npm run cleanup-wasm-pack",
|
|
43
|
+
"build": "wasm-pack build --release --target bundler --out-dir pkg && npm run cleanup-wasm-pack",
|
|
44
|
+
"build-node": "wasm-pack build --release --target nodejs --out-dir pkg-node --features log --features dev && npm run cleanup-wasm-pack",
|
|
44
45
|
"dev": "wasm-pack watch",
|
|
45
46
|
"docs": "cargo doc --no-deps",
|
|
46
47
|
"test": "wasm-pack test --node",
|
package/pkg/package.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "rue-runtime-vapor",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"files": [
|
|
6
|
+
"rue_runtime_vapor_bg.wasm",
|
|
7
|
+
"rue_runtime_vapor.js",
|
|
8
|
+
"rue_runtime_vapor_bg.js",
|
|
9
|
+
"rue_runtime_vapor.d.ts"
|
|
10
|
+
],
|
|
11
|
+
"main": "rue_runtime_vapor.js",
|
|
12
|
+
"types": "rue_runtime_vapor.d.ts",
|
|
13
|
+
"sideEffects": [
|
|
14
|
+
"./rue_runtime_vapor.js",
|
|
15
|
+
"./snippets/*"
|
|
16
|
+
]
|
|
17
|
+
}
|