rollup-plugin-concurrent-top-level-await 0.3.0 → 0.3.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 +3 -0
- package/package.json +13 -2
package/README.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
> [!Warning]
|
|
2
|
+
> This plugin uses Rollup-specific APIs and is therefore not compatible with Rolldown or Vite >= 8. For more information, see [this issue](https://github.com/zOadT/concurrent-top-level-await-plugins/issues/35).
|
|
3
|
+
|
|
1
4
|
# rollup-plugin-concurrent-top-level-await
|
|
2
5
|
|
|
3
6
|
Rollup (and therefore also Vite) will change the behavior of modules containing top level await (TLA):
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rollup-plugin-concurrent-top-level-await",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Rollup (and Vite) plugin enabling concurrent execution of modules that contain top level await.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rollup-plugin",
|
|
@@ -33,11 +33,22 @@
|
|
|
33
33
|
},
|
|
34
34
|
"homepage": "https://github.com/zOadT/concurrent-top-level-await-plugins/tree/main/packages/rollup-plugin#readme",
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"rollup": "^4.0.0"
|
|
36
|
+
"rollup": "^4.0.0",
|
|
37
|
+
"vite": ">=5.0.0 <8.0.0"
|
|
37
38
|
},
|
|
38
39
|
"peerDependenciesMeta": {
|
|
39
40
|
"rollup": {
|
|
40
41
|
"optional": true
|
|
42
|
+
},
|
|
43
|
+
"vite": {
|
|
44
|
+
"optional": true
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"compatiblePackages": {
|
|
48
|
+
"schemaVersion": 1,
|
|
49
|
+
"rolldown": {
|
|
50
|
+
"type": "incompatible",
|
|
51
|
+
"reason": "Uses Rollup-specific APIs"
|
|
41
52
|
}
|
|
42
53
|
},
|
|
43
54
|
"dependencies": {
|