jekyll-theme-primer 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/_layouts/default.html +1 -1
  3. data/_sass/jekyll-theme-primer.scss +0 -1
  4. data/_sass/primer-base/CHANGELOG.md +20 -0
  5. data/_sass/primer-base/README.md +1 -1
  6. data/_sass/primer-base/build/build.css +1 -2
  7. data/_sass/primer-base/build/index.js +1 -0
  8. data/_sass/primer-base/index.scss +1 -1
  9. data/_sass/primer-base/lib/base.scss +1 -0
  10. data/_sass/{normalize.css → primer-base/lib}/normalize.scss +6 -2
  11. data/_sass/primer-base/lib/typography-base.scss +1 -1
  12. data/_sass/primer-base/package.json +36 -34
  13. data/_sass/primer-layout/CHANGELOG.md +19 -0
  14. data/_sass/primer-layout/README.md +3 -7
  15. data/_sass/primer-layout/build/build.css +1 -2
  16. data/_sass/primer-layout/build/index.js +1 -0
  17. data/_sass/primer-layout/index.scss +1 -0
  18. data/_sass/primer-layout/lib/grid.scss +0 -1
  19. data/_sass/primer-layout/package.json +35 -32
  20. data/_sass/primer-markdown/CHANGELOG.md +29 -0
  21. data/_sass/primer-markdown/README.md +1 -6
  22. data/_sass/primer-markdown/build/build.css +1 -2
  23. data/_sass/primer-markdown/build/index.js +1 -0
  24. data/_sass/primer-markdown/lib/blob-csv.scss +3 -3
  25. data/_sass/primer-markdown/lib/code.scss +2 -2
  26. data/_sass/primer-markdown/lib/headings.scss +4 -4
  27. data/_sass/primer-markdown/lib/images.scss +3 -3
  28. data/_sass/primer-markdown/lib/lists.scss +1 -1
  29. data/_sass/primer-markdown/lib/markdown-body.scss +9 -9
  30. data/_sass/primer-markdown/lib/tables.scss +9 -5
  31. data/_sass/primer-markdown/package.json +34 -31
  32. data/_sass/primer-support/CHANGELOG.md +85 -0
  33. data/_sass/primer-support/README.md +1 -1
  34. data/_sass/primer-support/index.scss +5 -1
  35. data/_sass/primer-support/lib/mixins/buttons.scss +156 -0
  36. data/_sass/primer-support/lib/mixins/misc.scss +1 -1
  37. data/_sass/primer-support/lib/mixins/typography.scss +4 -4
  38. data/_sass/primer-support/lib/variables/color-system.scss +114 -0
  39. data/_sass/primer-support/lib/variables/colors.scss +64 -0
  40. data/_sass/primer-support/lib/variables/layout.scss +58 -0
  41. data/_sass/primer-support/lib/variables/misc.scss +45 -0
  42. data/_sass/primer-support/lib/variables/typography.scss +35 -0
  43. data/_sass/primer-support/package.json +33 -29
  44. data/_sass/primer-utilities/CHANGELOG.md +130 -0
  45. data/_sass/primer-utilities/README.md +2 -2
  46. data/_sass/primer-utilities/build/build.css +1 -2
  47. data/_sass/primer-utilities/build/index.js +1 -2
  48. data/_sass/primer-utilities/index.scss +5 -1
  49. data/_sass/primer-utilities/lib/animations.scss +8 -11
  50. data/_sass/primer-utilities/lib/borders.scss +61 -0
  51. data/_sass/primer-utilities/lib/box-shadow.scss +26 -0
  52. data/_sass/primer-utilities/lib/colors.scss +72 -10
  53. data/_sass/primer-utilities/lib/flexbox.scss +80 -0
  54. data/_sass/primer-utilities/lib/layout.scss +37 -50
  55. data/_sass/primer-utilities/lib/margin.scss +37 -9
  56. data/_sass/primer-utilities/lib/padding.scss +16 -3
  57. data/_sass/primer-utilities/lib/typography.scss +65 -9
  58. data/_sass/primer-utilities/lib/visibility-display.scss +95 -0
  59. data/_sass/primer-utilities/package.json +35 -35
  60. metadata +17 -10
  61. data/_sass/normalize.css/CHANGELOG.md +0 -135
  62. data/_sass/normalize.css/LICENSE.md +0 -21
  63. data/_sass/normalize.css/README.md +0 -128
  64. data/_sass/normalize.css/package.json +0 -111
  65. data/_sass/primer-support/lib/variables.scss +0 -179
  66. data/_sass/primer-utilities/lib/border.scss +0 -29
