mirror of
https://github.com/NarrativeScience-old/log.io.git
synced 2026-04-26 09:35:53 +03:00
[GH-ISSUE #112] Build - browserify fails, does not understand coffeescript #89
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/log.io-NarrativeScience-old#89
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @romanr on GitHub (Feb 17, 2014).
Original GitHub issue: https://github.com/NarrativeScience-old/log.io/issues/112
Anyone is able to build it? Tried on different systems, always fails with same error:
It looks like browserify does not understand coffeescript? Is there something that needs to be installed to make it work?
@romanr commented on GitHub (Feb 17, 2014):
One solution is to add
-t coffeifyto Cakefile:But that produces even stranger error:
@msmathers commented on GitHub (Aug 1, 2014):
It looks like you're running the cake task with a newer version of browserify which isn't supported by log.io. If you invoke it via npm's
installorrun-script, everything should work fine:Otherwise, you'll have to downgrade your system's version of browserify to 1.16.6.
That specific "module not found" error you're getting is a known issue in other forks of Log.io that is still being addressed.
@jonnor commented on GitHub (Feb 15, 2015):
@msmathers I seem to be running into the same issue. On recent browserify specifying
-t coffeeify --extension=".coffee"gives the parsing error. Specifying only-t coffeeifygives the loading errorHowever browserify 1.16.6 is lacking some wrappers needed by my code so that is unusable too... Any other know workarounds or fixes?
@nelsonomuto commented on GitHub (Sep 2, 2015):
I ran into this issue as well, however running the cake build via npm run-script prepublish resolved it for me.