-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Output file contains a temporary string #2
Comments
Thanks for the report. I noticed the issue; even with |
@vijinpaulraj In fact the |
Thanks, @tadayosi for coming back on this. The problem is, if I want to make a build for production, the renaming bit will be quite challenging - perhaps I need to write a script to rename the output file. |
@vijinpaulraj With "scripts": {
...
"postbuild": "mv public/js/output.xxxxxxxx.js public/js/output.js"
} or you can use |
Hi - I'm trying parcel-plugin-concat to build my project with multiple entry files and everything seems to be working fine. The only issue is, the output file generates a random/temporary string in the suffix. As I include output.js in the index.html file, I want this exactly to be output.js. Is this something that can be fixed in the plugin?
parcel build src/js/* -o output.js --out-dir public/js
The text was updated successfully, but these errors were encountered: