mirror of
https://github.com/kopia/kopia.git
synced 2026-01-29 16:52:58 -05:00
Covered are: - connect and create flow - parameter pages for all providers - connect using token
18 lines
257 B
Makefile
18 lines
257 B
Makefile
all:
|
|
|
|
include ../tools/tools.mk
|
|
|
|
dev: node_modules
|
|
$(npm) $(npm_flags) run start
|
|
|
|
build-html: node_modules
|
|
$(npm) $(npm_flags) run build
|
|
|
|
node_modules: $(npm)
|
|
$(npm) $(npm_flags) install
|
|
|
|
clean:
|
|
rm -rf node_modules build
|
|
|
|
test:
|
|
$(npm) $(npm_flags) test
|