Skip to content

Commit 04cf291

Browse files
committed
fix(build): add missing semi-colon.
1 parent 275e604 commit 04cf291

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulp/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function buildJs () {
5454
.pipe(concat('angular-material.js'))
5555
.pipe(BUILD_MODE.transform())
5656
.pipe(insert.prepend(config.banner))
57-
.pipe(insert.append('window.ngMaterial={version:{full: "' + VERSION +'"}}'))
57+
.pipe(insert.append('window.ngMaterial={version:{full: "' + VERSION +'"}};'))
5858
.pipe(gulp.dest(config.outputDir))
5959
.pipe(gulpif(!IS_DEV, uglify({ preserveComments: 'some' })))
6060
.pipe(rename({ extname: '.min.js' }))

0 commit comments

Comments
 (0)