diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-04 15:22:25 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-04 15:22:25 +0500 |
commit | b3b31605f09c3766fd096c18fc02c643036cdee8 (patch) | |
tree | de332688c1897f1df274f0f74336d3c7c262a5f6 /Makefile | |
parent | switch from ipaddr.js to ip-address (diff) | |
download | wireguard-config-b3b31605f09c3766fd096c18fc02c643036cdee8.tar.gz wireguard-config-b3b31605f09c3766fd096c18fc02c643036cdee8.zip |
Makefile: move `npm install` to separate target
Diffstat (limited to '')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -29,8 +29,14 @@ ruby: .PHONY: deps deps: ruby bundle install + +.PHONY: npm +npm: npm install +.PHONY: all-deps +all-deps: deps npm + .PHONY: build build: bundle exec jekyll build --drafts |