prebundle 1.3.0-beta.0 → 1.3.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/README.md +11 -0
- package/compiled/fast-glob/index.js +361 -289
- package/compiled/fast-glob/package.json +1 -1
- package/compiled/fs-extra/index.js +185 -174
- package/compiled/fs-extra/license +1 -1
- package/compiled/fs-extra/package.json +1 -1
- package/compiled/rslog/index.js +9 -9
- package/compiled/rslog/package.json +1 -1
- package/dist/index.js +4891 -76
- package/dist/index.js.LICENSE.txt +38 -0
- package/dist/types.d.ts +3 -0
- package/package.json +23 -20
package/README.md
CHANGED
|
@@ -186,6 +186,17 @@ export default {
|
|
|
186
186
|
};
|
|
187
187
|
```
|
|
188
188
|
|
|
189
|
+
### copyDts
|
|
190
|
+
|
|
191
|
+
Copy all type definitions files rather than bundle them via `rollup-plugin-dts`.
|
|
192
|
+
|
|
193
|
+
```ts
|
|
194
|
+
// prebundle.config.mjs
|
|
195
|
+
export default {
|
|
196
|
+
dependencies: [{ name: 'foo', copyDts: true }],
|
|
197
|
+
};
|
|
198
|
+
```
|
|
199
|
+
|
|
189
200
|
### target
|
|
190
201
|
|
|
191
202
|
Target ECMAScript version, default `es2021`.
|