Skip to content

Commit

Permalink
Fix the compilation step to fix imports before finishing
Browse files Browse the repository at this point in the history
  • Loading branch information
aneshodza committed Apr 23, 2024
1 parent 530dd97 commit 711ad03
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
21 changes: 17 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"build": "tsc --outDir out/",
"build": "npm run build:compile && npm run build:fix",
"build:fix": "fix-esm-import-path out/*.js",
"build:compile": "tsc",
"build:clean": "rm -rf out",
"test": "jest --coverage",
"lint": "eslint 'src/**/*.ts'",
"fix-lint": "eslint 'src/**/*.ts' --fix",
Expand All @@ -17,7 +20,9 @@
"url": "git+ssh://[email protected]/aneshodza/pushdown-automaton.git"
},
"keywords": [
"automata", "pushdown automata", "deterministic pushdown automata"
"automata",
"pushdown automata",
"deterministic pushdown automata"
],
"files": [
"out/**/*"
Expand All @@ -36,6 +41,7 @@
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.3",
"fix-esm-import-path": "^1.5.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
Expand Down

0 comments on commit 711ad03

Please sign in to comment.