-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
Makefile
54 lines (38 loc) · 948 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.PHONY: build dev test clean
.FORCE: ;
# This is to disable check for new release in aw-webui for aw-android
ifdef ON_ANDROID
# The following flag will pass --android as a command line argument to vue-cli-service
# https://docs.npmjs.com/cli/run-script
androidflag := -- --os=android
else
androidflag :=
endif
prebuild: node_modules/ static/logo.png static/logo.svg
build: prebuild
npm run build ${androidflag}
dev: prebuild
npm run serve ${androidflag}
build-vite: prebuild
npx vite build
dev-vite: prebuild
npx vite
static/logo.%: media/logo/logo.%
@mkdir -p static
cp $< $@
node_modules/: package-lock.json
npm ci
uninstall:
rm -r node_modules/
test:
npm test
test-e2e:
npx testcafe chrome test/e2e/ -s takeOnFails=true
typing-coverage:
npx typescript-coverage-report
clean:
rm -rf node_modules dist
lint:
npx eslint --ext=js,ts,vue --max-warnings=0 src/ test/
lint-fix:
npx eslint --ext=js,ts,vue --fix src/ test/