tailwind-to-style 2.9.3-beta.0 → 2.10.1
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/README.md +457 -0
- package/dist/index.browser.js +6158 -2710
- package/dist/index.cjs +6126 -2678
- package/dist/index.d.ts +118 -2
- package/dist/index.esm.js +6102 -2679
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/react.cjs.js +8468 -0
- package/dist/react.d.ts +76 -0
- package/dist/react.esm.js +8456 -0
- package/package.json +74 -74
package/package.json
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tailwind-to-style",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Convert tailwind classes to inline style",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist/index.cjs",
|
|
7
|
-
"module": "dist/index.esm.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist",
|
|
11
|
-
"preflight.css",
|
|
12
|
-
"README.md",
|
|
13
|
-
"LICENSE",
|
|
14
|
-
"plugins",
|
|
15
|
-
"lib"
|
|
16
|
-
],
|
|
17
|
-
"bin": {
|
|
18
|
-
"twsx-cli": "./lib/twsx-cli.js"
|
|
19
|
-
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
|
|
22
|
-
"build": "rollup -c rollup.config.js",
|
|
23
|
-
"dev": "rollup -c rollup.config.js --watch",
|
|
24
|
-
"lint": "eslint src/**/*.js",
|
|
25
|
-
"test:examples": "node examples/test/node-test.js",
|
|
26
|
-
"prepublishOnly": "npm run test && npm run build",
|
|
27
|
-
"version": "git add -A",
|
|
28
|
-
"postversion": "git push && git push --tags",
|
|
29
|
-
"prettify:src": "prettier --write \"src/**/*.js\"",
|
|
30
|
-
"prettify:examples": "prettier --write \"examples/**/*.js\""
|
|
31
|
-
},
|
|
32
|
-
"repository": {
|
|
33
|
-
"type": "git",
|
|
34
|
-
"url": "git+https://github.com/Bigetion/tailwind-to-style.git"
|
|
35
|
-
},
|
|
36
|
-
"keywords": [
|
|
37
|
-
"tailwind",
|
|
38
|
-
"tailwindcss",
|
|
39
|
-
"css",
|
|
40
|
-
"stylesheet"
|
|
41
|
-
],
|
|
42
|
-
"author": "Bigetion",
|
|
43
|
-
"license": "MIT",
|
|
44
|
-
"funding": {
|
|
45
|
-
"type": "individual",
|
|
46
|
-
"url": "https://buymeacoffee.com/bigetion"
|
|
47
|
-
},
|
|
48
|
-
"bugs": {
|
|
49
|
-
"url": "https://github.com/Bigetion/tailwind-to-style/issues"
|
|
50
|
-
},
|
|
51
|
-
"homepage": "https://github.com/Bigetion/tailwind-to-style#readme",
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@babel/core": "^7.27.4",
|
|
54
|
-
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
55
|
-
"@babel/preset-env": "^7.27.2",
|
|
56
|
-
"@rollup/plugin-babel": "^
|
|
57
|
-
"@rollup/plugin-commonjs": "^
|
|
58
|
-
"@rollup/plugin-json": "^6.1.0",
|
|
59
|
-
"@rollup/plugin-node-resolve": "^
|
|
60
|
-
"@rollup/plugin-terser": "^0.4.4",
|
|
61
|
-
"babel-jest": "^
|
|
62
|
-
"babel-loader": "^10.0.0",
|
|
63
|
-
"chokidar": "^4.0.1",
|
|
64
|
-
"eslint": "^
|
|
65
|
-
"jest": "^
|
|
66
|
-
"prettier": "^3.5.3",
|
|
67
|
-
"rollup": "^
|
|
68
|
-
"rollup-plugin-copy": "^3.5.0",
|
|
69
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
70
|
-
"terser": "^5.43.1",
|
|
71
|
-
"webpack": "^5.99.9",
|
|
72
|
-
"webpack-cli": "^6.0.1"
|
|
73
|
-
}
|
|
74
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "tailwind-to-style",
|
|
3
|
+
"version": "2.10.1",
|
|
4
|
+
"description": "Convert tailwind classes to inline style",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"preflight.css",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"plugins",
|
|
15
|
+
"lib"
|
|
16
|
+
],
|
|
17
|
+
"bin": {
|
|
18
|
+
"twsx-cli": "./lib/twsx-cli.js"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --passWithNoTests",
|
|
22
|
+
"build": "rollup -c rollup.config.js",
|
|
23
|
+
"dev": "rollup -c rollup.config.js --watch",
|
|
24
|
+
"lint": "eslint src/**/*.js",
|
|
25
|
+
"test:examples": "node examples/test/node-test.js",
|
|
26
|
+
"prepublishOnly": "npm run test && npm run build",
|
|
27
|
+
"version": "git add -A",
|
|
28
|
+
"postversion": "git push && git push --tags",
|
|
29
|
+
"prettify:src": "prettier --write \"src/**/*.js\"",
|
|
30
|
+
"prettify:examples": "prettier --write \"examples/**/*.js\""
|
|
31
|
+
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/Bigetion/tailwind-to-style.git"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"tailwind",
|
|
38
|
+
"tailwindcss",
|
|
39
|
+
"css",
|
|
40
|
+
"stylesheet"
|
|
41
|
+
],
|
|
42
|
+
"author": "Bigetion",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"funding": {
|
|
45
|
+
"type": "individual",
|
|
46
|
+
"url": "https://buymeacoffee.com/bigetion"
|
|
47
|
+
},
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/Bigetion/tailwind-to-style/issues"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://github.com/Bigetion/tailwind-to-style#readme",
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@babel/core": "^7.27.4",
|
|
54
|
+
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
55
|
+
"@babel/preset-env": "^7.27.2",
|
|
56
|
+
"@rollup/plugin-babel": "^7.0.0",
|
|
57
|
+
"@rollup/plugin-commonjs": "^28.0.1",
|
|
58
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
59
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
60
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
61
|
+
"babel-jest": "^30.0.0",
|
|
62
|
+
"babel-loader": "^10.0.0",
|
|
63
|
+
"chokidar": "^4.0.1",
|
|
64
|
+
"eslint": "^9.15.0",
|
|
65
|
+
"jest": "^30.0.0",
|
|
66
|
+
"prettier": "^3.5.3",
|
|
67
|
+
"rollup": "^4.27.4",
|
|
68
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
69
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
70
|
+
"terser": "^5.43.1",
|
|
71
|
+
"webpack": "^5.99.9",
|
|
72
|
+
"webpack-cli": "^6.0.1"
|
|
73
|
+
}
|
|
74
|
+
}
|