This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
Implement support for basic CSS modules
Pre-release
Pre-release
Also includes:
- Switch everything to camelCase
- Switch to using webpack to build browser script (woohoo!)
- Update node target for
babel-preset-env
to latestlts
version - Remove
postbuild.js
in favor ofdist/cli/index.js
so cli will still work with dev build - Switch to using
include
everywhere we're usingindexOf
- Use
import
for everything in the CLI - Move
gaze
logic to a separatefileWatcher.js
- Update various other packages and add
package-lock.json
- Switch to using webpack module key (it's unique!) instead of an md5 hash for targeting correct markup to replace. We were using node
crypto
for the hash, which was adding a whole crapload of modules to the browser build. - Switch to using the more standard
index.js
for both web and cli entry points - Remove
prebuild
script (which used eslint cli) in favor ofeslint-loader
now that we're using webpack for browser build also