jhen0409 / react-chrome-extension-boilerplate

Boilerplate for Chrome Extension React.js project
MIT License
2.14k stars 388 forks source link

Problems on Windows #14

Closed apreg closed 8 years ago

apreg commented 8 years ago

To make build command run under Windows I had to modify package.json like this:

"build": "set BABEL_ENV=production & gulp build",

same for the other:

"test:app": "set BABEL_ENV=test & mocha --recursive --compilers js:babel-core/register test/app",
jhen0409 commented 8 years ago

Hey @apreg. I moved babel development config to webpack dev config, Indirectly solved this problem. :)

Also, I added AppVeyor build to Roadmap, we hoping to take into account Windows developers.

apreg commented 8 years ago

Thank you for your hard work.