Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add resolved sources to shouldTransformCachedModule #4414

Merged
merged 6 commits into from Feb 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/05-plugin-development.md
Expand Up @@ -266,7 +266,7 @@ In watch mode or when using the cache explicitly, the resolved imports of a cach

#### `shouldTransformCachedModule`

**Type:** `({id: string, code: string, ast: ESTree.Program, meta: {[plugin: string]: any}, moduleSideEffects: boolean | "no-treeshake", syntheticNamedExports: string | boolean}) => boolean`<br> **Kind:** `async, first`<br> **Previous Hook:** [`load`](guide/en/#load) where the cached file was loaded to compare its code with the cached version.<br> **Next Hook:** [`moduleParsed`](guide/en/#moduleparsed) if no plugin returns `true`, otherwise [`transform`](guide/en/#transform).
**Type:** `({id: string, code: string, ast: ESTree.Program, resoledSources: {[source: string]: ResolvedId}, meta: {[plugin: string]: any}, moduleSideEffects: boolean | "no-treeshake", syntheticNamedExports: string | boolean}) => boolean`<br> **Kind:** `async, first`<br> **Previous Hook:** [`load`](guide/en/#load) where the cached file was loaded to compare its code with the cached version.<br> **Next Hook:** [`moduleParsed`](guide/en/#moduleparsed) if no plugin returns `true`, otherwise [`transform`](guide/en/#transform).

If the Rollup cache is used (e.g. in watch mode or explicitly via the JavaScript API), Rollup will skip the [`transform`](guide/en/#transform) hook of a module if after the [`load`](guide/en/#transform) hook, the loaded `code` is identical to the code of the cached copy. To prevent this, discard the cached copy and instead transform a module, plugins can implement this hook and return `true`.

Expand Down
5 changes: 5 additions & 0 deletions src/Module.ts
Expand Up @@ -279,6 +279,8 @@ export default class Module {
.filter(Boolean) as ResolvedId[];
},
get dynamicallyImportedIds() {
// We cannot use this.dynamicDependencies because this is needed before
// dynamicDependencies are populated
const dynamicallyImportedIds: string[] = [];
for (const { id } of dynamicImports) {
if (id) {
Expand Down Expand Up @@ -316,6 +318,8 @@ export default class Module {
return Array.from(sources, source => module.resolvedIds[source]).filter(Boolean);
},
get importedIds() {
// We cannot use this.dependencies because this is needed before
// dependencies are populated
return Array.from(sources, source => module.resolvedIds[source]?.id).filter(Boolean);
},
get importers() {
Expand Down Expand Up @@ -703,6 +707,7 @@ export default class Module {
transformFiles,
...moduleOptions
}: TransformModuleJSON & {
resolvedIds?: ResolvedIdMap;
transformFiles?: EmittedFile[] | undefined;
}): void {
this.info.code = code;
Expand Down
1 change: 1 addition & 0 deletions src/ModuleLoader.ts
Expand Up @@ -283,6 +283,7 @@ export class ModuleLoader {
id: cachedModule.id,
meta: cachedModule.meta,
moduleSideEffects: cachedModule.moduleSideEffects,
resolvedSources: cachedModule.resolvedIds,
syntheticNamedExports: cachedModule.syntheticNamedExports
}
]))
Expand Down
3 changes: 2 additions & 1 deletion src/rollup/types.d.ts
Expand Up @@ -108,7 +108,6 @@ export interface TransformModuleJSON {
customTransformCache: boolean;
originalCode: string;
originalSourcemap: ExistingDecodedSourceMap | null;
resolvedIds?: ResolvedIdMap;
sourcemapChain: DecodedSourceMapOrMissing[];
transformDependencies: string[];
}
Expand All @@ -117,6 +116,7 @@ export interface ModuleJSON extends TransformModuleJSON, ModuleOptions {
ast: AcornNode;
dependencies: string[];
id: string;
resolvedIds: ResolvedIdMap;
transformFiles: EmittedFile[] | undefined;
}

Expand Down Expand Up @@ -254,6 +254,7 @@ export type ShouldTransformCachedModuleHook = (
id: string;
meta: CustomPluginOptions;
moduleSideEffects: boolean | 'no-treeshake';
resolvedSources: ResolvedIdMap;
syntheticNamedExports: boolean | string;
}
) => Promise<boolean> | boolean;
Expand Down
44 changes: 44 additions & 0 deletions test/function/samples/plugin-error-should-transform/_config.js
@@ -0,0 +1,44 @@
const path = require('path');
const acorn = require('acorn');

const code = 'export default 42;\n';
const ID_MAIN = path.join(__dirname, 'main.js');

module.exports = {
description: 'errors in shouldTransformCachedModule abort the build',
options: {
cache: {
modules: [
{
id: ID_MAIN,
ast: acorn.parse(code, {
ecmaVersion: 6,
sourceType: 'module'
}),
code,
dependencies: [],
dynamicDependencies: [],
originalCode: code,
resolvedIds: {},
sourcemapChain: [],
transformDependencies: []
}
]
},
plugins: [
{
name: 'test',
shouldTransformCachedModule() {
throw new Error('broken');
}
}
]
},
error: {
code: 'PLUGIN_ERROR',
hook: 'shouldTransformCachedModule',
message: 'broken',
plugin: 'test',
watchFiles: [ID_MAIN]
}
};
@@ -0,0 +1 @@
export default 42;
51 changes: 45 additions & 6 deletions test/incremental/index.js
Expand Up @@ -338,10 +338,15 @@ describe('incremental', () => {
});

it('runs shouldTransformCachedModule when using a cached module', async () => {
modules = {
entry: `import foo from 'foo'; export default foo;`,
foo: `export default import('bar')`,
bar: `export default 42`
};
let shouldTransformCachedModuleCalls = 0;

const transformPlugin = {
async shouldTransformCachedModule({ ast, id, meta, ...other }) {
async shouldTransformCachedModule({ ast, id, meta, resolvedSources, ...other }) {
shouldTransformCachedModuleCalls++;
assert.strictEqual(ast.type, 'Program');
assert.deepStrictEqual(other, {
Expand All @@ -352,10 +357,34 @@ describe('incremental', () => {
switch (id) {
case 'foo':
assert.deepStrictEqual(meta, { transform: { calls: 1, id } });
assert.deepStrictEqual(resolvedSources, {
__proto__: null,
bar: {
external: false,
id: 'bar',
meta: {},
moduleSideEffects: true,
syntheticNamedExports: false
}
});
// we return promises to ensure they are awaited
return Promise.resolve(false);
case 'bar':
assert.deepStrictEqual(meta, { transform: { calls: 2, id } });
assert.deepStrictEqual(resolvedSources, { __proto__: null });
return Promise.resolve(false);
case 'entry':
assert.deepStrictEqual(meta, { transform: { calls: 0, id } });
assert.deepStrictEqual(resolvedSources, {
__proto__: null,
foo: {
external: false,
id: 'foo',
meta: {},
moduleSideEffects: true,
syntheticNamedExports: false
}
});
return Promise.resolve(true);
default:
throw new Error(`Unexpected id ${id}.`);
Expand All @@ -369,8 +398,12 @@ describe('incremental', () => {
input: 'entry',
plugins: [transformPlugin, plugin]
});
assert.strictEqual(shouldTransformCachedModuleCalls, 0);
assert.strictEqual(transformCalls, 2);
assert.strictEqual(
shouldTransformCachedModuleCalls,
0,
'initial shouldTransformCachedModule calls'
);
assert.strictEqual(transformCalls, 3, 'initial transform calls');

const {
cache: { modules: cachedModules }
Expand All @@ -379,11 +412,17 @@ describe('incremental', () => {
plugins: [transformPlugin, plugin],
cache
});
assert.strictEqual(shouldTransformCachedModuleCalls, 2);
assert.strictEqual(transformCalls, 3);
assert.strictEqual(
shouldTransformCachedModuleCalls,
3,
'final shouldTransformCachedModule calls'
);
assert.strictEqual(transformCalls, 4, 'final transform calls');
assert.strictEqual(cachedModules[0].id, 'foo');
assert.deepStrictEqual(cachedModules[0].meta, { transform: { calls: 1, id: 'foo' } });
assert.strictEqual(cachedModules[1].id, 'entry');
assert.deepStrictEqual(cachedModules[1].meta, { transform: { calls: 2, id: 'entry' } });
assert.deepStrictEqual(cachedModules[1].meta, { transform: { calls: 3, id: 'entry' } });
assert.strictEqual(cachedModules[2].id, 'bar');
assert.deepStrictEqual(cachedModules[2].meta, { transform: { calls: 2, id: 'bar' } });
});
});