Skip to content

Releases: CarbonPackages/Carbon.Pipeline

0.8.7

01 Dec 15:05
b94deb5
Compare
Choose a tag to compare

Full Changelog: 0.8.6...0.8.7

0.8.6

23 Nov 15:46
2932547
Compare
Choose a tag to compare

Full Changelog: 0.8.5...0.8.6

0.8.5

27 Oct 12:21
1e60c45
Compare
Choose a tag to compare

Full Changelog: 0.8.4...0.8.5

0.8.4

21 Oct 09:12
7b04233
Compare
Choose a tag to compare

What's Changed

  • Update: Pass all kind of sass options to compiler by @jonnitto in #14

Full Changelog: 0.8.3...0.8.4

0.8.3

21 Oct 07:24
e11a161
Compare
Choose a tag to compare

What's Changed

  • quietDeps option to silences warnings (sass only) by @paavo in #12
  • Make loader option for esbuild configurable

New Contributors

  • @paavo made their first contribution in #12

Full Changelog: 0.8.2...0.8.3

0.8.2

01 Oct 11:36
3aad6a4
Compare
Choose a tag to compare

♻️ Replace package

Replace colorette with nanocolors. You may need to run

yarn remove colorette
yarn add --dev nanocolors

0.8.1

29 Sep 22:57
b228eb4
Compare
Choose a tag to compare

⬆️ Upgrade packages

0.8.0

16 Sep 11:41
1b21cb5
Compare
Choose a tag to compare

💥 Breaking: Move esbuild options to own group

How to update:

If you have set an esbuild option (pure, logLevel , legalComments in your pipeline.yaml you have to place this options under esbuild.options.

Example.

From

esbuild:
  pure: console.log
  logLevel: info
  legalComments: linked

to

esbuild:
  options:
    pure: console.log
    logLevel: info
    legalComments: linked

0.7.8

15 Sep 22:34
a15bbf4
Compare
Choose a tag to compare

✨ Feature

New prune option:

To remove some functions from the production build you can use the esbuild.pure setting. If you have just one function, you can pass a string, otherwise, you have to set it to an array:

esbuild:
  pure:
    - console.log
    - console.pure

0.7.7

15 Sep 19:50
161853c
Compare
Choose a tag to compare

🐛 Bugfix

Pass options to the esbuild plugins