MCPcopy Create free account
hub / github.com/amorey/loadjs / buildUmdJs

Function buildUmdJs

gulpfile.js:83–95  ·  view source on GitHub ↗
(dirname)

Source from the content-addressed store, hash-verified

81}
82
83function buildUmdJs(dirname) {
84 return makeTask('build-umd-js: ' + dirname, function() {
85 return gulp.src('src/loadjs.js')
86 .pipe(umd({
87 namespace: umdNamespace,
88 template: 'umd-templates/UMD.js'
89 }))
90 .pipe(jshint())
91 .pipe(jshint.reporter('default'))
92 .pipe(rename('loadjs.umd.js'))
93 .pipe(gulp.dest(dirname));
94 });
95}

Callers 1

gulpfile.jsFile · 0.85

Calls 1

makeTaskFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…