Created
June 11, 2015 14:36
-
-
Save scabbiaza/b75f4725c7c1bf7b5513 to your computer and use it in GitHub Desktop.
JS: missed module error cases
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*Compilation JS with gulp-browserify* | |
Case # 0. Any error in NOT included files | |
Result: no errors by compilation and running | |
Case # 1. Missed lib on the disk | |
app.js | |
``` | |
import Test from "./test"; // that module is not installed | |
``` | |
Result: error by compilation | |
Error in plugin 'gulp-browserify' module "./test" not found from ".../app.js" | |
Case # 2. Missed including lib in the running code | |
app.js | |
``` | |
let id = UUID.create(4).toString(); | |
``` | |
Result: error by running | |
Uncaught ReferenceError: UUID is not defined | |
Case # 3. Missed including lib in the NOT running code | |
app.js | |
``` | |
() => UUID.create(4).toString(); | |
``` | |
Result: no errors |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment