@youngonesworks/ui 0.1.131 → 0.1.132

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.
@@ -0,0 +1,6 @@
1
+ @import "./variables.css";
2
+ @import "./typography.css";
3
+ @import "./editor.css";
4
+ @import "./utilities.css";
5
+
6
+ @source "../../dist";
@@ -215,5 +215,3 @@
215
215
  BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
216
216
  "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
217
217
  }
218
-
219
- @source "../../dist";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@youngonesworks/ui",
3
- "version": "0.1.131",
3
+ "version": "0.1.132",
4
4
  "description": "A Youngones UI component library",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -31,7 +31,8 @@
31
31
  "**/*.css"
32
32
  ],
33
33
  "scripts": {
34
- "build": "rolldown -c rolldown.config.mjs && tsc --emitDeclarationOnly && node scripts/copyCSS.mjs",
34
+ "clean": "rm -rf dist",
35
+ "build": "yarn clean && rolldown -c rolldown.config.mjs && tsc --emitDeclarationOnly && node scripts/copyCSS.mjs",
35
36
  "watch": "chokidar \"src/components/**/*.{ts,tsx,js,jsx,css}\" --ignore \"**/*.stories.tsx\" --ignore \"**/*.test.tsx\" -c \"yarn build\"",
36
37
  "dev": "storybook dev -p 6006",
37
38
  "build-storybook": "yarn run storybook build",