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
This commit is contained in:
parent
e29120a9c1
commit
bc60bd23b2
8
Makefile
8
Makefile
|
@ -10,13 +10,7 @@ STYLES_DESTINATION = css/all.css
|
||||||
STYLES_MAIN = css/main.scss
|
STYLES_MAIN = css/main.scss
|
||||||
WEBPACK = ./node_modules/.bin/webpack
|
WEBPACK = ./node_modules/.bin/webpack
|
||||||
|
|
||||||
all: update-deps compile deploy clean
|
all: compile deploy clean
|
||||||
|
|
||||||
# FIXME: there is a problem with node-sass not correctly installed (compiled)
|
|
||||||
# a quick fix to make sure it is installed on every update
|
|
||||||
# the problem appears on linux and not on macosx
|
|
||||||
update-deps:
|
|
||||||
$(NPM) update && $(NPM) install node-sass
|
|
||||||
|
|
||||||
compile:
|
compile:
|
||||||
$(WEBPACK) -p
|
$(WEBPACK) -p
|
||||||
|
|
Loading…
Reference in New Issue