@@ -1,21 +1,28 @@
1
1
  // Padding spacer utilities
2
- // stylelint-disable block-opening-brace-space-before, declaration-colon-space-before, primer/selector-no-utility
2
+ // stylelint-disable block-opening-brace-space-before, declaration-colon-space-before
3
+ // stylelint-disable comment-empty-line-before
3
4
  @for $i from 1 through length($spacers) {
4
5
  $size: #{nth($spacers, $i)};
5
6
  $scale: #{$i - 1};
6
7
 
7
- // .p-0, .p-1, .p-2...
8
+ /* Set a #{$size} padding to all sides */
8
9
  .p-#{$scale} { padding : #{$size} !important; }
10
+ /* Set a #{$size} padding to the top */
9
11
  .pt-#{$scale} { padding-top : #{$size} !important; }
12
+ /* Set a #{$size} padding to the right */
10
13
  .pr-#{$scale} { padding-right : #{$size} !important; }
14
+ /* Set a #{$size} padding to the bottom */
11
15
  .pb-#{$scale} { padding-bottom: #{$size} !important; }
16
+ /* Set a #{$size} padding to the left */
12
17
  .pl-#{$scale} { padding-left : #{$size} !important; }
13
18
 
19
+ /* Set a #{$size} padding to the left & right */
14
20
  .px-#{$scale} {
15
21
  padding-right: #{$size} !important;
16
22
  padding-left: #{$size} !important;
17
23
  }
18
24
 
25
+ /* Set a #{$size} padding to the top & bottom */
19
26
  .py-#{$scale} {
20
27
  padding-top: #{$size} !important;
21
28
  padding-bottom: #{$size} !important;
@@ -33,18 +40,24 @@
33
40
  $size: #{nth($spacers, $i)}; // xs, sm, md, lg, xl
34
41
  $scale: #{$i - 1}; // 0, 1, 2, 3, 4, 5, 6
35
42
 
36
- // .p-sm-0, .p-md-1, .p-lg-2...
43
+ /* Set a #{$size} padding to all sides at the #{$breakpoint} breakpoint */
37
44
  .p-#{$breakpoint}-#{$scale} { padding: #{$size} !important; }
45
+ /* Set a #{$size} padding to the top at the #{$breakpoint} breakpoint */
38
46
  .pt-#{$breakpoint}-#{$scale} { padding-top: #{$size} !important; }
47
+ /* Set a #{$size} padding to the right at the #{$breakpoint} breakpoint */
39
48
  .pr-#{$breakpoint}-#{$scale} { padding-right: #{$size} !important; }
49
+ /* Set a #{$size} padding to the bottom at the #{$breakpoint} breakpoint */
40
50
  .pb-#{$breakpoint}-#{$scale} { padding-bottom: #{$size} !important; }
51
+ /* Set a #{$size} padding to the left at the #{$breakpoint} breakpoint */
41
52
  .pl-#{$breakpoint}-#{$scale} { padding-left: #{$size} !important; }
42
53
 
54
+ /* Set a #{$size} padding to the left & right at the #{$breakpoint} breakpoint */
43
55
  .px-#{$breakpoint}-#{$scale} {
44
56
  padding-right: #{$size} !important;
45
57
  padding-left: #{$size} !important;
46
58
  }
47
59
 
60
+ /* Set a #{$size} padding to the top & bottom at the #{$breakpoint} breakpoint */
48
61
  .py-#{$breakpoint}-#{$scale} {
49
62
  padding-top: #{$size} !important;
50
63
  padding-bottom: #{$size} !important;
@@ -1,4 +1,5 @@
1
- // stylelint-disable block-closing-brace-space-before, primer/selector-no-utility, selector-list-comma-newline-after, declaration-block-semicolon-newline-after, declaration-block-single-line-max-declarations
1
+ // stylelint-disable block-closing-brace-space-before, primer/selector-no-utility, selector-list-comma-newline-after
2
+ // stylelint-disable comment-empty-line-before
2
3
  // Type scale variables found in primer-support/lib/variables.scss
3
4
  // $h00-size: 48px;
4
5
  // $h0-size: 40px;
@@ -9,9 +10,7 @@
9
10
  // $h5-size: 14px;
10
11
  // $h6-size: 12px;
11
12
 
