@lithia-js/native 1.0.0-canary.3 → 1.0.0-canary.5
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/CHANGELOG.md +13 -0
- package/package.json +13 -13
- package/Cargo.toml +0 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @lithia-js/native
|
|
2
2
|
|
|
3
|
+
## 1.0.0-canary.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e64696c: Remove unused imports from @lithia-js/utils and fixed `create-lithia` CLI
|
|
8
|
+
|
|
9
|
+
## 1.0.0-canary.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fb9cee1: Enhanced production build support, fixed import module bug on production environment, fixed stdio inherit bug on `create-lithia`
|
|
14
|
+
- 00d8f11: fixed available events after connection
|
|
15
|
+
|
|
3
16
|
## 1.0.0-canary.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lithia-js/native",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -40,18 +40,6 @@
|
|
|
40
40
|
"access": "public",
|
|
41
41
|
"provenance": true
|
|
42
42
|
},
|
|
43
|
-
"optionalDependencies": {
|
|
44
|
-
"@lithia-js/native-darwin-x64": "1.0.0-canary.3",
|
|
45
|
-
"@lithia-js/native-win32-x64-msvc": "1.0.0-canary.3",
|
|
46
|
-
"@lithia-js/native-linux-x64-gnu": "1.0.0-canary.3",
|
|
47
|
-
"@lithia-js/native-linux-x64-musl": "1.0.0-canary.3",
|
|
48
|
-
"@lithia-js/native-linux-arm-gnueabihf": "1.0.0-canary.3",
|
|
49
|
-
"@lithia-js/native-linux-arm64-gnu": "1.0.0-canary.3",
|
|
50
|
-
"@lithia-js/native-darwin-arm64": "1.0.0-canary.3",
|
|
51
|
-
"@lithia-js/native-win32-ia32-msvc": "1.0.0-canary.3",
|
|
52
|
-
"@lithia-js/native-linux-arm64-musl": "1.0.0-canary.3",
|
|
53
|
-
"@lithia-js/native-win32-arm64-msvc": "1.0.0-canary.3"
|
|
54
|
-
},
|
|
55
43
|
"exports": {
|
|
56
44
|
".": {
|
|
57
45
|
"types": "./index.d.ts",
|
|
@@ -59,6 +47,18 @@
|
|
|
59
47
|
"import": "./index.js"
|
|
60
48
|
}
|
|
61
49
|
},
|
|
50
|
+
"optionalDependencies": {
|
|
51
|
+
"@lithia-js/native-darwin-x64": "1.0.0-canary.5",
|
|
52
|
+
"@lithia-js/native-win32-x64-msvc": "1.0.0-canary.5",
|
|
53
|
+
"@lithia-js/native-linux-x64-gnu": "1.0.0-canary.5",
|
|
54
|
+
"@lithia-js/native-linux-x64-musl": "1.0.0-canary.5",
|
|
55
|
+
"@lithia-js/native-linux-arm-gnueabihf": "1.0.0-canary.5",
|
|
56
|
+
"@lithia-js/native-linux-arm64-gnu": "1.0.0-canary.5",
|
|
57
|
+
"@lithia-js/native-darwin-arm64": "1.0.0-canary.5",
|
|
58
|
+
"@lithia-js/native-win32-ia32-msvc": "1.0.0-canary.5",
|
|
59
|
+
"@lithia-js/native-linux-arm64-musl": "1.0.0-canary.5",
|
|
60
|
+
"@lithia-js/native-win32-arm64-msvc": "1.0.0-canary.5"
|
|
61
|
+
},
|
|
62
62
|
"scripts": {
|
|
63
63
|
"artifacts": "napi artifacts --npm-dir npm",
|
|
64
64
|
"build:rs": "napi build --platform --release"
|
package/Cargo.toml
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
[package]
|
|
2
|
-
name = "lithia_native"
|
|
3
|
-
version = "5.0.0"
|
|
4
|
-
edition = "2021"
|
|
5
|
-
|
|
6
|
-
[lib]
|
|
7
|
-
path = "src/lib.rs"
|
|
8
|
-
crate-type = ["cdylib"]
|
|
9
|
-
|
|
10
|
-
[dependencies]
|
|
11
|
-
napi = { version = "3.8.2", features = ["napi9"] }
|
|
12
|
-
napi-derive = { version = "3.5.1" }
|
|
13
|
-
walkdir = "2.5.0"
|
|
14
|
-
globset = "0.4.18"
|
|
15
|
-
rayon = "1.11"
|
|
16
|
-
swc_common = { version = "18.0.1", features = ["concurrent", "sourcemap"] }
|
|
17
|
-
swc_ecma_codegen = "22.0.0"
|
|
18
|
-
swc_ecma_parser = "33.0.0"
|
|
19
|
-
swc_ecma_transforms_base = "36.0.1"
|
|
20
|
-
swc_ecma_transforms_typescript = "39.0.1"
|
|
21
|
-
swc_ecma_transforms_module = "39.0.0"
|
|
22
|
-
serde_json = "1.0.149"
|
|
23
|
-
swc_ecma_ast = "20.0.0"
|
|
24
|
-
swc_ecma_visit = "20.0.0"
|
|
25
|
-
swc_atoms = "9.0.0"
|
|
26
|
-
pathdiff = "0.2"
|
|
27
|
-
regex = { version = "1.12.2" }
|
|
28
|
-
serde = { version = "1.0.228", features = ["derive"] }
|
|
29
|
-
|
|
30
|
-
[dev-dependencies]
|
|
31
|
-
tempfile = "3.24.0"
|