Skip to content

Commit

Permalink
added sbuild
Browse files Browse the repository at this point in the history
laravel will use laravel-vite instead of laravel-mix in laravel 9. and unlike laravel-mix, it will use:
`npm run dev` for development building with watching.
`npm run build` for production building.

we have `sdev` in our aliases but we didn't have any alias for `npm run build` after this commit you can use `sbuild` to run `npm run build`
  • Loading branch information
ariaieboy authored Jul 3, 2022
1 parent 8ca0cd7 commit 568bc90
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions laravel-sail.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ alias sn='s npm'
alias swatch='s npm run watch'
alias sprod='s npm run production'
alias sdev='s npm run dev'
alias sbuild='s npm run build'
alias st='s test'
alias stp='s test --parallel'
alias sdusk='s dusk'
Expand Down

0 comments on commit 568bc90

Please sign in to comment.