- toolbar and fixes
This commit is contained in:
Jérémy Guillot
2024-06-29 14:51:10 +02:00
parent b04055ec22
commit 858a5bed06
20 changed files with 404 additions and 68 deletions

View File

@@ -150,3 +150,9 @@ npm-run: ## Run the dev server
npm-watch: ## Watch for changes
@$(DOCKER_COMP) exec node npm run watch
npm-add: ## Add a package as a dependency make npm-add p=package-name
@$(DOCKER_COMP) exec node npm install $(p)
npm-add-dev: ## Add a package as a dev dependency make npm-add-dev p=package-name
@$(DOCKER_COMP) exec node npm install $(p) --save-dev