Explorar el Código

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é hace 8 años
padre
commit
bc60bd23b2
Se han modificado 1 ficheros con 1 adiciones y 7 borrados
  1. 1
    7
      Makefile

+ 1
- 7
Makefile Ver fichero

@@ -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

Loading…
Cancelar
Guardar