-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
38 lines (30 loc) · 883 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
web-dev:
./node_modules/.bin/next -p 3001
web-build:
./node_modules/.bin/next build
web-export: web-build
./node_modules/.bin/next export -o web-dist
dev:
./node_modules/.bin/webpack-dev-server --mode development --open
install-deps:
yarn install
test-unit:
./node_modules/.bin/jest --clearCache
NODE_ENV=test ./node_modules/.bin/jest --env=jsdom --testPathIgnorePatterns "/integration/" --watch
test:
./node_modules/.bin/jest --clearCache
./scripts/start_bitcoind.sh
NODE_ENV=test ./node_modules/.bin/jest --env=jsdom --watch
bsb:
node_modules/.bin/bsb -clean-world
node_modules/.bin/bsb -make-world -w
build:
./scripts/build.sh
bsb-once:
node_modules/.bin/bsb -make-world
ci:
node_modules/.bin/jest --clearCache
./scripts/start_bitcoind.sh
NODE_ENV=test CI=true ./node_modules/.bin/jest --env=jsdom --runInBand
./scripts/stop_bitcoind.sh
.PHONY: ci build