Skip to content

Commit 9a2a6c6

Browse files
committed
chore(napi): remove --no-dts-cache
1 parent 4086e24 commit 9a2a6c6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,11 @@ indexmap = "2"
147147
proc-macro2 = "1"
148148
quote = "1"
149149
rustc-hash = "2"
150+
rustversion = "1"
150151
serde = "1"
151152
serde_json = "1"
152153
syn = { version = "2", default-features = false }
153154
unicode-id-start = "1"
154-
rustversion = "1"
155155

156156
#
157157
oxc-browserslist = "2"

napi/minify/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "index.js",
55
"browser": "browser.js",
66
"scripts": {
7-
"build-dev": "napi build --no-dts-cache --platform",
7+
"build-dev": "napi build --platform",
88
"build": "pnpm run build-dev --features allocator --release",
99
"test": "tsc && vitest run --dir ./test"
1010
},

napi/parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "index.js",
55
"browser": "wasm.mjs",
66
"scripts": {
7-
"build-dev": "napi build --no-dts-cache --platform --js bindings.js",
7+
"build-dev": "napi build --platform --js bindings.js",
88
"build": "pnpm run build-dev --features allocator --release",
99
"postbuild-dev": "node patch.mjs",
1010
"build-wasi": "pnpm run build-dev --release --target wasm32-wasip1-threads",

napi/playground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"./*": "./*"
1414
},
1515
"scripts": {
16-
"build": "napi build --no-dts-cache --platform --release --target wasm32-wasip1-threads && node patch.mjs",
17-
"dev": "napi build --no-dts-cache --platform --target wasm32-wasip1-threads && node patch.mjs"
16+
"build": "napi build --platform --release --target wasm32-wasip1-threads && node patch.mjs",
17+
"dev": "napi build --platform --target wasm32-wasip1-threads && node patch.mjs"
1818
},
1919
"dependencies": {
2020
"@napi-rs/wasm-runtime": "^0.2.7"

napi/transform/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "index.js",
55
"browser": "browser.js",
66
"scripts": {
7-
"build-dev": "napi --no-dts-cache build --platform",
7+
"build-dev": "napi build --platform",
88
"build": "pnpm run build-dev --features allocator --release",
99
"test": "tsc && vitest run --dir ./test"
1010
},

0 commit comments

Comments
 (0)