@modern-js/plugin-tailwindcss 1.18.1 → 1.20.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 +20 -0
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
1
|
# @modern-js/plugin-tailwindcss
|
2
2
|
|
3
|
+
## 1.20.0
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [d5d570b]
|
8
|
+
- Updated dependencies [b57d5ff]
|
9
|
+
- Updated dependencies [4ddc185]
|
10
|
+
- Updated dependencies [715df7a]
|
11
|
+
- Updated dependencies [df8ee7e]
|
12
|
+
- Updated dependencies [8c05089]
|
13
|
+
- @modern-js/utils@1.20.0
|
14
|
+
- @modern-js/runtime@1.20.0
|
15
|
+
|
16
|
+
## 1.19.0
|
17
|
+
|
18
|
+
### Patch Changes
|
19
|
+
|
20
|
+
- @modern-js/runtime@1.19.0
|
21
|
+
- @modern-js/utils@1.19.0
|
22
|
+
|
3
23
|
## 1.18.1
|
4
24
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"modern",
|
12
12
|
"modern.js"
|
13
13
|
],
|
14
|
-
"version": "1.
|
14
|
+
"version": "1.20.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,13 +44,13 @@
|
|
44
44
|
},
|
45
45
|
"dependencies": {
|
46
46
|
"@babel/runtime": "^7.18.0",
|
47
|
-
"@modern-js/utils": "1.
|
47
|
+
"@modern-js/utils": "1.20.0",
|
48
48
|
"hoist-non-react-statics": "^3.3.2"
|
49
49
|
},
|
50
50
|
"devDependencies": {
|
51
|
-
"@modern-js/core": "1.
|
52
|
-
"@modern-js/runtime": "1.
|
53
|
-
"@scripts/build": "1.
|
51
|
+
"@modern-js/core": "1.20.0",
|
52
|
+
"@modern-js/runtime": "1.20.0",
|
53
|
+
"@scripts/build": "1.20.0",
|
54
54
|
"@types/jest": "^27",
|
55
55
|
"@types/node": "^14",
|
56
56
|
"@types/tailwindcss": "^2.2.1",
|
@@ -59,12 +59,12 @@
|
|
59
59
|
"jest": "^27",
|
60
60
|
"react": "^17.0.2",
|
61
61
|
"postcss": "^8.4.14",
|
62
|
-
"@scripts/jest-config": "1.
|
62
|
+
"@scripts/jest-config": "1.20.0",
|
63
63
|
"@types/hoist-non-react-statics": "^3.3.1"
|
64
64
|
},
|
65
65
|
"peerDependencies": {
|
66
66
|
"tailwindcss": "^2.0.4",
|
67
|
-
"@modern-js/runtime": "^1.
|
67
|
+
"@modern-js/runtime": "^1.20.0"
|
68
68
|
},
|
69
69
|
"peerDependenciesMeta": {
|
70
70
|
"@modern-js/runtime": {
|
@@ -104,6 +104,5 @@
|
|
104
104
|
"dev": "modern build --watch",
|
105
105
|
"build": "wireit",
|
106
106
|
"test": "wireit"
|
107
|
-
}
|
108
|
-
"readme": "\n<p align=\"center\">\n <a href=\"https://modernjs.dev\" target=\"blank\"><img src=\"https://lf3-static.bytednsdoc.com/obj/eden-cn/ylaelkeh7nuhfnuhf/modernjs-cover.png\" width=\"300\" alt=\"Modern.js Logo\" /></a>\n</p>\n<p align=\"center\">\n现代 Web 工程体系\n <br/>\n <a href=\"https://modernjs.dev\" target=\"blank\">\n modernjs.dev\n </a>\n</p>\n<p align=\"center\">\n The meta-framework suite designed from scratch for frontend-focused modern web development\n</p>\n\n# Introduction\n\n> The doc site ([modernjs.dev](https://modernjs.dev)) and articles are only available in Chinese for now, we are planning to add English versions soon.\n\n- [Modern.js: Hello, World!](https://zhuanlan.zhihu.com/p/426707646)\n\n## Getting Started\n\n- [Quick Start](https://modernjs.dev/docs/start)\n- [Guides](https://modernjs.dev/docs/guides)\n- [API References](https://modernjs.dev/docs/apis)\n\n## Contributing\n\n- [Contributing Guide](https://github.com/modern-js-dev/modern.js/blob/main/CONTRIBUTING.md)\n"
|
107
|
+
}
|
109
108
|
}
|