|
2 | 2 | //
|
3 | 3 | // Utility mixins and functions for evaluating source code across our variables, maps, and mixins.
|
4 | 4 |
|
5 |
| -@plugin "plugins/index"; |
| 5 | +@plugin "plugins/index.js"; |
6 | 6 |
|
7 | 7 | // LESS PORT: This plugin implements a function for returning a list of keys in a map, like Sass’
|
8 | 8 | // [`map-keys()`](http://sass-lang.com/documentation/Sass/Script/Functions.html#map_keys-instance_method)
|
9 | 9 | // function.
|
10 |
| -@plugin "plugins/map-keys"; |
| 10 | +@plugin "plugins/map-keys.js"; |
11 | 11 |
|
12 | 12 | // LESS PORT: This plugin implements `warn()` and `error()` functions like Sass’ `@warn` and
|
13 | 13 | // `@error`.
|
14 |
| -@plugin "plugins/logger"; |
| 14 | +@plugin "plugins/logger.js"; |
15 | 15 |
|
16 | 16 | // Ascending
|
17 | 17 | // Used to evaluate Sass maps like our grid breakpoints.
|
|
73 | 73 | // @return #fff;
|
74 | 74 | // }
|
75 | 75 | //}
|
76 |
| -@plugin "plugins/color-yiq"; |
| 76 | +@plugin "plugins/color-yiq.js"; |
77 | 77 |
|
78 | 78 | // Retreive color Sass maps
|
79 | 79 | //@function color($key: "blue") {
|
80 | 80 | // @return map-get($colors, $key);
|
81 | 81 | //}
|
82 |
| -@plugin "plugins/color"; |
| 82 | +@plugin "plugins/color.js"; |
83 | 83 |
|
84 | 84 | //@function theme-color($key: "primary") {
|
85 | 85 | // @return map-get($theme-colors, $key);
|
86 | 86 | //}
|
87 |
| -@plugin "plugins/theme-color"; |
| 87 | +@plugin "plugins/theme-color.js"; |
88 | 88 |
|
89 | 89 | //@function gray($key: "100") {
|
90 | 90 | // @return map-get($grays, $key);
|
91 | 91 | //}
|
92 |
| -@plugin "plugins/gray"; |
| 92 | +@plugin "plugins/gray.js"; |
93 | 93 |
|
94 | 94 | // Request a theme color level
|
95 | 95 | //@function theme-color-level($color-name: "primary", $level: 0) {
|
|
99 | 99 | //
|
100 | 100 | // @return mix($color-base, $color, $level * $theme-color-interval);
|
101 | 101 | //}
|
102 |
| -@plugin "plugins/theme-color-level"; |
| 102 | +@plugin "plugins/theme-color-level.js"; |
0 commit comments