mirror of
https://github.com/turbot/steampipe.git
synced 2026-04-09 01:00:10 -04:00
26 lines
385 B
Makefile
26 lines
385 B
Makefile
|
|
package: zip
|
|
|
|
zip: version
|
|
cd build && zip -r -D ../../../report/reportassets/assets.zip *
|
|
|
|
version: build
|
|
go run scripts/version.go
|
|
|
|
build: install
|
|
yarn build
|
|
|
|
install: clean
|
|
yarn install
|
|
|
|
clean:
|
|
pwd
|
|
[ ! -e ../../report/reportassets/assets.zip ] || rm ../../report/reportassets/assets.zip
|
|
rm -rf build
|
|
|
|
run-local:
|
|
yarn install
|
|
yarn start
|
|
|
|
setup:
|
|
yarn setup-material-symbols
|