Releases: static-dev/spike-core
Releases · static-dev/spike-core
v0.0.20
- large improvements to the way our core loaders interact with custom webpack loaders defined in your
app.js
files.
- fixes issue where you couldn't require entries within other new entries
- test added to ensure static assets are being compiled properly
v0.0.19
- a better static matcher:
opts.matchers.static
now matches all files that don't have .jade
, .js
, .css
, .sss
extensions
- removed
cssTemplates
& jadeTemplates
options for now (will reintroduce this type of functionality a bit differently later)
- watcher now properly catches and compiles files added while watcher is already running
- better watcher ignore defaults
- better support for custom loaders: all custom loaders get pushed to
roots.files.custom
- roots-mini static plugin now operating properly. files are now properly being emitted
v0.0.18
- Make some extra utilities available to plugins via webpack options
- Refactor plugin utilities
- New files are now interactively added to projects in watch mode
v0.0.17
- Fixes a couple issues with watch mode
v0.0.16
- updates ava to
0.14.0
- uses the simplified jade-static-loader, which replaced
roots-jade-loader
- implements
cleanUrls
constructor option to strip .html
from reqs during roots.watch
by default
v0.0.15
- exposes
jade
constructor option for passing function locals to your jade templates
v0.0.14
- fixes issue where
.sss
files were being properly compiled but not written as .css
v0.0.13
- User plugins now are injected after the fs glob, but before any of the roots core plugins run
v0.0.12
🐛 fixes issue where our jade-loader wasn't running because it needed to be transpiled from ES6
v0.0.11
- allows the use of custom loaders via
module.loaders
constructor options
- internally uses a more explicit definition of the loaders, to prevent collisions with
node_modules