We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d08d30e commit 5a7b1b6Copy full SHA for 5a7b1b6
Makefile
@@ -35,11 +35,19 @@ node_modules: package.json
35
@echo "=> installing dependencies..."
36
@npm install && /usr/bin/touch node_modules
37
38
+# alias for "node_modules" target
39
+.PHONY: install
40
+install: node_modules
41
+
42
dist: package.json rollup.config.js $(wildcard src/*.js) node_modules
43
@echo ""
44
@echo "=> make $@"
45
@npx rollup -c --bundleConfigAsCjs && /usr/bin/touch dist
46
47
+# alias for "dist" target
48
+.PHONY: build
49
+build: dist
50
51
test/fetch-api/api.spec.js: test/fetch-api/api.spec.ts
52
53
0 commit comments