prettier-plugin-tailwind-styled-components 0.0.2 → 0.0.4

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 (3) hide show
  1. package/CHANGELOG.md +15 -1
  2. package/dist/index.js +2285 -36
  3. package/package.json +11 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prettier-plugin-tailwind-styled-components",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "A Prettier plugin for sorting and formatting Tailwind CSS classes when using Tailwind Styled-Components.",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "scripts": {
22
22
  "_pre": "rimraf dist",
23
- "_esbuild": "node build.js",
23
+ "_esbuild": "node build.mjs",
24
24
  "prebuild": "yarn _pre",
25
25
  "build": "yarn _esbuild --minify",
26
26
  "predev": "yarn _pre",
@@ -35,14 +35,13 @@
35
35
  "@types/react": "^18.0.26",
36
36
  "@types/react-dom": "^18.0.10",
37
37
  "@types/styled-components": "^5.1.26",
38
- "esbuild": "^0.17.0",
38
+ "clear-module": "^4.1.2",
39
+ "esbuild": "^0.18.0",
39
40
  "escalade": "^3.1.1",
40
- "import-fresh": "^3.3.0",
41
- "import-from": "^4.0.0",
42
41
  "import-sort-style-module": "^6.0.0",
43
42
  "jest": "^29.3.1",
44
43
  "object-hash": "^3.0.0",
45
- "prettier": "^2.8.3",
44
+ "prettier": "^2.8.8",
46
45
  "prettier-plugin-css-order": "^1.3.0",
47
46
  "prettier-plugin-import-sort": "^0.0.7",
48
47
  "prettier-plugin-jsdoc": "^0.4.2",
@@ -51,15 +50,16 @@
51
50
  "prettier-plugin-style-order": "^0.2.2",
52
51
  "react": "^18.2.0",
53
52
  "react-dom": "^18.2.0",
53
+ "resolve-from": "^5.0.0",
54
54
  "rimraf": "^4.0.7",
55
55
  "styled-components": "^5.3.6",
56
56
  "tailwind-styled-components": "^2.2.0",
57
- "tailwindcss": "^3.2.4",
57
+ "tailwindcss": "^3.3.0",
58
58
  "typescript": "^4.9.4"
59
59
  },
60
60
  "peerDependencies": {
61
61
  "@trivago/prettier-plugin-sort-imports": "*",
62
- "prettier": ">=2.8.0",
62
+ "prettier": "^2.2 || ^3.0",
63
63
  "prettier-plugin-css-order": "*",
64
64
  "prettier-plugin-import-sort": "*",
65
65
  "prettier-plugin-jsdoc": "*",
@@ -98,5 +98,8 @@
98
98
  ".js, .jsx, .ts, .tsx": {
99
99
  "style": "module"
100
100
  }
101
+ },
102
+ "jest": {
103
+ "testTimeout": 15000
101
104
  }
102
105
  }