tabler-react-2 0.1.0 → 0.1.2
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.
- package/.postcss.config.js +3 -0
- package/dist/helper.css +11 -0
- package/dist/util/flex.js +3 -3
- package/package-lock.json +1717 -21
- package/package.json +9 -2
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tabler-react-2",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A react implementation of Tabler ui",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "cd demo && yarn start",
|
|
8
|
-
"build": "
|
|
8
|
+
"build:css": "postcss src/**/*.css --dir dist",
|
|
9
|
+
"build": "babel src --out-dir dist && npm run build:css"
|
|
9
10
|
},
|
|
10
11
|
"author": "Jack Crane",
|
|
11
12
|
"license": "MIT",
|
|
@@ -19,5 +20,11 @@
|
|
|
19
20
|
"prop-types": "^15.8.1",
|
|
20
21
|
"react": "^18.3.1",
|
|
21
22
|
"react-dom": "^18.3.1"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"babel-plugin-react-css-modules": "^5.2.6",
|
|
26
|
+
"babel-plugin-transform-assets": "^1.0.2",
|
|
27
|
+
"babel-plugin-transform-css-import-to-string": "^0.0.2",
|
|
28
|
+
"postcss-cli": "^11.0.0"
|
|
22
29
|
}
|
|
23
30
|
}
|