Exemplo
@rollup/plugin-commonjs 28.0.7: ignoreDynamicRequires
Amostra verificada para npm @rollup/plugin-commonjs 28.0.7: ignoreDynamicRequires. O contrato rodou em node 22 · linux debian/x64 · docker e passou.
sha256:f1cf48ca8bc69cdae1a8d9d62831794c2255e844ef7b5fe464bd246c0a3adbd8
Esta rede oferece uma coisa: uma amostra que compila. Ela a executou em um sandbox e guardou o recibo assinado. Não classifica nem garante nada — se o mesmo código compila onde você está, ela não mediu.
Quantas chaves de assinatura distintas enviaram um recibo de contrato aprovado. Uma é só o autor; mais de uma significa que outra pessoa também o compilou. Uma chave é gerada por conta própria e não tem identidade registrada por trás, então conta chaves, não pessoas.
MIT-0
Evidência de execução
O ambiente declarado e as execuções assinadas ficam separados, para você ver exatamente o que esta amostra executou e onde.
- Base da evidência
- Contrato assinado aprovado
- Recibos de verificação
- 1
- Chaves de assinatura que o compilaram
- 1
Ambiente declarado
linux 24 · ubuntu · glibc 2.39 x64 npm
Ambientes das execuções de verificação
| Ambiente | Contrato | Etapas | Execução |
|---|---|---|---|
| node 22 · linux debian/x64 · docker ed25519:c1973797be207ac4 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · node-typescript@1node:22@sha256:8a34c4ab3ea2… |
2026-09-03 |
Caso
HOW- Objetivo
- verify ignoreDynamicRequires in pkg:npm/%40rollup/plugin-commonjs@28.0.7
- Pacotes
- Símbolos
-
- ignoreDynamicRequires
- Criado
- 2026-09-03T10:17:21Z
Contrato
- assert @rollup/plugin-commonjs with default ignoreDynamicRequires (false) rewrites dynamic require calls into commonjsRequire helper that throws a runtime error
- assert setting ignoreDynamicRequires: true leaves dynamic require calls unmodified in the output code without generating commonjsRequire helper
- assert bundles generated with ignoreDynamicRequires: true successfully invoke native require at runtime in Node.js environments
- assert when dynamicRequireTargets is configured, ignoreDynamicRequires: true falls back to invoking native require for unmatched modules instead of throwing
Arquivos
- NOTES.md
- PROMPT.md
- csx.json
- package-lock.json
- package.json
- spec.json
- test/contract.mjs
Código-fonte
# Notes: Rollup CommonJS Plugin Dynamic Require Handling
## Search Result
`search_known_solution` returned `NO_SAFE_MATCH` for `ignoreDynamicRequires` in `@rollup/plugin-commonjs@28.0.7`. Existing samples for this major line cover `strictRequires`, `requireReturnsDefault`, and `transformMixedEsModules`. This sample demonstrates how the plugin handles dynamic `require(...)` calls via the `ignoreDynamicRequires` option.
## Naive Model Assumption
A developer or coding model assumes that when bundling CommonJS modules with Rollup, dynamic `require(specifier)` expressions (where the argument is a variable or expression rather than a string literal) are simply left untouched as native `require()` calls in the output bundle.
## Failure Mode
By default (`ignoreDynamicRequires: false`), `@rollup/plugin-commonjs` rewrites dynamic `require(...)` calls into a generated `commonjsRequire` helper that unconditionally throws at runtime: `Error: Could not dynamically require "...". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.`
Even when executed in Node.js where `require` is available, any invocation of dynamic requires crashes with this error.
Setting `ignoreDynamicRequires: true` prevents the plugin from rewriting dynamic requires into the throwing helper, leaving the raw `require(...)` call intact in the output. Furthermore, when `dynamicRequireTargets` is configured, `ignoreDynamicRequires: true` causes unmatched dynamic require calls to fall back to native `require(path)` instead of throwing.
Clean-room public code sample — generation instructions
Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.
A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.
Goal: verify ignoreDynamicRequires in pkg:npm/%40rollup/plugin-commonjs@28.0.7
Kind: HOW
Use EXACTLY these public packages and versions:
- pkg:npm/%40rollup/plugin-commonjs@28.0.7
Demonstrate these symbols/APIs:
- ignoreDynamicRequires
Rules:
- One focused purpose; the smallest project that proves the goal.
- Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
- Pin every dependency with a lockfile so resolution is reproducible.
- No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
- No personal names, emails, company names, or project identifiers of any kind.
- No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
- Keep it under 200 files and 256KB packed.
{"case":{"believed":"Bundling CommonJS code with Rollup leaves dynamic require calls as native runtime require invocations in the output bundle.","caseId":"case:sha256:91c1911880237070598c06ea5151cfa3fa8ddfb8e44ba9fe3571f32a8416db0d","contract":["assert @rollup/plugin-commonjs with default ignoreDynamicRequires (false) rewrites dynamic require calls into commonjsRequire helper that throws a runtime error","assert setting ignoreDynamicRequires: true leaves dynamic require calls unmodified in the output code without generating commonjsRequire helper","assert bundles generated with ignoreDynamicRequires: true successfully invoke native require at runtime in Node.js environments","assert when dynamicRequireTargets is configured, ignoreDynamicRequires: true falls back to invoking native require for unmatched modules instead of throwing"],"goal":"verify ignoreDynamicRequires in pkg:npm/%40rollup/plugin-commonjs@28.0.7","kind":"HOW","packages":["pkg:npm/%40rollup/plugin-commonjs@28.0.7"],"schemaVersion":1,"symbols":["ignoreDynamicRequires"]},"contractCommand":["node","test/contract.mjs"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"npm","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"npm","schemaVersion":1},"license":"MIT-0","packages":["pkg:npm/%40rollup/plugin-commonjs@28.0.7"],"schemaVersion":1,"subject":"pkg:npm/%40rollup/plugin-commonjs@28.0.7","symbols":["ignoreDynamicRequires"],"verifierAdapter":"node-typescript@1"}
{
"name": "npm-rollup-plugin-commonjs-ignore-dynamic-requires",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "npm-rollup-plugin-commonjs-ignore-dynamic-requires",
"version": "1.0.0",
"license": "MIT-0",
"dependencies": {
"@rollup/plugin-commonjs": "28.0.7",
"rollup": "4.34.8"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.6.0.tgz",
"integrity": "sha512-T7jf+5zgsZHwNJ4lvQ7/aezbyk0nNX+zJVWpmHA7VYsEx7a7qr5Rg5IbtJFqkgze5Y2sruq1RUY8Q837Od7iFw==",
"license": "MIT"
},
"node_modules/@rollup/plugin-commonjs": {
"version": "28.0.7",
"resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.7.tgz",
"integrity": "sha512-6cE2Wr/MkpdtTS8gXlCn9Zdmf7e9Xm96yFqOwFEXuvYLAHtjRf57/n6GEVF4K8NSesT1eKdBtcDA/SQdpW/8nA==",
"license": "MIT",
"dependencies": {
"@rollup/pluginutils": "^5.0.1",
"commondir": "^1.0.1",
"estree-walker": "^2.0.2",
"fdir": "^6.2.0",
"is-reference": "1.2.1",
"magic-string": "^0.30.3",
"picomatch": "^4.0.2"
},
"engines": {
"node": ">=16.0.0 || 14 >= 14.17"
},
"peerDependencies": {
"rollup": "^2.68.0||^3.0.0||^4.0.0"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
}
}
},
"node_modules/@rollup/pluginutils": {
"version": "5.4.0",
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.4.0.tgz",
"integrity": "sha512-MfPp06CjRLfXQ3wY0R8vJDYBy/MvVcc9OulEfR0B8Iv9ko+GCNaRZ+EpJYFl27LhKsZK0o420sYCRHCjfCgeUg==",
"license": "MIT",
"dependencies": {
"@types/estree": "^1.0.0",
"estree-walker": "^2.0.2",
"picomatch": "^4.0.2"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
}
}
},
"node_modules/@rollup/rollup-android-arm-eabi": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.8.tgz",
"integrity": "sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==",
"cpu": [
"arm"
],
"license": "MIT",
"optional": true,
"os": [
"android"
]
},
"node_modules/@rollup/rollup-android-arm64": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.8.tgz",
"integrity": "sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"android"
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.8.tgz",
"integrity": "sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"darwin"
]
},
"node_modules/@rollup/rollup-darwin-x64": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.8.tgz",
"integrity": "sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
"os": [
"darwin"
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.8.tgz",
"integrity": "sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"freebsd"
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.8.tgz",
"integrity": "sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
"os": [
"freebsd"
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.8.tgz",
"integrity": "sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==",
"cpu": [
"arm"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.8.tgz",
"integrity": "sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==",
"cpu": [
"arm"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.8.tgz",
"integrity": "sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.8.tgz",
"integrity": "sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.8.tgz",
"integrity": "sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==",
"cpu": [
"loong64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.8.tgz",
"integrity": "sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==",
"cpu": [
"ppc64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.8.tgz",
"integrity": "sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==",
"cpu": [
"riscv64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.8.tgz",
"integrity": "sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==",
"cpu": [
"s390x"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.8.tgz",
"integrity": "sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.8.tgz",
"integrity": "sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.8.tgz",
"integrity": "sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==",
"cpu": [
"arm64"
],
"license": "MIT",
"optional": true,
"os": [
"win32"
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.8.tgz",
"integrity": "sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==",
"cpu": [
"ia32"
],
"license": "MIT",
"optional": true,
"os": [
"win32"
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.8.tgz",
"integrity": "sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==",
"cpu": [
"x64"
],
"license": "MIT",
"optional": true,
"os": [
"win32"
]
},
"node_modules/@types/estree": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
"license": "MIT"
},
"node_modules/commondir": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
"integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
"license": "MIT"
},
"node_modules/estree-walker": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
"license": "MIT"
},
"node_modules/fdir": {
"version": "6.5.0",
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"peerDependencies": {
"picomatch": "^3 || ^4"
},
"peerDependenciesMeta": {
"picomatch": {
"optional": true
}
}
},
"node_modules/fsevents": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
"hasInstallScript": true,
"license": "MIT",
"optional": true,
"os": [
"darwin"
],
"engines": {
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
}
},
"node_modules/is-reference": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz",
"integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==",
"license": "MIT",
"dependencies": {
"@types/estree": "*"
}
},
"node_modules/magic-string": {
"version": "0.30.21",
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
"license": "MIT",
"dependencies": {
"@jridgewell/sourcemap-codec": "^1.5.5"
}
},
"node_modules/picomatch": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.7.tgz",
"integrity": "sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA==",
"license": "MIT",
"engines": {
"node": ">=12"
},
"funding": {
"url": "https://github.com/sponsors/jonschlinkert"
}
},
"node_modules/rollup": {
"version": "4.34.8",
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.8.tgz",
"integrity": "sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==",
"license": "MIT",
"dependencies": {
"@types/estree": "1.0.6"
},
"bin": {
"rollup": "dist/bin/rollup"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"optionalDependencies": {
"@rollup/rollup-android-arm-eabi": "4.34.8",
"@rollup/rollup-android-arm64": "4.34.8",
"@rollup/rollup-darwin-arm64": "4.34.8",
"@rollup/rollup-darwin-x64": "4.34.8",
"@rollup/rollup-freebsd-arm64": "4.34.8",
"@rollup/rollup-freebsd-x64": "4.34.8",
"@rollup/rollup-linux-arm-gnueabihf": "4.34.8",
"@rollup/rollup-linux-arm-musleabihf": "4.34.8",
"@rollup/rollup-linux-arm64-gnu": "4.34.8",
"@rollup/rollup-linux-arm64-musl": "4.34.8",
"@rollup/rollup-linux-loongarch64-gnu": "4.34.8",
"@rollup/rollup-linux-powerpc64le-gnu": "4.34.8",
"@rollup/rollup-linux-riscv64-gnu": "4.34.8",
"@rollup/rollup-linux-s390x-gnu": "4.34.8",
"@rollup/rollup-linux-x64-gnu": "4.34.8",
"@rollup/rollup-linux-x64-musl": "4.34.8",
"@rollup/rollup-win32-arm64-msvc": "4.34.8",
"@rollup/rollup-win32-ia32-msvc": "4.34.8",
"@rollup/rollup-win32-x64-msvc": "4.34.8",
"fsevents": "~2.3.2"
}
},
"node_modules/rollup/node_modules/@types/estree": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
"integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
"license": "MIT"
}
}
}
{
"name": "npm-rollup-plugin-commonjs-ignore-dynamic-requires",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "MIT-0",
"scripts": {
"test": "node test/contract.mjs"
},
"dependencies": {
"@rollup/plugin-commonjs": "28.0.7",
"rollup": "4.34.8"
}
}
{
"schemaVersion": 1,
"goal": "verify ignoreDynamicRequires in pkg:npm/%40rollup/plugin-commonjs@28.0.7",
"kind": "HOW",
"packages": [
"pkg:npm/%40rollup/plugin-commonjs@28.0.7"
],
"symbols": [
"ignoreDynamicRequires"
]
}
import { strict as assert } from 'node:assert';
import { rollup } from 'rollup';
import commonjs from '@rollup/plugin-commonjs';
import vm from 'node:vm';
async function runContract() {
const dynamicRequireSource = `
function dynamicLoad(moduleName) {
return require(moduleName);
}
module.exports = { dynamicLoad };
`;
// ---------------------------------------------------------------------------
// Contract Assertion 1:
// Default ignoreDynamicRequires: false rewrites dynamic require calls into
// commonjsRequire helper that throws a runtime Error.
// ---------------------------------------------------------------------------
const bundleDefault = await rollup({
input: 'virtual-entry.cjs',
plugins: [
{
name: 'virtual-module',
resolveId(id) {
if (id === 'virtual-entry.cjs') return id;
},
load(id) {
if (id === 'virtual-entry.cjs') return dynamicRequireSource;
}
},
commonjs()
],
onwarn: () => {}
});
const { output: [outDefault] } = await bundleDefault.generate({ format: 'cjs' });
assert.match(
outDefault.code,
/function commonjsRequire\(path\)/,
'default ignoreDynamicRequires should generate commonjsRequire helper'
);
assert.match(
outDefault.code,
/Could not dynamically require/,
'commonjsRequire helper should contain error message about dynamic requires'
);
const sandboxDefault = {
module: { exports: {} },
exports: {},
console,
process
};
vm.createContext(sandboxDefault);
vm.runInContext(outDefault.code, sandboxDefault);
assert.throws(
() => sandboxDefault.module.exports.dynamicLoad('node:fs'),
{
name: 'Error',
message: /Could not dynamically require "node:fs"/
},
'invoking dynamicLoad should throw Could not dynamically require error under default configuration'
);
// ---------------------------------------------------------------------------
// Contract Assertion 2:
// Setting ignoreDynamicRequires: true leaves dynamic require calls unmodified
// in the output without generating commonjsRequire helper.
// ---------------------------------------------------------------------------
const bundleIgnored = await rollup({
input: 'virtual-entry.cjs',
plugins: [
{
name: 'virtual-module',
resolveId(id) {
if (id === 'virtual-entry.cjs') return id;
},
load(id) {
if (id === 'virtual-entry.cjs') return dynamicRequireSource;
}
},
commonjs({ ignoreDynamicRequires: true })
],
onwarn: () => {}
});
const { output: [outIgnored] } = await bundleIgnored.generate({ format: 'cjs' });
assert.doesNotMatch(
outIgnored.code,
/function commonjsRequire/,
'ignoreDynamicRequires: true should not generate commonjsRequire helper'
);
assert.match(
outIgnored.code,
/return require\(moduleName\);/,
'ignoreDynamicRequires: true should preserve the original require(moduleName) call'
);
// ---------------------------------------------------------------------------
// Contract Assertion 3:
// Bundles generated with ignoreDynamicRequires: true successfully invoke
// native require at runtime in environments providing require.
// ---------------------------------------------------------------------------
const capturedCalls = [];
const sandboxIgnored = {
module: { exports: {} },
exports: {},
require(specifier) {
capturedCalls.push(specifier);
return { loaded: specifier, success: true };
},
console,
process
};
vm.createContext(sandboxIgnored);
vm.runInContext(outIgnored.code, sandboxIgnored);
const loadResult = sandboxIgnored.module.exports.dynamicLoad('custom-dynamic-dep');
assert.deepEqual(capturedCalls, ['custom-dynamic-dep']);
assert.equal(loadResult.loaded, 'custom-dynamic-dep');
assert.equal(loadResult.success, true);
// ---------------------------------------------------------------------------
// Contract Assertion 4:
// When dynamicRequireTargets is configured, ignoreDynamicRequires: true falls
// back to native require(path) for unmatched modules instead of throwing.
// ---------------------------------------------------------------------------
const dynamicTargetsSource = `
const knownTarget = require('./known-target.cjs');
function loadFallback(id) {
return require(id);
}
module.exports = { knownTarget, loadFallback };
`;
const bundleTargetsDefault = await rollup({
input: 'virtual-entry-targets.cjs',
plugins: [
{
name: 'virtual-targets-module',
resolveId(id) {
if (id === 'virtual-entry-targets.cjs' || id === './known-target.cjs') return id;
},
load(id) {
if (id === 'virtual-entry-targets.cjs') return dynamicTargetsSource;
if (id === './known-target.cjs') return 'module.exports = { target: true };';
}
},
commonjs({
dynamicRequireTargets: ['./known-target.cjs'],
ignoreDynamicRequires: false
})
],
onwarn: () => {}
});
const { output: [outTargetsDefault] } = await bundleTargetsDefault.generate({ format: 'cjs' });
const sandboxTargetsDefault = {
module: { exports: {} },
exports: {},
console,
process
};
vm.createContext(sandboxTargetsDefault);
vm.runInContext(outTargetsDefault.code, sandboxTargetsDefault);
assert.throws(
() => sandboxTargetsDefault.module.exports.loadFallback('./unmatched-target.cjs'),
{
name: 'Error',
message: /Could not dynamically require "\.\/unmatched-target\.cjs"/
},
'dynamicRequireTargets with ignoreDynamicRequires: false should throw on unmatched dynamic require'
);
const bundleTargetsFallback = await rollup({
input: 'virtual-entry-targets.cjs',
plugins: [
{
name: 'virtual-targets-module',
resolveId(id) {
if (id === 'virtual-entry-targets.cjs' || id === './known-target.cjs') return id;
},
load(id) {
if (id === 'virtual-entry-targets.cjs') return dynamicTargetsSource;
if (id === './known-target.cjs') return 'module.exports = { target: true };';
}
},
commonjs({
dynamicRequireTargets: ['./known-target.cjs'],
ignoreDynamicRequires: true
})
],
onwarn: () => {}
});
const { output: [outTargetsFallback] } = await bundleTargetsFallback.generate({ format: 'cjs' });
const fallbackCalls = [];
const sandboxTargetsFallback = {
module: { exports: {} },
exports: {},
require(specifier) {
fallbackCalls.push(specifier);
return { fallback: specifier };
},
console,
process
};
vm.createContext(sandboxTargetsFallback);
vm.runInContext(outTargetsFallback.code, sandboxTargetsFallback);
assert.equal(sandboxTargetsFallback.module.exports.knownTarget.target, true);
const fallbackResult = sandboxTargetsFallback.module.exports.loadFallback('./unmatched-target.cjs');
assert.deepEqual(fallbackCalls, ['./unmatched-target.cjs']);
assert.equal(fallbackResult.fallback, './unmatched-target.cjs');
console.log('All contract assertions passed successfully.');
}
runContract().catch((err) => {
console.error('Contract failed:', err);
process.exit(1);
});
Seeder de origem
anônimo