@rollup/plugin-commonjs 26.0.0 → 26.0.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/dist/cjs/index.js +2 -2
- package/dist/es/index.js +2 -2
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -11,7 +11,7 @@ var estreeWalker = require('estree-walker');
|
|
|
11
11
|
var MagicString = require('magic-string');
|
|
12
12
|
var isReference = require('is-reference');
|
|
13
13
|
|
|
14
|
-
var version = "26.0.
|
|
14
|
+
var version = "26.0.1";
|
|
15
15
|
var peerDependencies = {
|
|
16
16
|
rollup: "^2.68.0||^3.0.0||^4.0.0"
|
|
17
17
|
};
|
|
@@ -178,7 +178,7 @@ function getDynamicRequireModules(patterns, dynamicRequireRoot) {
|
|
|
178
178
|
isNegated
|
|
179
179
|
? dynamicRequireModules.delete(targetPath)
|
|
180
180
|
: dynamicRequireModules.set(targetPath, resolvedPath);
|
|
181
|
-
for (const path$1 of glob
|
|
181
|
+
for (const path$1 of glob.glob
|
|
182
182
|
.sync(isNegated ? pattern.substr(1) : pattern)
|
|
183
183
|
.sort((a, b) => a.localeCompare(b, 'en'))) {
|
|
184
184
|
const resolvedPath = path.resolve(path$1);
|
package/dist/es/index.js
CHANGED
|
@@ -2,12 +2,12 @@ import { basename, extname, dirname, relative, resolve, join, sep } from 'path';
|
|
|
2
2
|
import { makeLegalIdentifier, createFilter, attachScopes, extractAssignedNames } from '@rollup/pluginutils';
|
|
3
3
|
import { existsSync, readFileSync, statSync } from 'fs';
|
|
4
4
|
import getCommonDir from 'commondir';
|
|
5
|
-
import glob from 'glob';
|
|
5
|
+
import { glob } from 'glob';
|
|
6
6
|
import { walk } from 'estree-walker';
|
|
7
7
|
import MagicString from 'magic-string';
|
|
8
8
|
import isReference from 'is-reference';
|
|
9
9
|
|
|
10
|
-
var version = "26.0.
|
|
10
|
+
var version = "26.0.1";
|
|
11
11
|
var peerDependencies = {
|
|
12
12
|
rollup: "^2.68.0||^3.0.0||^4.0.0"
|
|
13
13
|
};
|