Skip to content

Commit

Permalink
fix: remove compile step; breaks for unknown reason in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Jan 3, 2025
1 parent 8363aea commit 10dd864
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
},
"scripts": {
"benchmark": "ts-node --transpile-only test/benchmark.ts",
"build": "npm run compile-parser && del-cli ./dist && tsc",
"compile-parser": "nearleyc src/grammar.ne --out ./src/grammar.ts && sleep 1 && sed -i '' 's/loc?: number/loc: number/g' src/grammar.ts && sed -i '' 's/@ts-expect-error//g' src/grammar.ts && sed -i '' 's/@ts-ignore//g' src/grammar.ts && eslint --fix src/grammar.ts",
"build": "del-cli ./dist && tsc",
"compile-parser": "nearleyc src/grammar.ne --out ./src/grammar.ts && sed -i '' 's/loc?: number/loc: number/g' src/grammar.ts && sed -i '' 's/@ts-expect-error//g' src/grammar.ts && sed -i '' 's/@ts-ignore//g' src/grammar.ts && eslint --fix src/grammar.ts",
"dev": "tsc --watch",
"lint": "eslint ./src ./test && tsc --noEmit",
"test": "NODE_ENV=test ava --serial --verbose",
Expand Down

0 comments on commit 10dd864

Please sign in to comment.