Last active
January 27, 2016 13:43
-
-
Save larrybotha/2f8b120ccaadab0384ee to your computer and use it in GitHub Desktop.
Multiple Bundles With Gulp and JSPM
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
gulp = require "gulp" | |
exec = require "gulp-exec" | |
bundleScripts = (filenames) -> | |
filenames.map (filename) -> | |
gulp.src('') | |
.pipe exec( | |
"jspm bundle-sfx path/to/#{filename}.js path/to/#{filename}.bundle.js", | |
{ continueOnError: true } | |
) | |
.pipe exec.reporter({ | |
err: true, | |
stderr: true, | |
stdout: true | |
}) | |
gulp.task 'scripts', () -> | |
bundleScripts(['main']) | |
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
[ | |
{...}, | |
"devDependencies": { | |
"gulp": "~3.9.0", | |
"jspm": "^0.16.23" | |
}, | |
{...} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment