Skip to content

Commit

Permalink
feat(feature-flags): enable flags for v10
Browse files Browse the repository at this point in the history
BREAKING CHANGE: flags for v10 are now turned on by default
  • Loading branch information
joshblack committed Mar 26, 2019
1 parent 7a5e057 commit 59f5e00
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@
"scripts/**/*",
"scss/**/*",
"src/**/*",
"umd/**/*"
"umd/**/*",
"!**/*.config.js",
"!**/__tests__/**/*"
],
"scripts": {
"build": "gulp build",
Expand Down
6 changes: 3 additions & 3 deletions src/globals/js/feature-flags.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* }
*/

exports.breakingChangesX = false;
exports.componentsX = false;
exports.grid = false;
exports.breakingChangesX = true;
exports.componentsX = true;
exports.grid = true;
exports.gridColumns16 = false;
6 changes: 3 additions & 3 deletions src/globals/scss/_feature-flags.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ $feature-flags: () !default;
/// @access private
/// @type Map
$default-feature-flags: (
components-x: false,
breaking-changes-x: false,
components-x: true,
breaking-changes-x: true,
ui-shell: false,
grid: false,
grid: true,
grid-columns-16: false,
grid--fallback: false,
);
Expand Down

0 comments on commit 59f5e00

Please sign in to comment.