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 b58b5b0 commit 62ee4a4Copy full SHA for 62ee4a4
Makefile
@@ -1,12 +1,15 @@
1
all: build examples
2
3
-build: bower_components
4
- pulp build
+build: bower_components node_modules
+ npx pulp build
5
6
-examples: bower_components
+examples: bower_components node_modules
7
find examples -maxdepth 2 -type f -iname makefile -execdir make \;
8
9
-bower_components:
10
- bower install
+bower_components: node_modules
+ npx bower --allow-root install
11
+
12
+node_modules:
13
+ npm i --no-save bower pulp
14
15
.PHONY: build examples
0 commit comments