@modern-js/plugin-tailwindcss 1.21.3 → 2.0.0-beta.0
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/CHANGELOG.md +28 -6
- package/package.json +11 -34
package/CHANGELOG.md
CHANGED
@@ -1,11 +1,33 @@
|
|
1
1
|
# @modern-js/plugin-tailwindcss
|
2
2
|
|
3
|
-
##
|
4
|
-
|
5
|
-
###
|
6
|
-
|
7
|
-
-
|
8
|
-
|
3
|
+
## 2.0.0-beta.0
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- dda38c9: chore: v2
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- Updated dependencies [b18fa8f]
|
12
|
+
- Updated dependencies [c9e800d39]
|
13
|
+
- Updated dependencies [a2509bf]
|
14
|
+
- Updated dependencies [4369648ae]
|
15
|
+
- Updated dependencies [edd1cfb1a]
|
16
|
+
- Updated dependencies [cc971eabf]
|
17
|
+
- Updated dependencies [5b9049f]
|
18
|
+
- Updated dependencies [6bda14ed7]
|
19
|
+
- Updated dependencies [b8bbe036c]
|
20
|
+
- Updated dependencies [60d5378]
|
21
|
+
- Updated dependencies [d5a31df78]
|
22
|
+
- Updated dependencies [dda38c9]
|
23
|
+
- Updated dependencies [8b8e1bb57]
|
24
|
+
- Updated dependencies [3bbea92b2]
|
25
|
+
- Updated dependencies [fcace5b5b]
|
26
|
+
- Updated dependencies [abf3421]
|
27
|
+
- Updated dependencies [543be95]
|
28
|
+
- Updated dependencies [14b712d]
|
29
|
+
- @modern-js/runtime@2.0.0-beta.0
|
30
|
+
- @modern-js/utils@2.0.0-beta.0
|
9
31
|
|
10
32
|
## 1.21.2
|
11
33
|
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"modern",
|
12
12
|
"modern.js"
|
13
13
|
],
|
14
|
-
"version": "
|
14
|
+
"version": "2.0.0-beta.0",
|
15
15
|
"jsnext:source": "./src/index.ts",
|
16
16
|
"types": "./dist/types/index.d.ts",
|
17
17
|
"main": "./dist/js/node/index.js",
|
@@ -44,27 +44,27 @@
|
|
44
44
|
},
|
45
45
|
"dependencies": {
|
46
46
|
"@babel/runtime": "^7.18.0",
|
47
|
-
"@modern-js/utils": "
|
47
|
+
"@modern-js/utils": "2.0.0-beta.0",
|
48
48
|
"hoist-non-react-statics": "^3.3.2"
|
49
49
|
},
|
50
50
|
"devDependencies": {
|
51
|
-
"@modern-js/core": "
|
52
|
-
"@modern-js/runtime": "
|
53
|
-
"@
|
51
|
+
"@modern-js/core": "2.0.0-beta.0",
|
52
|
+
"@modern-js/runtime": "2.0.0-beta.0",
|
53
|
+
"@modern-js/types": "2.0.0-beta.0",
|
54
|
+
"@scripts/build": "2.0.0-beta.0",
|
54
55
|
"@types/jest": "^27",
|
55
56
|
"@types/node": "^14",
|
56
57
|
"@types/tailwindcss": "^2.2.1",
|
57
58
|
"typescript": "^4",
|
58
59
|
"tailwindcss": "^2.0.4",
|
59
60
|
"jest": "^27",
|
60
|
-
"react": "^
|
61
|
+
"react": "^18",
|
61
62
|
"postcss": "^8.4.14",
|
62
|
-
"@scripts/jest-config": "
|
63
|
-
"@types/hoist-non-react-statics": "^3.3.1"
|
63
|
+
"@scripts/jest-config": "2.0.0-beta.0"
|
64
64
|
},
|
65
65
|
"peerDependencies": {
|
66
66
|
"tailwindcss": "^2.0.4",
|
67
|
-
"@modern-js/runtime": "^
|
67
|
+
"@modern-js/runtime": "^2.0.0-beta.0"
|
68
68
|
},
|
69
69
|
"peerDependenciesMeta": {
|
70
70
|
"@modern-js/runtime": {
|
@@ -76,33 +76,10 @@
|
|
76
76
|
"registry": "https://registry.npmjs.org/",
|
77
77
|
"access": "public"
|
78
78
|
},
|
79
|
-
"wireit": {
|
80
|
-
"build": {
|
81
|
-
"command": "modern build",
|
82
|
-
"files": [
|
83
|
-
"src/**/*",
|
84
|
-
"tsconfig.json",
|
85
|
-
"package.json"
|
86
|
-
],
|
87
|
-
"output": [
|
88
|
-
"dist/**/*"
|
89
|
-
]
|
90
|
-
},
|
91
|
-
"test": {
|
92
|
-
"command": "jest --passWithNoTests",
|
93
|
-
"files": [
|
94
|
-
"src/**/*",
|
95
|
-
"tsconfig.json",
|
96
|
-
"package.json",
|
97
|
-
"tests/**/*"
|
98
|
-
],
|
99
|
-
"output": []
|
100
|
-
}
|
101
|
-
},
|
102
79
|
"scripts": {
|
103
80
|
"new": "modern new",
|
104
81
|
"dev": "modern build --watch",
|
105
|
-
"build": "
|
106
|
-
"test": "
|
82
|
+
"build": "modern build",
|
83
|
+
"test": "jest --passWithNoTests"
|
107
84
|
}
|
108
85
|
}
|