Skip to content
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

Updating uglify version and polyfill concat paths. #183

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

jensechu
Copy link

@jensechu jensechu commented Jun 8, 2016

Hallo!

I was trying to play around with this awesome project but ran into a few issues so I figured to do the neighborly thing and fork your repo!

When I was running npm install everything was peachy, but when running grunt I was getting this error: Warnings: Cannot assign to read only property 'subarray' .... After some researching I realized it was just because the grunt-contrib-uglify package wasn't updated.

I also noticed that in the concat grunt task that it is trying to concat:

  • inc/polyfill/Base64.js
  • inc/polyfill/base64binary.js

but concat fails silently and does not end up including these files because they truly live in inc/shim/ which was giving me an error when actually trying to use MIDI.js in the browser.

When I updated the paths to inc/shim/ everything was great! 😸

I hope this seems legit to you. 🙇

@jensechu jensechu changed the title 🎵 Updating uglify version and polyfill concat paths. Updating uglify version and polyfill concat paths. Jun 8, 2016
'inc/polyfill/Base64.js',
'inc/polyfill/base64binary.js'
'inc/shim/Base64.js',
'inc/shim/base64binary.js'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had to change this to

Suggested change
'inc/shim/base64binary.js'
'inc/shim/Base64binary.js'

(Mind the capitalization.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants