Created
January 21, 2015 20:46
-
-
Save seagoj/995edc63f296db93d5b9 to your computer and use it in GitHub Desktop.
browserify-shim
This file contains hidden or 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
| "use strict" | |
| var $ = require('jquery'); | |
| require('fixedheadertable'); | |
| // ... |
This file contains hidden or 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
| { | |
| "browserify": { | |
| "transform": ["browserify-shim"] | |
| }, | |
| "browser": { | |
| "fixedheadertable": "./js/jquery.fixedheadertable.js" | |
| }, | |
| "browserify-shim": { | |
| "fixedheadertable": {"depends": "jquery:$"} | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment