├── .babelrc ├── .editorconfig ├── .gitignore ├── .npmignore ├── README.md ├── package.json ├── src └── index.js └── test ├── fixtures └── basic │ ├── actual.js │ └── expected.js └── index.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/babel-plugin-hello-world/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/babel-plugin-hello-world/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /dist 3 | *.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /src 3 | *.log 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/babel-plugin-hello-world/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/babel-plugin-hello-world/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/babel-plugin-hello-world/HEAD/src/index.js -------------------------------------------------------------------------------- /test/fixtures/basic/actual.js: -------------------------------------------------------------------------------- 1 | hiThere(); 2 | -------------------------------------------------------------------------------- /test/fixtures/basic/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/babel-plugin-hello-world/HEAD/test/fixtures/basic/expected.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/babel-plugin-hello-world/HEAD/test/index.js --------------------------------------------------------------------------------