mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
make targets running npm .PHONY
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
6fd0bebdd6
commit
5383c783f9
5
Makefile
5
Makefile
@ -12,8 +12,9 @@ endif
|
|||||||
binaries/client:
|
binaries/client:
|
||||||
yarn download-bins
|
yarn download-bins
|
||||||
|
|
||||||
|
.PHONY: node_modules
|
||||||
node_modules:
|
node_modules:
|
||||||
yarn install --frozen-lockfile --verbose
|
yarn install --frozen-lockfile
|
||||||
yarn check --verify-tree --integrity
|
yarn check --verify-tree --integrity
|
||||||
|
|
||||||
static/build/LensDev.html:
|
static/build/LensDev.html:
|
||||||
@ -63,9 +64,11 @@ else
|
|||||||
yarn dist
|
yarn dist
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
.PHONY: $(extension_node_modules)
|
||||||
$(extension_node_modules):
|
$(extension_node_modules):
|
||||||
cd $(@:/node_modules=) && npm install --no-audit --no-fund
|
cd $(@:/node_modules=) && npm install --no-audit --no-fund
|
||||||
|
|
||||||
|
.PHONY: $(extension_dists)
|
||||||
$(extension_dists): src/extensions/npm/extensions/dist
|
$(extension_dists): src/extensions/npm/extensions/dist
|
||||||
cd $(@:/dist=) && npm run build
|
cd $(@:/dist=) && npm run build
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user