Releases: CarbonPackages/Carbon.Pipeline
Releases · CarbonPackages/Carbon.Pipeline
0.7.5
0.7.4
✨ Features:
- Ability to pass Flow settings to esbuild with the setting
esbuild.defineFlowSettings
- You can now add additional esbuild plugins with the setting
esbuild.additionalPlugins
🐛 Bugfix:
Allow the set the folder input to ''
in a package configuration. Previously, this was overridden with the default folder.
0.7.3
0.7.2
0.7.1
✨ Feature:
Add node-sass-tilde-importer
to sass
If you have used a previous version of Carbon.Pipeline, you have to install node-sass-tilde-importer
:
yarn add --dev node-sass-tilde-importer
0.7.0
✨ Features
- Add
yarn showConfig
task. It shows the merged configuration from your settings inpipeline.yaml
and the default values - Improve CLI output of the generated CSS files. This also includes the replacement of
pretty-hrtime
with own code, which gives you also a little bit of an speed boost - Better resolving of the dependencies for sass files (used in the watch mode)
🐛 Bugfix
Make the watch mode work again
⬆️ Upgrade from an older version
If you already have a previous version installed, you need to add prettyjson
and remove pretty-hrtime
:
yarn add --dev prettyjson
yarn remove pretty-hrtime
You also have to make the command available. Put this line inside of the scripts
entry in your package.json
:
"showConfig": "node Build/Carbon.Pipeline/showConfig.mjs",