├── .all-contributorsrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── macro.js ├── package.json └── src ├── __tests__ ├── __snapshots__ │ └── index.js.snap └── index.js └── index.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/README.md -------------------------------------------------------------------------------- /macro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/macro.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/src/__tests__/__snapshots__/index.js.snap -------------------------------------------------------------------------------- /src/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/src/__tests__/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tannerlinsley/babel-plugin-source/HEAD/src/index.js --------------------------------------------------------------------------------