-
Notifications
You must be signed in to change notification settings - Fork 6
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
Refering to uglifyjs
in build.py
#17
Comments
I'm afraid that building does not work currently, does it? There are multiple |
Simply concatenating JavaScript files that contain ES6 module imports, which results multiple We might need to use |
I've integrated Also, I've submitted the code for review. |
Thanks man. I do need to go through and fix a few things, including this. Right now there are two reasons I'm not as active managing this - and it won't be too terribly long until I'm back.
If either of those changes, I'll come back quick to get some things done. |
no problem. hope you are selling it at a great price. xD |
When I try to do
npm run build
, it fails to finduglifyjs
. The error message is attached below:I found explanation that, when use
uglifyjs
command inpackage.json
'sscripts
section, it'll automatically search./node_modules/.bin/
for the executables. However, when we use python filebuild.py
and referuglifyjs
in it, there's no mechanism to include the./node_modules/.bin/
. I guess you didn't see this problem is because you globally installeduglifyjs
, and that was used in yournpm run build
.And the extension
.cmd
is also needed for windows, so i think we should add some code for people who are building this on Windows.I'll do a quick PR to fix this. I am familiar with Python. :)
The text was updated successfully, but these errors were encountered: