Replace node-sass with dart sass

This commit is contained in:
Sonny Bakker 2022-05-26 11:39:59 +02:00
parent 9d05cac15c
commit d3f9a11f44
4 changed files with 13958 additions and 76 deletions

View file

@ -33,7 +33,7 @@ services:
- rabbitmq
- memcached
volumes:
- .:/app
- ./src/:/app/src
django:
build:
context: .
@ -47,7 +47,7 @@ services:
- db
- memcached
volumes:
- .:/app
- ./src:/app/src
- static-files:/app/src/newsreader/static
stdin_open: true
tty: true
@ -57,6 +57,6 @@ services:
dockerfile: ./docker/webpack
command: npm run build:watch
volumes:
- .:/app
- ./src/:/app/src
- static-files:/app/src/newsreader/static
- node-modules:/app/node_modules

View file

@ -3,7 +3,7 @@ FROM node:12-bullseye
WORKDIR /app
RUN mkdir /app/src
COPY package.json package-lock.json /app/
COPY package*.json webpack.*.js .babelrc /app/
RUN npm install

14024
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -48,7 +48,7 @@
"jest": "^24.9.0",
"mini-css-extract-plugin": "^0.9.0",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"sass": "^1.52.1",
"prettier": "^1.19.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",