yeojz / metalsmith-react-templates

A metalsmith plugin to render files using React / Preact / JSX based templates.
MIT License
92 stars 17 forks source link

Git Ignoring Main Entry Point? #14

Closed EvanLovely closed 8 years ago

EvanLovely commented 8 years ago

In your package.json file, you have lib/index.js as your main entry and the lib/folder is in .gitignore – is that intentional?

yeojz commented 8 years ago

Yes. It's intentional.

lib is the build folder which will be built as a pre-publishing step. If you're developing on the repository, you should run npm run build to compile the code.

EvanLovely commented 8 years ago

OK, good to know! Cheers! :beers: