You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
400 B
29 lines
400 B
all: node_modules |
|
|
|
build: node_modules |
|
yarn dist |
|
|
|
clean: |
|
rm -rf ./.cache |
|
rm -rf ./dist |
|
rm -rf ./build |
|
|
|
clean-all: clean |
|
rm -rf ./node_modules |
|
|
|
electron-start: node_modules |
|
yarn electron-start |
|
|
|
fix: node_modules |
|
yarn fix |
|
|
|
inferno-start: node_modules |
|
yarn inferno-start |
|
|
|
lint: node_modules |
|
yarn lint |
|
|
|
node_modules: |
|
yarn --ignore-engines |
|
|
|
.PHONY: all clean electron-start fix lint react-start
|
|
|