Skip to content

Commit

Permalink
fix: 🐛 npm scripts not running without nr
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderniebuhr committed Feb 13, 2022
1 parent 7418696 commit cf1600b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@
},
"scripts": {
"build": "tsup ./src/index.ts --dts --format esm --no-splitting",
"build:clean": "rimraf dist && nr build",
"dev": "nr build --watch",
"build:clean": "rimraf dist && npm run build",
"dev": "npm run build --watch",
"lint": "eslint src",
"lint:tests": "eslint tests --ext .ts",
"release": "nr test && nr build:clean && bumpp --tag --commit --push",
"release": "npm run test && npm run build:clean && bumpp --tag --commit --push",
"test": "uvu -r sucrase/register tests",
"test:generate": "tsm generate.ts"
},
Expand Down

0 comments on commit cf1600b

Please sign in to comment.