react-restyle-components 0.1.21 → 0.1.22

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 +22 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,8 +8,30 @@ Easy use restyle components
8
8
  npm i react-restyle-components
9
9
  or
10
10
  yarn add react-restyle-components
11
+ yarn add -D @craco/craco craco-alias
12
+ yarn add tailwindcss
13
+
11
14
  ```
12
15
 
16
+ ## Some changes required
17
+
18
+ tsconfig.json
19
+ "compilerOptions": {
20
+ ...
21
+ "noImplicitAny": false
22
+ },
23
+
24
+ // modify script
25
+ "start": "serve -s ./build",
26
+ "dev": "craco start",
27
+ "build": "craco build",
28
+ "test": "craco test"
29
+
30
+ // Paste 3 files your root path
31
+ https://github.com/appasaheb4/react-restyle-components/blob/master/craco.config.js
32
+ https://github.com/appasaheb4/react-restyle-components/blob/master/postcss.config.js
33
+ https://github.com/appasaheb4/react-restyle-components/blob/master/tailwind.config.js
34
+
13
35
  ##
14
36
 
15
37
  ```jsx
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-restyle-components",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "private": false,
5
5
  "description": "Easy use restyle components",
6
6
  "main": "lib/cjs/index.js",