Skip to content

Commit 5fe760b

Browse files
lukastaegertdanielgindishellscape
authored
feat(commonjs)!: Add support for circular dependencies (#658)
* feat(commonjs): Basic support for circular dependencies * refactor(commonjs): Inline __esModule handling into export generation * feat(commonjs): Generate simpler code when replacing module.exports * feat(commonjs): Handle side-effect free modules with updated Rollup * feat(commonjs): Generate simplified code when module is not used * feat(commonjs): Do not use module when wrapping if not needed BREAKING CHANGES: now requires at least Rollup 2.38.0 * chore(commonjs): Clean up usage of helpers * feat(commonjs): Inline name export assignments * feat(commonjs): Do not wrap for nested module.exports assignments * feat(commonjs): Wrap if accessing exports while reassigning module.exports * chore(commonjs): Add test for module.exports mutations * feat(commonjs): Do not wrap for double exports assignments * fix(commonjs): Deconflict nested module.exports assignments * chore(commonjs): Simplify assignment tracking * feat(commonjs): Do not wrap for nested named export assignments * chore(commonjs): Clean up remaining TODOs * fix(commonjs): Make sure require expressions return snapshots * fix(commonjs): Snapshot default export * chore(commonjs): Unwrapped wrapper helper functions * chore: update dependencies * chore: change audit level to high amid unfixable moderate Co-authored-by: Daniel Cohen Gindi <[email protected]> Co-authored-by: shellscape <[email protected]>
1 parent 9d9b359 commit 5fe760b

File tree

127 files changed

+6302
-7354
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+6302
-7354
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"preinstall": "node scripts/disallow-npm.js",
1212
"pub": "node scripts/pub.js",
1313
"publish": "node scripts/publish.js",
14-
"security": "pnpm audit --audit-level=moderate"
14+
"security": "pnpm audit --audit-level=high"
1515
},
1616
"dependencies": {
1717
"conventional-commits-parser": "^3.1.0",

packages/commonjs/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ export default {
3434
input: 'src/index.js',
3535
output: {
3636
dir: 'output',
37-
format: 'cjs'
37+
format: 'cjs',
3838
},
39-
plugins: [commonjs()]
39+
plugins: [commonjs()],
4040
};
4141
```
4242

@@ -66,8 +66,8 @@ commonjs({
6666
'!node_modules/logform/index.js',
6767
'!node_modules/logform/format.js',
6868
'!node_modules/logform/levels.js',
69-
'!node_modules/logform/browser.js'
70-
]
69+
'!node_modules/logform/browser.js',
70+
],
7171
});
7272
```
7373

@@ -250,7 +250,7 @@ This is in line with how other bundlers handle this situation and is also the mo
250250

251251
var dep$1 = /*#__PURE__*/ Object.freeze({
252252
__proto__: null,
253-
default: dep
253+
default: dep,
254254
});
255255

256256
console.log(dep$1.default);
@@ -281,7 +281,7 @@ For these situations, you can change Rollup's behaviour either globally or per m
281281
enumerable: true,
282282
get: function () {
283283
return n[k];
284-
}
284+
},
285285
}
286286
);
287287
});
@@ -357,9 +357,9 @@ export default {
357357
output: {
358358
file: 'bundle.js',
359359
format: 'iife',
360-
name: 'MyModule'
360+
name: 'MyModule',
361361
},
362-
plugins: [resolve(), commonjs()]
362+
plugins: [resolve(), commonjs()],
363363
};
364364
```
365365

@@ -369,7 +369,7 @@ Symlinks are common in monorepos and are also created by the `npm link` command.
369369

370370
```js
371371
commonjs({
372-
include: /node_modules/
372+
include: /node_modules/,
373373
});
374374
```
375375

@@ -392,11 +392,11 @@ function cjsDetectionPlugin() {
392392
moduleParsed({
393393
id,
394394
meta: {
395-
commonjs: { isCommonJS }
396-
}
395+
commonjs: { isCommonJS },
396+
},
397397
}) {
398398
console.log(`File ${id} is CommonJS: ${isCommonJS}`);
399-
}
399+
},
400400
};
401401
}
402402
```

