Skip to content

Commit

Permalink
Fix build command
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalmishraa committed Jul 29, 2024
1 parent 4af67fb commit 4d18e1e
Show file tree
Hide file tree
Showing 3 changed files with 929 additions and 95 deletions.
6 changes: 3 additions & 3 deletions apps/boilerplate-generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "",
"main": "index.js",
"scripts": {
"build": "npm esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"boiler:generate": "npm run build && node dist/index.js",
"build": "yarn esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js",
"boiler:generate": "yarn run build && node dist/index.js",
"test": "npx vitest run",
"start": "npm run test && npm run boiler:generate"
},
Expand All @@ -15,10 +15,10 @@
"dependencies": {
"@types/node": "^20.12.12",
"dotenv": "^16.4.5",
"esbuild": "^0.21.5",
"fs": "^0.0.1-security"
},
"devDependencies": {
"esbuild": "^0.23.0",
"vitest": "^2.0.4"
}
}
Loading

0 comments on commit 4d18e1e

Please sign in to comment.