Releases: lukeed/taskr
Releases · lukeed/taskr
v1.1.2
v1.1.1
v1.1.0
Package: @taskr/postcss
- Automatically auto-load config from traditional PostCSS locations: #284
- a
.postcssrc
file (JSON-type only) - the "postcss" key inside
package.json
- a
postcss.config.js
file (Object or Function type) - a
.postcssrc.js
file (Object or Function type)
- a
Package: @taskr/esnext
- Now transforms
import
statements 🎉 #290- All docs & acceptable formats available at
rewrite-imports
- All docs & acceptable formats available at
Patches
- Update
taskr/cli.js
code style: 49a69ef
v1.0.6
General
- Update README & License info: a1086bf, 95070a7, eb6a6f4, 01299a4, 500971b
- Ignore
*.lock
files in repo: 6ebebdd
Package: taskr
Patches
- Update
fn.toArray
helper: 60c6357 - Consolidate
utils.trace
: 271fb7d - Unify code style: 1116bee, 531fbaf
Updates
- Replace
mkdirp
withmk-dirs
: 654a136
Package: @taskr/rev
Updates
- Upgrade to
[email protected]
: 1225508
v2.0.6
v2.0.5
v2.0.4
v2.0.3
v2.0.2
v0.8
-
💥 Rewrite tests in ES6.
-
💥 Add test coverage tools. #71
-
💥 Better error handling.
- Throw a descriptive error when plugins are not found inside
node_modules
- Show name of file when plugin fails. SEE #85/@andy-hanson, #93 and #94.
- Throw a descriptive error when plugins are not found inside
-
Improve usage of npm scripts, more closely resembling those found in generator-rise.
-
Support passing
data, options, ...rest
to support a variable number of arguments inside filters/plugins://flyfile.js yield this.source(...).myPlugin(a, b, c).target(...)
// myPlugin/index.js module.exports = function (_) { this.filter("myPlugin", (data, a, b, c) => { }) }