pucoui 1.0.4 → 1.0.5

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/index.d.ts +2 -0
  2. package/package.json +3 -2
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ declare const styles: unknown
2
+ export default styles
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pucoui",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "A lightweight and customizable SCSS style guide for modern web development.",
5
5
  "keywords": [
6
6
  "pucoui",
@@ -15,7 +15,8 @@
15
15
  "types": "index.d.ts",
16
16
  "style": "dist/pucoui.min.css",
17
17
  "files": [
18
- "dist"
18
+ "dist",
19
+ "index.d.ts"
19
20
  ],
20
21
  "scripts": {
21
22
  "build": "rimraf dist && sass --load-path=../../node_modules src/index.scss dist/pucoui.css && postcss dist/pucoui.css --use autoprefixer cssnano --no-map -o dist/pucoui.min.css",