Procházet zdrojové kódy

Remove Makefile rule clean-dev

From npm ci docs https://docs.npmjs.com/cli/v7/commands/npm-ci:

If a node_modules is already present, it will be automatically removed
before npm ci begins its install.

Unnecessary since b595d86e96.

Signed-off-by: François Freitag <mail@franek.fr>
tags/v22.0.0beta1
François Freitag před 3 roky
rodič
revize
5315cadf28
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 1 přidání a 4 odebrání
  1. 1
    4
      Makefile

+ 1
- 4
Makefile Zobrazit soubor

@@ -1,7 +1,7 @@
all: clean dev-setup build-js-production

# Dev env management
dev-setup: clean clean-dev npm-init
dev-setup: clean npm-init

npm-init:
npm ci
@@ -43,9 +43,6 @@ clean:
rm -rf apps/workflowengine/js/
rm -rf core/js/dist

clean-dev:
rm -rf node_modules

clean-git: clean
git checkout -- apps/accessibility/js/
git checkout -- apps/comments/js/

Načítá se…
Zrušit
Uložit