Skip to content

Commit 3ba1511

Browse files
authored
Generate AST transformers from config (rollup#5337)
* Add type check for script files * Use script types * Start work on AST converter * Support optional nodes * Add convertNodeList helper * Add types * Add flags * Rename file * Generate Rust type constants * Generate additional Rust constants, remove old types * Sort types * Make it work for simple program * Unify and simplify conversion logic This allows to inline node if possible and denotes inlined nodes in the type. * Add missing AST types * Fix failed merge * Use fallback logic to make some node conversions nicer * Allow to specify duplicated nodes Avoid Rust field constants for duplicated nodes to avoid warnings.
1 parent 7fa474c commit 3ba1511

File tree

19 files changed

+3971
-2436
lines changed

19 files changed

+3971
-2436
lines changed

.github/workflows/build-and-tests.yml

+4
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ jobs:
5353
run: npm run test:package
5454
- name: CLI Docs
5555
run: npm run test:options
56+
- name: Generated Code
57+
run: |
58+
npm run build:ast-converters
59+
git diff HEAD --exit-code --ignore-space-at-eol
5660
5761
build:
5862
strategy:

package-lock.json

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
}
3434
},
3535
"scripts": {
36-
"build": "npm run build:wasm && concurrently -c green,blue \"npm run build:napi -- --release\" \"npm:build:js\" && npm run build:copy-native",
36+
"build": "concurrently -c green,blue \"npm run build:wasm\" \"npm:build:ast-converters\" && concurrently -c green,blue \"npm run build:napi -- --release\" \"npm:build:js\" && npm run build:copy-native",
3737
"build:quick": "concurrently -c green,blue 'npm:build:napi' 'npm:build:cjs' && npm run build:copy-native",
3838
"build:napi": "napi build --platform --dts native.d.ts --js false --cargo-cwd rust -p bindings_napi --cargo-name bindings_napi",
3939
"build:wasm": "wasm-pack build rust/bindings_wasm --out-dir ../../wasm --target web --no-pack && shx rm wasm/.gitignore",
@@ -48,6 +48,7 @@
4848
"build:cjs": "rollup --config rollup.config.ts --configPlugin typescript --configTest --forceExit",
4949
"build:bootstrap": "shx mv dist dist-build && node dist-build/bin/rollup --config rollup.config.ts --configPlugin typescript --forceExit && shx rm -rf dist-build",
5050
"build:docs": "vitepress build docs",
51+
"build:ast-converters": "node scripts/generate-ast-converters.js",
5152
"preview:docs": "vitepress preview docs",
5253
"ci:artifacts": "napi artifacts",
5354
"ci:lint": "concurrently -c red,yellow,green,blue 'npm:lint:js:nofix' 'npm:lint:native-js' 'npm:lint:markdown:nofix' 'npm:lint:rust:nofix'",
@@ -127,6 +128,7 @@
127128
"@rollup/plugin-terser": "^0.4.4",
128129
"@rollup/plugin-typescript": "11.1.5",
129130
"@rollup/pluginutils": "^5.1.0",
131+
"@types/eslint": "^8.44.9",
130132
"@types/inquirer": "^9.0.7",
131133
"@types/mocha": "^10.0.6",
132134
"@types/node": "18.0.0",

0 commit comments

Comments
 (0)