This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
Releases: Sage/carbon-factory
Releases · Sage/carbon-factory
v3.1.1
- Fixes multi line issue with build spinner.
v3.1.0
- Adds a spinner to the build task to indicate when it is busy.
v3.0.0
v3.0.0-rc3
- Upgraded
sass-css-stream
to1.0.0
which includes an upgrade tonode-sass
to4.7.2
.
v3.0.0-rc2
Include changes from v2.2.0
v2.2.0
- 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
- Updated
enzyme-to-json
to3.1.2
to support Enzyme 3.
v2.1.0
- Updated Carbon CLI for setting up applications based on Carbon v2 and Carbon-Factory v2.
v2.0.1
Bug Fixes:
- Envify now runs across all node modules.
v2.0.0
- 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
}));