packages/commonjs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"require"
4747
],
4848
"peerDependencies": {
49-
"rollup": "^2.30.0"
49+
"rollup": "^2.38.3"
5050
},
5151
"dependencies": {
5252
"@rollup/pluginutils": "^3.1.0",
@@ -62,7 +62,7 @@
6262
"@rollup/plugin-node-resolve": "^8.4.0",
6363
"locate-character": "^2.0.5",
6464
"require-relative": "^0.8.7",
65-
"rollup": "^2.30.0",
65+
"rollup": "^2.39.0",
6666
"shx": "^0.3.2",
6767
"source-map": "^0.7.3",
6868
"source-map-support": "^0.5.19",

packages/commonjs/src/ast-utils.js

+1-13
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,14 @@ export function isDefineCompiledEsm(node) {
7070
}
7171

7272
function getDefinePropertyCallName(node, targetName) {
73-
const targetNames = targetName.split('.');
74-
7573
const {
7674
callee: { object, property }
7775
} = node;
7876
if (!object || object.type !== 'Identifier' || object.name !== 'Object') return;
7977
if (!property || property.type !== 'Identifier' || property.name !== 'defineProperty') return;
8078
if (node.arguments.length !== 3) return;
8179

80+
const targetNames = targetName.split('.');
8281
const [target, key, value] = node.arguments;
8382
if (targetNames.length === 1) {
8483
if (target.type !== 'Identifier' || target.name !== targetNames[0]) {
@@ -105,17 +104,6 @@ function getDefinePropertyCallName(node, targetName) {
105104
return { key: key.value, value: valueProperty.value };
106105
}
107106

108-
export function isLocallyShadowed(name, scope) {
109-
while (scope.parent) {
110-
if (scope.declarations[name]) {
111-
return true;
112-
}
113-
// eslint-disable-next-line no-param-reassign
114-
scope = scope.parent;
115-
}
116-
return false;
117-
}
118-
119107
export function isShorthandProperty(parent) {
120108
return parent && parent.type === 'Property' && parent.shorthand;
121109
}

packages/commonjs/src/dynamic-packages-manager.js

+5-22
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
import { existsSync, readFileSync } from 'fs';
22
import { join } from 'path';
33

4-
import {
5-
DYNAMIC_PACKAGES_ID,
6-
DYNAMIC_REGISTER_SUFFIX,
7-
HELPERS_ID,
8-
isWrappedId,
9-
unwrapId,
10-
wrapId
11-
} from './helpers';
4+
import { DYNAMIC_PACKAGES_ID, DYNAMIC_REGISTER_SUFFIX, HELPERS_ID, wrapId } from './helpers';
125
import { getVirtualPathForDynamicRequirePath, normalizePathSlashes } from './utils';
136

147
export function getPackageEntryPoint(dirPath) {
@@ -47,28 +40,18 @@ export function getDynamicPackagesEntryIntro(
4740
) {
4841
let dynamicImports = Array.from(
4942
dynamicRequireModuleSet,
50-
(dynamicId) => `require(${JSON.stringify(wrapModuleRegisterProxy(dynamicId))});`
43+
(dynamicId) => `require(${JSON.stringify(wrapId(dynamicId, DYNAMIC_REGISTER_SUFFIX))});`
5144
).join('\n');
5245

5346
if (dynamicRequireModuleDirPaths.length) {
54-
dynamicImports += `require(${JSON.stringify(wrapModuleRegisterProxy(DYNAMIC_PACKAGES_ID))});`;
47+
dynamicImports += `require(${JSON.stringify(
48+
wrapId(DYNAMIC_PACKAGES_ID, DYNAMIC_REGISTER_SUFFIX)
49+
)});`;
5550
}
5651

5752
return dynamicImports;
5853
}
5954

60-
export function wrapModuleRegisterProxy(id) {
61-
return wrapId(id, DYNAMIC_REGISTER_SUFFIX);
62-
}
63-
64-
export function unwrapModuleRegisterProxy(id) {
65-
return unwrapId(id, DYNAMIC_REGISTER_SUFFIX);
66-
}
67-
68-
export function isModuleRegisterProxy(id) {
69-
return isWrappedId(id, DYNAMIC_REGISTER_SUFFIX);
70-
}
71-
7255
export function isDynamicModuleImport(id, dynamicRequireModuleSet) {
7356
const normalizedPath = normalizePathSlashes(id);
7457
return dynamicRequireModuleSet.has(normalizedPath) && !normalizedPath.endsWith('.json');

0 commit comments

Comments
 (0)