We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when running npm start the build folder is the root folder
npm start
when running npm build the build folder has child target folders which are builds for their target.
npm build
we talked about this before but I didn't quite understand the difference between build and dist. what do you think about having something like
build
dist
/build /dev /prod /chrome /firefox
I would also be okay with
/build_dev /build_prod
The text was updated successfully, but these errors were encountered:
this also messes with the automated tests test:chrome since it's looking for a build target at a different level (assumes /build not /build/chrome
test:chrome
/build
/build/chrome
Sorry, something went wrong.
few ways of solving this. I think a reasonable quick fix is passing a build target as a cli option
yarn build --build_dir build --target chrome (by default chrome and ff are built) yarn start --build_dir dev
Couldn't we just do build for dev, and dist for a prod?
/build /dist /chrome /firefox
This seems like the simplest option
Why is naming the folder dist simpler? I think it's more confusing actually.
No branches or pull requests
when running
npm start
the build folder is the root folderwhen running
npm build
the build folder has child target folders which are builds for their target.we talked about this before but I didn't quite understand the difference between
build
anddist
. what do you think about having something likeI would also be okay with
The text was updated successfully, but these errors were encountered: