mirror of
https://github.com/danbulant/oxc
synced 2026-05-21 21:29:01 +00:00
## [0.30.4] - 2024-09-28 ### Bug Fixes -8582ae3codegen: Missing parentheses if there is a pure comment before a NewExpression as a ComputedMemberExpression's callee (#6105) (Dunqing) -fd6798fparser: Remove unintended `pub Kind` (#6109) (Boshen) -6f98aadsourcemap: Align sourcemap type with Rollup (#6133) (Boshen) -64d4756transformer: Fix debug assertion in `Stack` (#6106) (overlookmotel) ### Performance -05852a0codegen: Do not check whether there are annotation comments or not if we don't preserve annotation comments (#6107) (Dunqing) ### Documentation -26a273aoxc-transform: Update README (Boshen) -e2c5baftransformer: Fix formatting of README (#6111) (overlookmotel) ### Refactor -2090fcesemantic: Fix lint warning in nightly (#6110) (overlookmotel) -7bc3988transformer: Remove dead code (#6124) (overlookmotel) -07fe45btransformer: Exponentiation operator: convert to match (#6123) (overlookmotel) -4387845transformer: Share `TypeScriptOptions` with ref not `Rc` (#6121) (overlookmotel) -09e41c2transformer: Share `TransformCtx` with ref not `Rc` (#6118) (overlookmotel) -58fd6ebtransformer: Pre-allocate more stack space (#6095) (overlookmotel) -9ac80bdtransformer: Add wrapper around `NonNull` (#6115) (overlookmotel) -c50500etransformer: Move common stack functionality into `StackCommon` trait (#6114) (overlookmotel) -9839059transformer: Simplify `StackCapacity` trait (#6113) (overlookmotel) --------- Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
38 lines
1.2 KiB
JSON
38 lines
1.2 KiB
JSON
{
|
|
"name": "@oxc-parser/wasm",
|
|
"version": "0.30.4",
|
|
"description": "Wasm target for the oxc parser.",
|
|
"packageManager": "pnpm@9.9.0",
|
|
"keywords": [
|
|
"JavaScript",
|
|
"TypeScript",
|
|
"parser"
|
|
],
|
|
"author": "Boshen and oxc contributors",
|
|
"license": "MIT",
|
|
"homepage": "https://oxc.rs",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oxc-project/oxc",
|
|
"directory": "wasm/parser"
|
|
},
|
|
"funding": {
|
|
"url": "https://github.com/sponsors/Boshen"
|
|
},
|
|
"main": "./node/oxc_parser_wasm.js",
|
|
"browser": "./web/oxc_parser_wasm.js",
|
|
"types": "./node/oxc_parser_wasm.d.ts",
|
|
"files": [
|
|
"node",
|
|
"web"
|
|
],
|
|
"scripts": {
|
|
"build": "pnpm run build-node && pnpm run build-web && pnpm run copy-files && pnpm run clean-files",
|
|
"build-node": "pnpm run build-base --target nodejs --out-dir ../../npm/parser-wasm/node .",
|
|
"build-web": "pnpm run build-base --target web --out-dir ../../npm/parser-wasm/web .",
|
|
"build-base": "wasm-pack build --release --no-pack",
|
|
"copy-files": "cp ./package.json ../../npm/parser-wasm/package.json && cp ./README.md ../../npm/parser-wasm/README.md",
|
|
"clean-files": "rm ../../npm/parser-wasm/*/.gitignore",
|
|
"test": "node ./test-node.mjs"
|
|
}
|
|
}
|