├── .babelrc ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── npm-publish.yml ├── .gitignore ├── README.md ├── package.json └── src ├── plugin.es5.js └── plugin.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-build/rollup-plugin-includepaths/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-build/rollup-plugin-includepaths/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-build/rollup-plugin-includepaths/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-build/rollup-plugin-includepaths/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-build/rollup-plugin-includepaths/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-build/rollup-plugin-includepaths/HEAD/package.json -------------------------------------------------------------------------------- /src/plugin.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-build/rollup-plugin-includepaths/HEAD/src/plugin.es5.js -------------------------------------------------------------------------------- /src/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dot-build/rollup-plugin-includepaths/HEAD/src/plugin.js --------------------------------------------------------------------------------