Skip to content

Instantly share code, notes, and snippets.

@larrybotha
Last active January 27, 2016 13:43
Show Gist options
  • Save larrybotha/2f8b120ccaadab0384ee to your computer and use it in GitHub Desktop.
Save larrybotha/2f8b120ccaadab0384ee to your computer and use it in GitHub Desktop.
Multiple Bundles With Gulp and JSPM

Multiple Bundles With Gulp and JSPM

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'])
[
{...},
"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