Skip to content
This repository has been archived by the owner on Feb 28, 2020. It is now read-only.

Releases: Sage/carbon-factory

v3.1.1

25 Jan 15:10
4a3fe85
Compare
Choose a tag to compare
  • Fixes multi line issue with build spinner.

v3.1.0

25 Jan 14:16
6a60bbb
Compare
Choose a tag to compare
  • Adds a spinner to the build task to indicate when it is busy.

v3.0.0

22 Jan 12:03
2242cf9
Compare
Choose a tag to compare
  • Upgraded enzyme-to-json to 3.1.2 to support Enzyme 3.
  • Upgraded sass-css-stream to 1.0.0 which includes an upgrade to node-sass to 4.7.2.

v3.0.0-rc3

04 Dec 12:01
94a88f7
Compare
Choose a tag to compare
v3.0.0-rc3 Pre-release
Pre-release
  • Upgraded sass-css-stream to 1.0.0 which includes an upgrade to node-sass to 4.7.2.

v3.0.0-rc2

13 Nov 15:46
363688e
Compare
Choose a tag to compare
v3.0.0-rc2 Pre-release
Pre-release

Include changes from v2.2.0

v2.2.0

10 Nov 14:46
Compare
Choose a tag to compare
  • Disables notify on Jest, as it is causing memory leaks.
  • Allows additional lookup paths to be defined for the build task.
  • Enabled sourcemaps when running in watch mode. Alternatively you can control if they are enabled/disabled with the --sourcemaps flag when running gulp.
  • Removes dependency node-inspector, allowing use of Node v8.

v3.0.0-rc1

09 Oct 15:49
Compare
Choose a tag to compare
v3.0.0-rc1 Pre-release
Pre-release
  • Updated enzyme-to-json to 3.1.2 to support Enzyme 3.

v2.1.0

25 Sep 14:23
Compare
Choose a tag to compare
  • Updated Carbon CLI for setting up applications based on Carbon v2 and Carbon-Factory v2.

v2.0.1

25 Sep 13:58
Compare
Choose a tag to compare

Bug Fixes:

  • Envify now runs across all node modules.

v2.0.0

10 Aug 15:37
Compare
Choose a tag to compare
  • Jasmine and Karma have been replaced by Jest. See our migration document for details.
  • We have added a new gulp task for just running eslint, you can set it up like this:
import LintTask from 'carbon-factory/lib/gulp/lint';

gulp.task('lint', LinkTask());

You can also pass it additional options to add an error and/or warning threshold:

gulp.task('lint', LinkTask({
  errorThreshold: 10,
  warningThreshold: 20
}));