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 8016f77 commit adf5c95Copy full SHA for adf5c95
Makefile
@@ -5,13 +5,15 @@ SEMVER=prerelease --preid=beta
5
EXAMPLES=$(dir $(wildcard examples/*/package.json))
6
7
install:
8
- npm install
+ npm ci
9
npm run build
10
- $(foreach ex,$(EXAMPLES),(cd $(ex) && npm install && npm run link && npm run build) || exit $$?;)
+ $(foreach ex,$(EXAMPLES),(cd $(ex) && npm ci && npm run link && npm run build) || exit $$?;)
11
.PHONY: install
12
13
update:
14
- $(foreach ex,$(EXAMPLES),(cd $(ex) && npm update) || exit $$?;)
15
+ npm run build
16
+ $(foreach ex,$(EXAMPLES),(cd $(ex) && npm ci) || exit $$?;)
17
.PHONY: update
18
19
up:
0 commit comments