├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json ├── src └── gatsby-node.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongkuen/gatsby-plugin-root-import/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongkuen/gatsby-plugin-root-import/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongkuen/gatsby-plugin-root-import/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongkuen/gatsby-plugin-root-import/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // noop 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongkuen/gatsby-plugin-root-import/HEAD/package.json -------------------------------------------------------------------------------- /src/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongkuen/gatsby-plugin-root-import/HEAD/src/gatsby-node.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mongkuen/gatsby-plugin-root-import/HEAD/yarn.lock --------------------------------------------------------------------------------