trepur_components 0.2.2 → 0.2.3

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/dist/index.css +4 -0
  2. package/package.json +3 -2
package/dist/index.css ADDED
@@ -0,0 +1,4 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+ @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "trepur_components",
3
3
  "description": "component lib",
4
4
  "author": "trepur_ttenneb",
5
- "version": "0.2.2",
5
+ "version": "0.2.3",
6
6
  "private": false,
7
7
  "keywords": [
8
8
  "react",
@@ -29,7 +29,8 @@
29
29
  },
30
30
  "scripts": {
31
31
  "build": "rm -rf dist && npm run build-atoms && npm run build-organisms",
32
- "build-test": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files",
32
+ "build-test": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files && npm run copy-css",
33
+ "copy-css": "NODE_ENV=production babel src/index.css --out-dir dist --copy-files",
33
34
  "build-atoms": "NODE_ENV=production babel src/lib/components/Atoms/ --out-dir dist --ignore src/**/*.stories.js --copy-files --no-copy-ignored",
34
35
  "build-organisms": "NODE_ENV=production babel src/lib/components/Organisms --out-dir dist --ignore src/**/*.stories.js --copy-files --no-copy-ignored",
35
36
  "eject": "react-scripts eject",