├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── CD.yml │ └── CI.yml ├── .gitignore ├── .npmignore ├── .swcrc ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src └── plugin.ts ├── test ├── fixtures │ ├── input1.js │ └── input2.js └── plugin.test.js ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/.github/workflows/CD.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | ./dist 4 | package-lock.json 5 | coverage 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test-src 3 | -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/.swcrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/package.json -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /test/fixtures/input1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/test/fixtures/input1.js -------------------------------------------------------------------------------- /test/fixtures/input2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/test/fixtures/input2.js -------------------------------------------------------------------------------- /test/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/test/plugin.test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredosalzillo/rollup-plugin-multi-input/HEAD/yarn.lock --------------------------------------------------------------------------------