12
- // Heading utilities
13
- .h1, .h2, .h3, .h4, .h5, .h6 { font-weight: $font-weight-bold !important; }
14
-
13
+ /* Set the font size to 26px */
15
14
  .h1 {
16
15
  font-size: 26px !important;
17
16
 
@@ -19,12 +18,14 @@
19
18
 
20
19
  }
21
20
 
21
+ /* Set the font size to 22px */
22
22
  .h2 {
23
23
  font-size: 22px !important;
24
24
 
25
25
  @include breakpoint(md) { font-size: $h2-size !important; }
26
26
  }
27
27
 
28
+ /* Set the font size to 18px */
28
29
  .h3 {
29
30
  font-size: 18px !important;
30
31
 
@@ -32,20 +33,27 @@
32
33
 
33
34
  }
34
35
 
36
+ /* Set the font size to #{$h4-size} */
35
37
  .h4 {
36
- font-size: 16px !important;
38
+ font-size: $h4-size !important;
37
39
 
38
40
  @include breakpoint(md) { font-size: $h4-size !important; }
39
41
 
40
42
  }
41
43
 
44
+ /* Set the font size to #{$h5-size} */
42
45
  .h5 { font-size: $h5-size !important; }
43
46
 
44
47
  // Does not include color property like typography base
45
48
  // styles, color should be applied with color utilities.
49
+ /* Set the font size to #{$h6-size} */
46
50
  .h6 { font-size: $h6-size !important; }
47
51
 
52
+ // Heading utilities
53
+ .h1, .h2, .h3, .h4, .h5, .h6 { font-weight: $font-weight-bold !important; }
54
+
48
55
  // Type utilities that match type sale
56
+ /* Set the font size to 26px */
49
57
  .f1 {
50
58
  font-size: 26px !important;
51
59
 
@@ -53,12 +61,14 @@
53
61
 
54
62
  }
55
63
 
64
+ /* Set the font size to 22px */
56
65
  .f2 {
57
66
  font-size: 22px !important;
58
67
 
59
68
  @include breakpoint(md) { font-size: $h2-size !important; }
60
69
  }
61
70
 
71
+ /* Set the font size to 18px */
62
72
  .f3 {
63
73
  font-size: 18px !important;
64
74
 
@@ -66,17 +76,21 @@
66
76
 
67
77
  }
68
78
 
79
+ /* Set the font size to #{$h4-size} */
69
80
  .f4 {
70
- font-size: 16px !important;
81
+ font-size: $h4-size !important;
71
82
 
72
83
  @include breakpoint(md) { font-size: $h4-size !important; }
73
84
 
74
85
  }
75
86
 
87
+ /* Set the font size to #{$h5-size} */
76
88
  .f5 { font-size: $h5-size !important; }
89
+ /* Set the font size to #{$h6-size} */
77
90
  .f6 { font-size: $h6-size !important; }
78
91
 
79
92
  // Type utils with light weight that match type scale
93
+ /* Set the font size to 40px and weight to light */
80
94
  .f00-light {
81
95
  font-size: 40px !important;
82
96
  font-weight: $font-weight-light !important;
@@ -85,6 +99,7 @@
85
99
 
86
100
  }
87
101
 
102
+ /* Set the font size to 32px and weight to light */
88
103
  .f0-light {
89
104
  font-size: 32px !important;
90
105
  font-weight: $font-weight-light !important;
@@ -93,6 +108,7 @@
93
108
 
94
109
  }
95
110
 
111
+ /* Set the font size to 26px and weight to light */
96
112
  .f1-light {
97
113
  font-size: 26px !important;
98
114
  font-weight: $font-weight-light !important;
@@ -101,6 +117,7 @@
101
117
 
102
118
  }
103
119
 
120
+ /* Set the font size to 22px and weight to light */
104
121
  .f2-light {
105
122
  font-size: 22px !important;
106
123
  font-weight: $font-weight-light !important;
@@ -109,6 +126,7 @@
109
126
 
110
127
  }
111
128
  // Same size and weight as .lead but without color property
129
+ /* Set the font size to 18px and weight to light */
112
130
  .f3-light {
113
131
  font-size: 18px !important;
114
132
  font-weight: $font-weight-light !important;
@@ -118,9 +136,10 @@
118
136
  }
119
137
 
120
138
  // Smallest text size
139
+ /* Set the font size to ${#h6-size} */
121
140
  .text-small { font-size: $h6-size !important; } // 12px
122
141
 
