mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
## [0.17.2] - 2024-07-08 ### Features -115ac3ballocator: Introduce `FromIn` and `IntoIn` traits. (#4088) (rzvxa) -720983anapi/transform: Allow setting `sourceType` to `transform` (#4113) (Boshen) -e386b62semantic: Check for invalid type import assignments (#4097) (DonIsaac) ### Bug Fixes -5472b7ccodegen: 256 indentations level is not enough for codegen (Boshen) -5c31236isolated-declarations: Keep literal value for readonly property (#4106) (Dunqing) -e67c7d1isolated-declarations: Do not infer type for private parameters (#4105) (Dunqing) -3fcad5eisolated_declarations: Remove nested AssignmentPatterns from inside parameters (#4077) (michaelm) -f8d77e4isolated_declarations: Infer type of template literal expressions as string (#4068) (michaelm) -0f02608semantic: Bind `TSImportEqualsDeclaration`s (#4100) (Don Isaac) -4413e2dtransformer: Missing initializer for readonly consructor properties (#4103) (Don Isaac) ### Performance -7ed27b7isolated-declarations: Use `FxHashSet` instead of `Vec` to speed up the `contain` (#4074) (Dunqing) -9114c8esemantic: Keep a single map of unresolved references (#4107) (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.2",
|
|
"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.13.0"
|
|
}
|
|
} |