Move from webpack to budo and ruby-sass
Instead of using webpack with sass hacked in, switch to a simpler setup with budo for JavaScript, ruby-sass for sass watching/creation. Introduce a simple Makefile and script to start all required development services.
Makefile
0 → 100644
package-lock.json
deleted
100644 → 0
This diff is collapsed.
{ | ||
"name": "arch-repro-website", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Arch reproducible Status Website", | ||
"author": "Jelle van der Waa", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"build": "NODE_ENV=production webpack --mode production", | ||
"watch": "webpack --watch" | ||
}, | ||
"dependencies": { | ||
"eslint-loader": "^4.0.2", | ||
"webpack": "^4.43.0", | ||
"webpack-cli": "^3.3.11" | ||
}, | ||
"devDependencies": { | ||
"bulma": "^0.8.2", | ||
"css-loader": "^3.5.3", | ||
"eslint": "^6.8.0", | ||
"eslint-config-standard": "^14.1.1", | ||
"eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"extract-text-webpack-plugin": "^4.0.0-beta.0", | ||
"mini-css-extract-plugin": "^0.9.0", | ||
"node-sass": "^4.14.0", | ||
"optimize-css-assets-webpack-plugin": "^5.0.3", | ||
"sass-loader": "^8.0.2", | ||
"style-loader": "^1.2.1", | ||
"terser-webpack-plugin": "^2.3.6" | ||
"@babel/core": "^7.9.6", | ||
"@babel/preset-env": "^7.9.6", | ||
"babelify": "^10.0.0", | ||
"budo": "^11.6.3", | ||
"bulma": "^0.8.2" | ||
} | ||
} |
scripts/startdevelop.sh
0 → 100755
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment