mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Fixing order issues with Webpack and removing bail switch (#214)
This commit is contained in:
parent
2f5ee8607d
commit
6ef0c79592
1 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
|
@ -96,16 +96,17 @@ test-js:
|
|||
test: lint-go lint-js test-go test-js
|
||||
|
||||
generate: .prefix
|
||||
webpack --progress --colors
|
||||
go-bindata -pkg=server \
|
||||
-o=server/bindata.go \
|
||||
frontend/templates/ assets/...
|
||||
webpack --progress --colors --bail
|
||||
|
||||
generate-dev: .prefix
|
||||
webpack --progress --colors
|
||||
go-bindata -debug -pkg=server \
|
||||
-o=server/bindata.go \
|
||||
frontend/templates/ assets/...
|
||||
webpack --progress --colors --bail --watch
|
||||
webpack --progress --colors --watch
|
||||
|
||||
deps:
|
||||
npm install
|
||||
|
|
|
|||
Loading…
Reference in a new issue