@onpe/ui 1.2.5 → 1.2.7

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/README.md +1786 -1749
  2. package/package.json +8 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onpe/ui",
3
- "version": "1.2.5",
3
+ "version": "1.2.7",
4
4
  "type": "module",
5
5
  "description": "Librería completa de UI para ONPE - Componentes, Hooks, Utils y Librerías",
6
6
  "main": "dist/index.js",
@@ -36,7 +36,8 @@
36
36
  "types": "./dist/lib.d.ts"
37
37
  },
38
38
  "./styles": "./dist/index.css",
39
- "./tailwind-preset": "./tailwind-preset.js"
39
+ "./tailwind-preset": "./tailwind-preset.js",
40
+ "./css": "./dist/index.css"
40
41
  },
41
42
  "files": [
42
43
  "dist",
@@ -45,8 +46,11 @@
45
46
  "!dist/**/*.map"
46
47
  ],
47
48
  "scripts": {
48
- "build": "rollup -c",
49
- "dev": "rollup -c -w",
49
+ "dev": "storybook dev -p 6006",
50
+ "build": "npm run build:css:prod && rollup -c",
51
+ "build:css": "node scripts/build-css.js",
52
+ "build:css:prod": "node scripts/build-css-prod.js",
53
+ "publish": "npm run build && npm publish",
50
54
  "test": "jest",
51
55
  "lint": "eslint src --ext .ts,.tsx",
52
56
  "lint:fix": "eslint src --ext .ts,.tsx --fix",