rollup 2.53.3 → 2.56.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 +51 -0
- package/dist/bin/rollup +15 -8
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +183 -155
- package/dist/es/shared/watch.js +10 -6
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +7 -5
- package/dist/shared/loadConfigFile.js +8 -4
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +183 -155
- package/dist/shared/watch-cli.js +3 -3
- package/dist/shared/watch.js +5 -3
- package/package.json +1 -1
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.56.0
|
|
4
|
+
Thu, 05 Aug 2021 05:18:15 GMT - commit ffd5cad3339c8d42bff3e9ae7c6c8ef12fced50a
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -3974,6 +3974,8 @@ micromatch.braceExpand = (pattern, options) => {
|
|
|
3974
3974
|
|
|
3975
3975
|
var micromatch_1 = micromatch;
|
|
3976
3976
|
|
|
3977
|
+
var mm = micromatch_1;
|
|
3978
|
+
|
|
3977
3979
|
function ensureArray(thing) {
|
|
3978
3980
|
if (Array.isArray(thing))
|
|
3979
3981
|
return thing;
|
|
@@ -3994,7 +3996,7 @@ const createFilter = function createFilter(include, exclude, options) {
|
|
|
3994
3996
|
return id instanceof RegExp
|
|
3995
3997
|
? id
|
|
3996
3998
|
: {
|
|
3997
|
-
test:
|
|
3999
|
+
test: mm.matcher(getMatcherString(id, resolutionBase)
|
|
3998
4000
|
.split(sep)
|
|
3999
4001
|
.join('/'), { dot: true })
|
|
4000
4002
|
};
|
|
@@ -4185,7 +4187,7 @@ function mergeOutputOptions(config, overrides, warn) {
|
|
|
4185
4187
|
return outputOptions;
|
|
4186
4188
|
}
|
|
4187
4189
|
|
|
4188
|
-
var chokidar = {};
|
|
4190
|
+
var chokidar$1 = {};
|
|
4189
4191
|
|
|
4190
4192
|
const fs$3 = fs$4;
|
|
4191
4193
|
const { Readable } = require$$1;
|
|
@@ -7182,7 +7184,7 @@ _readdirp(root, opts) {
|
|
|
7182
7184
|
}
|
|
7183
7185
|
|
|
7184
7186
|
// Export FSWatcher class
|
|
7185
|
-
chokidar.FSWatcher = FSWatcher;
|
|
7187
|
+
chokidar$1.FSWatcher = FSWatcher;
|
|
7186
7188
|
|
|
7187
7189
|
/**
|
|
7188
7190
|
* Instantiates watcher with paths to be tracked.
|
|
@@ -7196,7 +7198,9 @@ const watch = (paths, options) => {
|
|
|
7196
7198
|
return watcher;
|
|
7197
7199
|
};
|
|
7198
7200
|
|
|
7199
|
-
chokidar.watch = watch;
|
|
7201
|
+
chokidar$1.watch = watch;
|
|
7202
|
+
|
|
7203
|
+
var chokidar = chokidar$1;
|
|
7200
7204
|
|
|
7201
7205
|
class FileWatcher {
|
|
7202
7206
|
constructor(task, chokidarOptions) {
|
package/dist/loadConfigFile.js
CHANGED