mirror of
https://github.com/danbulant/oxc
synced 2026-05-21 05:08:45 +00:00
## [0.30.1] - 2024-09-24 ### Features -5c323a2minifier: Loop compressor passes (#6013) (Boshen) ### Bug Fixes -9ca202acodegen: Preserve newlines between comments (#6014) (Boshen) -4a99372codegen: Print jsdoc comments for `TSEnumMember`s (#6007) (camc314) -97a2c41isolated-declarations: False positive for class private getter with non-inferrable return type (#5987) (michaelm) ### Performance -2b17003linter, prettier, diagnostics: Use `FxHashMap` instead of `std::collections::HashMap` (#5993) (camchenry) -7b90d79transformer: `SparseStack` always keep minimum 1 entry (#5962) (overlookmotel) -28fe80atransformer: Logical assignment operator transform use `SparseStack` (#5960) (overlookmotel) -9f7d4b7transformer: Exponentiation operator transform use `SparseStack` (#5959) (overlookmotel) -5dc0154transformer: Nullish coalescing operator transform use `SparseStack` (#5942) (overlookmotel) -618e89etransformer: Arrow function transform: reduce stack memory usage (#5940) (overlookmotel) ### Documentation -5a0d17cast: Document more AST nodes (#6000) (DonIsaac) -18371ddoxc: Include feature-guarded modules in docs.rs (#6012) (DonIsaac) -1abfe8fsemantic: Document `SymbolTable` (#5998) (DonIsaac) -f5eee72semantic: Correct docs for `Reference` (#5992) (overlookmotel) -860f108transformer: Add to arrow functions transform docs (#5989) (overlookmotel) ### Refactor -0a2f687minifier: Move dce conditional expression to `RemoveDeadCode` (#5971) (Boshen) -f02bf51transformer: Arrow function transform: remove unnecessary assertion (#6002) (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.1",
|
|
"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"
|
|
}
|
|
}
|