Skip to content

Commit

Permalink
feat: correct stubs build
Browse files Browse the repository at this point in the history
  • Loading branch information
Xstoudi committed May 9, 2024
1 parent 681a810 commit daea628
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
},
"scripts": {
"clean": "del-cli build",
"copy:templates": "copyfiles \"stubs/**/*.stub\" build",
"copy:templates": "copyfiles --up 1 \"stubs/**/*.stub\" build",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"quick:test": "node --import=./tsnode.esm.js --enable-source-maps bin/test.ts",
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"prebuild": "npm run lint && npm run clean",
"pretest": "pnpm run lint",
"test": "c8 pnpm run quick:test",
"prebuild": "pnpm run lint && pnpm run clean",
"build": "tsup",
"postbuild": "npm run copy:templates",
"version": "npm run build",
"prepublishOnly": "npm run build"
"postbuild": "pnpm run copy:templates",
"version": "pnpm run build",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"adonisjs",
Expand Down

0 comments on commit daea628

Please sign in to comment.