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.
Files changed (2) hide show
  1. package/build.js +7 -0
  2. 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");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swatchkit",
3
- "version": "0.2.4",
3
+ "version": "0.3.0",
4
4
  "description": "A lightweight tool for creating HTML pattern libraries.",
5
5
  "main": "build.js",
6
6
  "bin": {