Ver código fonte

build: remove no longer needed Makefile rule

- we now use pinned dependencies, so there is no need to run npm update
- AFAICT the node-sass workaround is no longer needed
j8
Saúl Ibarra Corretgé 8 anos atrás
pai
commit
bc60bd23b2
1 arquivos alterados com 1 adições e 7 exclusões
  1. 1
    7
      Makefile

+ 1
- 7
Makefile Ver arquivo

@@ -10,13 +10,7 @@ STYLES_DESTINATION = css/all.css
10 10
 STYLES_MAIN = css/main.scss
11 11
 WEBPACK = ./node_modules/.bin/webpack
12 12
 
13
-all: update-deps compile deploy clean
14
-
15
-# FIXME: there is a problem with node-sass not correctly installed (compiled)
16
-# a quick fix to make sure it is installed on every update
17
-# the problem appears on linux and not on macosx
18
-update-deps:
19
-	$(NPM) update && $(NPM) install node-sass
13
+all: compile deploy clean
20 14
 
21 15
 compile:
22 16
 	$(WEBPACK) -p

Carregando…
Cancelar
Salvar