Browse Source

Merge branch 'master' into project-path-feat

pull/7/head
Roman Axelrod 3 years ago
parent
commit
b441ac613d
  1. 2
      server.js

2
server.js

@ -289,8 +289,8 @@ function buildScriptFiles(done) {
}) })
.pipe(gulp.src(path.join(projectPath, 'vendor/*.js'))) .pipe(gulp.src(path.join(projectPath, 'vendor/*.js')))
// .pipe(gulp.dest('src/')) // .pipe(gulp.dest('src/'))
.pipe(uglify())
.pipe(rename({extname: '.min.js'})) .pipe(rename({extname: '.min.js'}))
.pipe(uglify())
.pipe(sourcemaps.write('.')) .pipe(sourcemaps.write('.'))
.pipe(gulp.dest(path.posix.join(projectPath, 'src'))); .pipe(gulp.dest(path.posix.join(projectPath, 'src')));
} }

Loading…
Cancel
Save