swc-plugin-import-meta-env
Advanced tools
Comparing version 0.4.0 to 0.4.1
{ | ||
"name": "swc-plugin-import-meta-env", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "@swc plugin for handling the transformation of import.meta.env", | ||
@@ -21,5 +21,11 @@ "author": "Alex Miller <codex.nz@gmail.com>", | ||
"scripts": { | ||
"build": "cargo build-wasi", | ||
"build:release": "pnpm run build --release", | ||
"prepublishOnly": "cargo build-wasi --release", | ||
"prepack": "cargo build-wasi --release && cp target/wasm32-wasi/release/swc_plugin_import_meta_env.wasm .", | ||
"release": "release-it" | ||
"prepack": "pnpm run build:release && cp target/wasm32-wasi/release/swc_plugin_import_meta_env.wasm .", | ||
"release": "release-it", | ||
"test": "pnpm run test:setup && pnpm run test:unit && pnpm run test:integration", | ||
"test:setup": "pnpm run build && cp target/wasm32-wasi/debug/swc_plugin_import_meta_env.wasm .", | ||
"test:unit": "cargo test --color always", | ||
"test:integration": "pnpm exec jest --config ./tests/integration/jest.config.cjs --no-cache" | ||
}, | ||
@@ -30,11 +36,14 @@ "files": [ | ||
"preferUnplugged": true, | ||
"packageManager": "pnpm@8.14.1", | ||
"packageManager": "pnpm@8.14.2", | ||
"devDependencies": { | ||
"@swc/core": "^1.3.68", | ||
"@swc/core": "^1.3.105", | ||
"@swc/jest": "^0.2.31", | ||
"@types/jest": "^29.5.11", | ||
"auto-changelog": "^2.4.0", | ||
"release-it": "^17.0.0" | ||
"jest": "^29.7.0", | ||
"release-it": "^17.0.1" | ||
}, | ||
"peerDependencies": { | ||
"@swc/core": "^1.3.68" | ||
"@swc/core": "^1.3.105" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
429332
6