Skip to content

Commit

Permalink
Merge c23f604 into 4877390
Browse files Browse the repository at this point in the history
  • Loading branch information
afontaine committed Nov 24, 2017
2 parents 4877390 + c23f604 commit 5f32142
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions GulpFile.js
Expand Up @@ -124,8 +124,11 @@ gulp.task('bundle-app', ['compile-app'], function () {
.pipe(sourcemaps.init())
.pipe(concat(config.appBundleName))
.pipe(umd({
exports: function (file) {
return path.basename(file.path, path.extname(file.path));
exports: function () {
return 'AutoMapperJs';
},
namespace: function () {
return 'AutoMapperJs';
}
}))
.pipe(header(config.libraryHeaderTemplate, {
Expand Down

0 comments on commit 5f32142

Please sign in to comment.