Doing the seddery in Makefile breaks `npm run build`, webpack watching, and was generally brittle. Revert the sed/make rules, and instead do the font replacement hacking with `string-replace-loader`, which fits into webpack much more nicely. There is still some potential simplification by not duplicating the entire scss loader chain.
8 lines
102 B
YAML
8 lines
102 B
YAML
dist: trusty
|
|
sudo: false
|
|
language: node_js
|
|
node_js:
|
|
- "8"
|
|
script:
|
|
- npm install
|
|
- npm run build
|