install npm in install deps
This commit is contained in:
parent
2500fa351b
commit
9c052298a3
4
Makefile
4
Makefile
@ -2,27 +2,25 @@
|
|||||||
## Update pip and install poetry
|
## Update pip and install poetry
|
||||||
pip install --upgrade pip
|
pip install --upgrade pip
|
||||||
pip install --upgrade poetry
|
pip install --upgrade poetry
|
||||||
|
npm install
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
## Install for production
|
## Install for production
|
||||||
## @category Install
|
## @category Install
|
||||||
install-prod: install-deps
|
install-prod: install-deps
|
||||||
poetry install --no-root --only-root
|
poetry install --no-root --only-root
|
||||||
npm install
|
|
||||||
|
|
||||||
.PHONY: install-dev
|
.PHONY: install-dev
|
||||||
## Install dev requirements
|
## Install dev requirements
|
||||||
## @category Install
|
## @category Install
|
||||||
install-dev: install-deps
|
install-dev: install-deps
|
||||||
poetry install --no-root --only-root --with dev
|
poetry install --no-root --only-root --with dev
|
||||||
npm install
|
|
||||||
|
|
||||||
.PHONY: install-all
|
.PHONY: install-all
|
||||||
## Install with all extras
|
## Install with all extras
|
||||||
## @category Install
|
## @category Install
|
||||||
install-all: install-deps
|
install-all: install-deps
|
||||||
poetry install --no-root --all-extras
|
poetry install --no-root --all-extras
|
||||||
npm install
|
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
## Clean pycaches
|
## Clean pycaches
|
||||||
|
Loading…
Reference in New Issue
Block a user