mirror of
https://github.com/danbulant/oxc
synced 2026-05-21 21:29:01 +00:00
## [0.17.1] - 2024-07-06 ### Bug Fixes -aa585d3ast_codegen, ast: Visit `ExpressionArrayElement` as `Expression`. (#4061) (rzvxa) -564a75acodegen: Missing TypeParameters in TSConstructSignature (#4063) (michaelm) -adee728isolated_declarations: Don't report an error for parameters if they are ObjectPattern or ArrayPattern with an explicit type (#4065) (michaelm) -1b8f208isolated_declarations: Correct emit for private static methods (#4064) (michaelm) -719fb96minifier: Omit dce `undefined` which can be a shadowed variable (#4073) (Boshen) -150f4d9napi/transform: Display error with spanned messages (Boshen) ### Performance -7fe2a2fparser: Do not copy comments (#4067) (overlookmotel) ### Refactor -8fa98e0ast: Inline trivial functions and shorten code (#4066) (overlookmotel) -65aee19isolated-declarations: Reorganize scope tree (#4070) (Luca Bruno) Co-authored-by: Boshen <Boshen@users.noreply.github.com>
40 lines
No EOL
1.2 KiB
JSON
40 lines
No EOL
1.2 KiB
JSON
{
|
|
"name": "@oxc-parser/wasm",
|
|
"version": "0.17.1",
|
|
"description": "Wasm target for the oxc parser.",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"wasm-pack": "^0.12.1"
|
|
}
|
|
} |