swatchkit 0.2.4 → 0.3.0
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.
- package/build.js +7 -0
- package/package.json +1 -1
package/build.js
CHANGED
|
@@ -279,6 +279,13 @@ function runInit(settings, options) {
|
|
|
279
279
|
copyDir(compositionsSrc, compositionsDest);
|
|
280
280
|
}
|
|
281
281
|
|
|
282
|
+
// Copy Utilities
|
|
283
|
+
const utilitiesSrc = path.join(__dirname, "src/blueprints/utilities");
|
|
284
|
+
const utilitiesDest = path.join(settings.cssDir, "utilities");
|
|
285
|
+
if (fs.existsSync(utilitiesSrc)) {
|
|
286
|
+
copyDir(utilitiesSrc, utilitiesDest);
|
|
287
|
+
}
|
|
288
|
+
|
|
282
289
|
// Copy SwatchKit UI Styles
|
|
283
290
|
const uiSrc = path.join(__dirname, "src/blueprints/swatchkit-ui.css");
|
|
284
291
|
const uiDest = path.join(settings.cssDir, "swatchkit-ui.css");
|