|
63 | 63 | "lint":"eslint src test package.json", |
64 | 64 | "test":"vitest", |
65 | 65 | "test:cover":"vitest --coverage", |
66 | | -"update-fixtures":"ts-node --transpile-only scripts/update-fixtures-ast.js &&ts-node --transpile-only scripts/update-fixtures-document-fragment.js", |
| 66 | +"update-fixtures":"npm run ts -- scripts/update-fixtures-ast.js &&npm run ts -- scripts/update-fixtures-document-fragment.js", |
67 | 67 | "preversion":"npm test", |
68 | 68 | "version":"npm run -s build", |
69 | 69 | "postversion":"git push && git push --tags", |
70 | 70 | "watch":"run-p watch:*", |
71 | 71 | "watch:tsdown":"tsdown --watch", |
72 | | -"watch:update-ast":"wait-on dist/index.js && warun dist/index.js\"test/fixtures/ast/*/*.vue\" -- ts-node scripts/update-fixtures-ast.js" |
| 72 | +"watch:update-ast":"wait-on dist/index.js && warun dist/index.js\"test/fixtures/ast/*/*.vue\" -- npm run ts -- scripts/update-fixtures-ast.js", |
| 73 | +"ts":"ts-node --transpile-only --compilerOptions '{\"module\":\"nodenext\",\"moduleResolution\":\"nodenext\"}'" |
73 | 74 | }, |
74 | 75 | "repository": { |
75 | 76 | "type":"git", |
|