├── .github ├── FUNDING.yml └── workflows │ └── stale.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── eslint.config.mjs ├── package.json ├── source └── index.ts ├── test ├── _common.ts ├── builtins.test.ts ├── fixtures │ ├── 00_simple │ │ └── package.json │ ├── 01_monorepo │ │ ├── one │ │ │ └── package.json │ │ ├── package.json │ │ └── two │ │ │ └── package.json │ ├── 02_workspaces │ │ ├── lerna │ │ │ ├── lerna.json │ │ │ ├── one │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── two │ │ │ │ └── package.json │ │ ├── npm-and-yarn │ │ │ ├── one │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ └── two │ │ │ │ └── package.json │ │ ├── package.json │ │ └── pnpm │ │ │ ├── one │ │ │ └── package.json │ │ │ ├── package.json │ │ │ ├── pnpm-workspace.yaml │ │ │ └── two │ │ │ └── package.json │ ├── 04_dual │ │ └── package.json │ └── package.json ├── monorepo.test.ts ├── options.test.ts ├── specifier.test.ts ├── tsconfig.json └── workspaces.test.ts ├── tsconfig.build.json └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/package.json -------------------------------------------------------------------------------- /source/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/source/index.ts -------------------------------------------------------------------------------- /test/_common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/_common.ts -------------------------------------------------------------------------------- /test/builtins.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/builtins.test.ts -------------------------------------------------------------------------------- /test/fixtures/00_simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/00_simple/package.json -------------------------------------------------------------------------------- /test/fixtures/01_monorepo/one/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/01_monorepo/one/package.json -------------------------------------------------------------------------------- /test/fixtures/01_monorepo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/01_monorepo/package.json -------------------------------------------------------------------------------- /test/fixtures/01_monorepo/two/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/01_monorepo/two/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/lerna/lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/lerna/lerna.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/lerna/one/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/lerna/one/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/lerna/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/lerna/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/lerna/two/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/lerna/two/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/npm-and-yarn/one/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/npm-and-yarn/one/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/npm-and-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/npm-and-yarn/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/npm-and-yarn/two/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/npm-and-yarn/two/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/pnpm/one/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/pnpm/one/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/pnpm/package.json -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/pnpm/pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | - one 2 | - two 3 | -------------------------------------------------------------------------------- /test/fixtures/02_workspaces/pnpm/two/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/02_workspaces/pnpm/two/package.json -------------------------------------------------------------------------------- /test/fixtures/04_dual/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/04_dual/package.json -------------------------------------------------------------------------------- /test/fixtures/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/fixtures/package.json -------------------------------------------------------------------------------- /test/monorepo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/monorepo.test.ts -------------------------------------------------------------------------------- /test/options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/options.test.ts -------------------------------------------------------------------------------- /test/specifier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/specifier.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/workspaces.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/test/workspaces.test.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Septh/rollup-plugin-node-externals/HEAD/tsconfig.json --------------------------------------------------------------------------------