@madgex/design-system 1.22.3 → 1.22.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 04 Sep 2019 16:09:31 GMT
3
+ * Generated on Wed, 18 Sep 2019 11:13:04 GMT
4
4
  */
5
5
 
6
6
  :root {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 04 Sep 2019 16:09:31 GMT
3
+ * Generated on Wed, 18 Sep 2019 11:13:04 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,7 +1,7 @@
1
1
 
2
2
  /*
3
3
  Do not edit directly
4
- Generated on Wed, 04 Sep 2019 16:09:31 GMT
4
+ Generated on Wed, 18 Sep 2019 11:13:04 GMT
5
5
  */
6
6
 
7
7
  $mds-color-brand-1-base: #1b75bb !default;
package/gulp-tasks/css.js CHANGED
@@ -7,7 +7,7 @@ function css() {
7
7
  .src('src/scss/index.scss')
8
8
  .pipe(
9
9
  sass.sync({
10
- outputStyle: 'expanded',
10
+ outputStyle: 'compressed',
11
11
  precision: 10,
12
12
  includePaths: ['./node_modules'],
13
13
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@madgex/design-system",
3
- "version": "1.22.3",
3
+ "version": "1.22.4",
4
4
  "scripts": {
5
5
  "clean": "rimraf dist public tokens/build",
6
6
  "commit": "commit",
@@ -21,6 +21,8 @@
21
21
  "url": "https://github.com/jameswragg/madgex-design-system"
22
22
  },
23
23
  "dependencies": {
24
+ "node-sass": "^4.12.0",
25
+ "style-dictionary": "^2.8.1",
24
26
  "svgxuse": "^1.2.6"
25
27
  },
26
28
  "devDependencies": {
@@ -31,7 +33,7 @@
31
33
  "@commitlint/cli": "^8.1.0",
32
34
  "@commitlint/config-conventional": "^8.1.0",
33
35
  "@commitlint/prompt-cli": "^8.1.0",
34
- "@frctl/fractal": "^1.1.7",
36
+ "@frctl/fractal": "^1.2.0",
35
37
  "@frctl/mandelbrot": "^1.2.1",
36
38
  "@frctl/nunjucks": "^2.0.1",
37
39
  "@madgex/eslint-config-madgex": "^1.2.0",
@@ -56,14 +58,12 @@
56
58
  "husky": "^3.0.2",
57
59
  "lint-staged": "^9.2.1",
58
60
  "mini-css-extract-plugin": "^0.8.0",
59
- "node-sass": "^4.12.0",
60
61
  "postcss": "^7.0.17",
61
62
  "postcss-cli": "^6.1.3",
62
63
  "postcss-loader": "^3.0.0",
63
64
  "rimraf": "^2.6.3",
64
65
  "sass-loader": "^7.1.0",
65
66
  "semantic-release": "^15.13.19",
66
- "style-dictionary": "^2.8.1",
67
67
  "style-loader": "^0.23.1",
68
68
  "svg-sprite-loader": "^4.1.6",
69
69
  "svgo": "^1.3.0",
@@ -0,0 +1,9 @@
1
+ @import 'resets/_index';
2
+ @import 'vendor/normalize';
3
+ @import 'functions/_index';
4
+ @import 'utilities/_index';
5
+ @import 'core/_index';
6
+ @import 'components/_index';
7
+
8
+ // Should stay last to override other classes
9
+ @import 'helpers/_index';
@@ -1,10 +1,3 @@
1
- @import '../../dist/_tokens/scss/tokens';
2
- @import 'resets/_index';
3
- @import 'vendor/normalize';
4
- @import 'functions/_index';
5
- @import 'utilities/_index';
6
- @import 'core/_index';
7
- @import 'components/_index';
1
+ @import '_tokens/scss/tokens';
8
2
 
9
- // Should stay last to override other classes
10
- @import 'helpers/_index';
3
+ @import './import.scss';