@quilted/rollup 0.2.12 → 0.2.13
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 +6 -0
- package/package.json +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @quilted/rollup
|
|
2
2
|
|
|
3
|
+
## 0.2.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5a1a3343`](https://github.com/lemonmade/quilt/commit/5a1a33433e1a944bfbbc7562da5e6775585398d3) Thanks [@lemonmade](https://github.com/lemonmade)! - Add async rollup plugin to Vite builds
|
|
8
|
+
|
|
3
9
|
## 0.2.12
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"access": "public",
|
|
7
7
|
"@quilted/registry": "https://registry.npmjs.org"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.2.
|
|
9
|
+
"version": "0.2.13",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">=14.0.0"
|
|
12
12
|
},
|
|
@@ -52,6 +52,12 @@
|
|
|
52
52
|
"quilt:esnext": "./build/esnext/features/assets.esnext",
|
|
53
53
|
"import": "./build/esm/features/assets.mjs"
|
|
54
54
|
},
|
|
55
|
+
"./features/async": {
|
|
56
|
+
"types": "./build/typescript/features/async.d.ts",
|
|
57
|
+
"quilt:source": "./source/features/async.ts",
|
|
58
|
+
"quilt:esnext": "./build/esnext/features/async.esnext",
|
|
59
|
+
"import": "./build/esm/features/async.mjs"
|
|
60
|
+
},
|
|
55
61
|
"./features/env": {
|
|
56
62
|
"types": "./build/typescript/features/env.d.ts",
|
|
57
63
|
"quilt:source": "./source/features/env.ts",
|
|
@@ -101,6 +107,9 @@
|
|
|
101
107
|
"features/assets": [
|
|
102
108
|
"./build/typescript/features/assets.d.ts"
|
|
103
109
|
],
|
|
110
|
+
"features/async": [
|
|
111
|
+
"./build/typescript/features/async.d.ts"
|
|
112
|
+
],
|
|
104
113
|
"features/env": [
|
|
105
114
|
"./build/typescript/features/env.d.ts"
|
|
106
115
|
],
|