Skip to content

Commit

Permalink
fix: Always delete tsimp cache
Browse files Browse the repository at this point in the history
  • Loading branch information
bennycode committed Aug 28, 2024
1 parent 4336e40 commit d1485aa
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 @@ -45,7 +45,7 @@
"clean": "rimraf .tsimp coverage dist docs",
"commit": "npm run fix && git commit -am \"chore: Generated release files\"",
"deploy": "exit 0",
"dev": "cross-env TSIMP_DIAG=error node --inspect --import=tsimp/import ./src/start.ts",
"dev": "rimraf .tsimp && cross-env TSIMP_DIAG=error node --inspect --import=tsimp/import ./src/start.ts",
"dist": "npm run clean && npm run build && attw --pack . --ignore-rules cjs-resolves-to-esm",
"docs": "npm run docs:build",
"docs:build": "typedoc src/index.ts",
Expand All @@ -58,7 +58,7 @@
"release:minor": "generate-changelog -m -x \"chore,test\" && npm run docs && npm run commit && npm version minor",
"release:patch": "generate-changelog -p -x \"chore,test\" && npm run docs && npm run commit && npm version patch",
"release:revert": "npm unpublish ts-node-starter",
"start": "cross-env TSIMP_DIAG=error node --import=tsimp/import ./src/start.ts",
"start": "rimraf .tsimp && cross-env TSIMP_DIAG=error node --import=tsimp/import ./src/start.ts",
"test": "npm run test:types && npm run test:unit:coverage",
"test:types": "tsc --project tsconfig.check.json",
"test:unit": "vitest run --passWithNoTests",
Expand Down

0 comments on commit d1485aa

Please sign in to comment.