diff options
author | Zach van Rijn <me@zv.io> | 2021-08-08 20:44:26 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-08-08 20:44:26 +0000 |
commit | 7a0e3080777627bba6d157cdc6ef91ce976d5feb (patch) | |
tree | 5b257dcc6600e8c17c8bb93e993b6102a014f33a /README | |
parent | b9f36e28b13d3210053b23ac2adda122afcf74d0 (diff) | |
parent | dd650e04ed9b9ce3fb2e5a425272161058ad18ef (diff) | |
download | site-ng-7a0e3080777627bba6d157cdc6ef91ce976d5feb.tar.gz site-ng-7a0e3080777627bba6d157cdc6ef91ce976d5feb.tar.bz2 site-ng-7a0e3080777627bba6d157cdc6ef91ce976d5feb.tar.xz site-ng-7a0e3080777627bba6d157cdc6ef91ce976d5feb.zip |
Merge branch 'old-browser-support-test' into 'master'
Old browser support test
See merge request adelie/site-ng!1
Diffstat (limited to 'README')
-rw-r--r-- | README | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -19,3 +19,28 @@ Imagemagick is required to convert the PSD files into .webm (or other) formats. $ grep -rl AAAAAA assets/ | while read k; do sed -i ${k} -e 's/AAAAAA/DDDDDD/g'; done $ grep -rl 7C7C7C assets/ | while read k; do sed -i ${k} -e 's/7C7C7C/333333/g'; done + +Manual steps to do CSS processing: + +# Adélie SCSS Preprocessor + +1. Throw CSS into `src/*`. +2. Ensure that there is a top-level `src/theme.scss` file with imports. +3. Run `npm i` to install dependencies. +4. Run `npm build` to build to `out/`. +5. Profit. + +## Running + +Targets may be run with `npm run <target>`. + +| Target | Description | +| ---------------- | ----------------------- | +| `prebuild` | See `clean` | +| `build` | Compile SCSS to `out/` | +| `list-supported` | List supported browsers | +| `clean` | Clean output directory | + +## Notes + +- Fonts are downloaded and provided in `out/fonts/*` |