Skip to content

Commit

Permalink
fix(build): add build command to match vite commands
Browse files Browse the repository at this point in the history
  • Loading branch information
daveroverts committed Oct 31, 2022
1 parent 409de2c commit d1d84c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ and before that I used [Laravel Homestead](https://laravel.com/docs/9.x/homestea
php artisan migrate
php artisan storage:link # Only needed for first deployment
npm ci
npm run prod
npm run build
```

Development:
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "mix --production",
"prod": "npm run build",
"production": "npm run build",
"build": "mix --production",
"semantic-release": "semantic-release"
},
"devDependencies": {
Expand Down

0 comments on commit d1d84c9

Please sign in to comment.