diff options
author | Zach van Rijn <me@zv.io> | 2021-07-31 18:15:11 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-07-31 18:15:11 -0500 |
commit | 885939380d73da581aa5502ae49cfd1f531504bf (patch) | |
tree | d664b11fd016413b4029d4a45dee7f1a303d3f0a /README | |
parent | 33033ca4509653bcab025a9e046e5f18993c876e (diff) | |
download | site-ng-885939380d73da581aa5502ae49cfd1f531504bf.tar.gz site-ng-885939380d73da581aa5502ae49cfd1f531504bf.tar.bz2 site-ng-885939380d73da581aa5502ae49cfd1f531504bf.tar.xz site-ng-885939380d73da581aa5502ae49cfd1f531504bf.zip |
First attempt at supporting old browsers.
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/*` |