123
- // Large leading paragraphs
142
+ /* Large leading paragraphs */
124
143
  .lead {
125
144
  margin-bottom: 30px;
126
145
  font-size: $h3-size;
@@ -132,24 +151,61 @@
132
151
  // Close to commonly used line-heights. Most line-heights
133
152
  // combined with type size equate to whole pixels.
134
153
  // Will be improved with future typography scale updates.
154
+ /* Set the line height to ultra condensed */
135
155
  .lh-condensed-ultra { line-height: $lh-condensed-ultra !important; }
156
+ /* Set the line height to condensed */
136
157
  .lh-condensed { line-height: $lh-condensed !important; }
158
+ /* Set the line height to default */
137
159
  .lh-default { line-height: $lh-default !important; }
138
160
 
139
161
  // Text alignments
162
+ /* Text align to the right */
140
163
  .text-right { text-align: right !important; }
164
+ /* Text align to the left */
141
165
  .text-left { text-align: left !important; }
166
+ /* Text align to the center */
142
167
  .text-center { text-align: center !important; }
143
168
 
169
+ // Responsive text alignment
170
+ // .text-md-left, .text-lg-right, ...
171
+ @each $breakpoint in map-keys($breakpoints) {
172
+ @include breakpoint($breakpoint) {
173
+ .text-#{$breakpoint}-right { text-align: right !important; }
174
+ .text-#{$breakpoint}-left { text-align: left !important; }
175
+ .text-#{$breakpoint}-center { text-align: center !important; }
176
+ }
177
+ }
178
+
144
179
  // Text styles
180
+ /* Set the font weight to normal */
145
181
  .text-normal { font-weight: normal !important; }
182
+ /* Set the font weight to bold */
146
183
  .text-bold { font-weight: $font-weight-bold !important;}
147
- .text-italic { font-style: italic !important;}
184
+ /* Set the font to italic */
185
+ .text-italic { font-style: italic !important; }
186
+ /* Make text uppercase */
148
187
  .text-uppercase { text-transform: uppercase !important; }
188
+ /* Underline text */
149
189
  .no-underline { text-decoration: none !important; }
150
- .no-wrap { white-space: nowrap !important;}
190
+ /* Don't wrap white space */
191
+ .no-wrap { white-space: nowrap !important; }
192
+ /* Allow long lines with no spaces to line break */
193
+ .wb-break-all { word-break: break-all !important; }
151
194
 
152
195
  .text-emphasized {
153
196
  font-weight: $font-weight-bold;
154
197
  color: $text-gray-dark;
155
198
  }
199
+
200
+ // List styles
201
+ .list-style-none { list-style: none !important; }
202
+
203
+ // Text Shadows
204
+ /* Add a dark text shadow */
205
+ .text-shadow-dark {
206
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 1px 25px rgba(0, 0, 0, 0.75);
207
+ }
208
+ /* Add a light text shadow */
209
+ .text-shadow-light {
210
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
211
+ }
@@ -0,0 +1,95 @@
1
+ // Visibility and display utilities
2
+ // stylelint-disable block-opening-brace-space-after, block-opening-brace-space-before, primer/selector-no-utility
3
+ // stylelint-disable comment-empty-line-before
4
+
5
+ // Visibility utilities
6
+ /* Visibility hidden */
7
+ .v-hidden { visibility: hidden !important; }
8
+ /* Visibility visible */
9
+ .v-visible { visibility: visible !important; }
10
+
11
+ // Display utilites
12
+ /* Set the display to table */
13
+ .d-table { display: table !important; }
14
+ /* Set the display to table-cell */
15
+ .d-table-cell { display: table-cell !important; }
16
+ /* Set the table-layout to fixed */
17
+ .table-fixed { table-layout: fixed !important; }
18
+
19
+ /* Set the display to block */
20
+ .d-block { display: block !important; }
21
+ /* Set the display to inline */
22
+ .d-inline { display: inline !important; }
23
+ /* Set the display to inline-block */
24
+ .d-inline-block { display: inline-block !important; }
25
+ /* Set the display to flex */
26
+ .d-flex { display: flex !important; }
27
+ /* Set the display to inline-flex */
28
+ .d-inline-flex { display: inline-flex !important; }
29
+ /* Set the display to none */
30
+ .d-none { display: none !important; }
31
+
32
+ // Responsive display utlities
33
+ // .d-sm-none, .d-lg-inline, ...
34
+ @each $breakpoint in map-keys($breakpoints) {
35
+ @include breakpoint($breakpoint) {
36
+ /* Set the display to table at the #{$breakpoint} breakpoint */
37
+ .d-#{$breakpoint}-table { display: table !important; }
38
+ /* Set the display to table cell at the #{$breakpoint} breakpoint */
39
+ .d-#{$breakpoint}-table-cell { display: table-cell !important; }
40
+ /* Set the display to block at the #{$breakpoint} breakpoint */
41
+ .d-#{$breakpoint}-block { display: block !important; }
42
+ /* Set the display to inline at the #{$breakpoint} breakpoint */
43
+ .d-#{$breakpoint}-inline { display: inline !important; }
44
+ /* Set the display to inline block at the #{$breakpoint} breakpoint */
45
+ .d-#{$breakpoint}-inline-block { display: inline-block !important; }
46
+ /* Set the display to flex at the #{$breakpoint} breakpoint */
47
+ .d-#{$breakpoint}-flex { display: flex !important; }
48
+ /* Set the display to flex at the #{$breakpoint} breakpoint */
49
+ .d-#{$breakpoint}-inline-flex { display: inline-flex !important; }
50
+ /* Set the display to none at the #{$breakpoint} breakpoint */
51
+ .d-#{$breakpoint}-none { display: none !important; }
52
+ }
53
+ }
54
+
55
+ // Hide utilities for each breakpoint
56
+ // Each hide utility only applies to one breakpoint range.
57
+ @media (max-width: $width-sm) {
58
+ .hide-sm {
59
+ display: none !important;
60
+ }
61
+ }
62
+
63
+ @media (min-width: $width-sm) and (max-width: $width-md) {
64
+ .hide-md {
65
+ display: none !important;
66
+ }
67
+ }
68
+
69
+ @media (min-width: $width-md) and (max-width: $width-lg) {
70
+ .hide-lg {
71
+ display: none !important;
72
+ }
73
+ }
74
+
75
+ @media (min-width: $width-lg) {
76
+ .hide-xl {
77
+ display: none !important;
78
+ }
79
+ }
80
+
81
+ // Only display content to screen readers
82
+ //
83
+ // See: http://a11yproject.com/posts/how-to-hide-content/
84
+
85
+ .sr-only {
86
+ position: absolute;
87
+ width: 1px;
88
+ height: 1px;
89
+ padding: 0;
90
+ overflow: hidden;
91
+ clip: rect(0, 0, 0, 0);
92
+ // Workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=1241631
93
+ word-wrap: normal;
94
+ border: 0;
95
+ }
@@ -2,78 +2,76 @@
2
2
  "_args": [
3
3
  [
4
4
  {
5
- "raw": "primer-utilities@^1.0.0",
5
+ "raw": "primer-utilities@4.1.1",
6
6
  "scope": null,
7
7
  "escapedName": "primer-utilities",
8
8
  "name": "primer-utilities",
9
- "rawSpec": "^1.0.0",
10
- "spec": ">=1.0.0 <2.0.0",
11
- "type": "range"
9
+ "rawSpec": "4.1.1",
10
+ "spec": "4.1.1",
11
+ "type": "version"
12
12
  },
13
- "/Users/benbalter/projects/jekyll-theme-primer"
13
+ "/Users/benbalter/projects/primer"
14
14
  ]
15
15
  ],
16
- "_from": "primer-utilities@>=1.0.0 <2.0.0",
17
- "_id": "primer-utilities@1.0.0",
16
+ "_from": "primer-utilities@4.1.1",
17
+ "_id": "primer-utilities@4.1.1",
18
18
  "_inCache": true,
19
19
  "_location": "/primer-utilities",
20
- "_nodeVersion": "5.12.0",
20
+ "_nodeVersion": "7.7.3",
21
21
  "_npmOperationalInternal": {
22
- "host": "packages-16-east.internal.npmjs.com",
23
- "tmp": "tmp/primer-utilities-1.0.0.tgz_1472778584897_0.8824154585599899"
22
+ "host": "packages-12-west.internal.npmjs.com",
23
+ "tmp": "tmp/primer-utilities-4.1.1.tgz_1490129583996_0.49141979264095426"
24
24
  },
25
25
  "_npmUser": {
26
26
  "name": "jonrohan",
27
27
  "email": "yes@jonrohan.codes"
28
28
  },
29
- "_npmVersion": "3.8.6",
29
+ "_npmVersion": "4.1.2",
30
30
  "_phantomChildren": {},
31
31
  "_requested": {
32
- "raw": "primer-utilities@^1.0.0",
32
+ "raw": "primer-utilities@4.1.1",
33
33
  "scope": null,
34
34
  "escapedName": "primer-utilities",
35
35
  "name": "primer-utilities",
36
- "rawSpec": "^1.0.0",
37
- "spec": ">=1.0.0 <2.0.0",
38
- "type": "range"
36
+ "rawSpec": "4.1.1",
37
+ "spec": "4.1.1",
38
+ "type": "version"
39
39
  },
40
40
  "_requiredBy": [
41
+ "#USER",
41
42
  "/"
42
43
  ],
43
- "_resolved": "https://registry.npmjs.org/primer-utilities/-/primer-utilities-1.0.0.tgz",
44
- "_shasum": "4b347a11315304cd5bc04c4f742b0147ea6cd9af",
44
+ "_resolved": "https://registry.npmjs.org/primer-utilities/-/primer-utilities-4.1.1.tgz",
45
+ "_shasum": "f02d8168c7c30aa4419114e0abe4259c90e1542f",
45
46
  "_shrinkwrap": null,
46
- "_spec": "primer-utilities@^1.0.0",
47
- "_where": "/Users/benbalter/projects/jekyll-theme-primer",
47
+ "_spec": "primer-utilities@4.1.1",
48
+ "_where": "/Users/benbalter/projects/primer",
48
49
  "author": {
49
50
  "name": "GitHub, Inc."
50
51
  },
51
52
  "bugs": {
52
- "url": "https://github.com/primer/utilities/issues"
53
+ "url": "https://github.com/primer/primer-utilities/issues"
53
54
  },
54
55
  "dependencies": {
55
56
  "primer-support": "*"
56
57
  },
57
58
  "description": "Immutable, atomic CSS classes to rapidly build product",
58
59
  "devDependencies": {
59
- "autoprefixer": "^6.3.6",
60
- "cssstats-cli": "^1.0.0-beta.2",
61
- "node-sass": "^3.7.0",
62
- "postcss-cli": "^2.5.2",
63
- "stylelint": "^7.0.3",
64
- "stylelint-config-primer": "^1.1.0"
60
+ "primer-module-build": "*",
61
+ "stylelint": "*",
62
+ "stylelint-config-primer": "*"
65
63
  },
66
64
  "directories": {},
67
65
  "dist": {
68
- "shasum": "4b347a11315304cd5bc04c4f742b0147ea6cd9af",
69
- "tarball": "https://registry.npmjs.org/primer-utilities/-/primer-utilities-1.0.0.tgz"
66
+ "shasum": "f02d8168c7c30aa4419114e0abe4259c90e1542f",
67
+ "tarball": "https://registry.npmjs.org/primer-utilities/-/primer-utilities-4.1.1.tgz"
70
68
  },
71
69
  "files": [
72
70
  "index.scss",
73
71
  "lib",
74
72
  "build"
75
73
  ],
76
- "gitHead": "33cf5f9a78516e33f6a0bd9715a44d46465c5e25",
74
+ "gitHead": "a181db1e19879e12cc99069a9a444e3adbbee7a3",
77
75
  "homepage": "http://primercss.io/",
78
76
  "keywords": [
79
77
  "primer",
@@ -84,6 +82,10 @@
84
82
  "license": "MIT",
85
83
  "main": "build/index.js",
86
84
  "maintainers": [
85
+ {
86
+ "name": "broccolini",
87
+ "email": "diana.mounter@gmail.com"
88
+ },
87
89
  {
88
90
  "name": "jonrohan",
89
91
  "email": "yes@jonrohan.codes"
@@ -94,15 +96,13 @@
94
96
  "readme": "ERROR: No README data found!",
95
97
  "repository": {
96
98
  "type": "git",
97
- "url": "git+https://github.com/primer/utilities.git"
99
+ "url": "git+https://github.com/primer/primer-utilities.git"
98
100
  },
99
101
  "scripts": {
100
- "build": "node-sass index.scss --include-path node_modules --output-style compressed | postcss -c .postcss.json -o build/build.css",
101
- "prepublish": "npm run setup && npm run build && npm run stats",
102
- "setup": "if [ ! -d \"node_modules\" ]; then npm install; fi",
103
- "stats": "(echo \"module.exports = { 'cssstats': \" && cssstats build/build.css && echo \"}\") > build/index.js",
102
+ "build": "primer-module-build index.scss",
103
+ "prepublish": "npm run build",
104
104
  "test": "npm run build && stylelint **/*.scss -c .stylelintrc.json -s scss"
105
105
  },
106
106
  "style": "index.scss",
107
- "version": "1.0.0"
107
+ "version": "4.1.1"
108
108
  }