@vamship/build-utils 2.0.0-2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vamship/build-utils",
3
- "version": "2.0.0-2",
3
+ "version": "2.0.0",
4
4
  "description": "Utility library for build tooling",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -53,7 +53,9 @@ export class PackageNpmTaskBuilder extends TaskBuilder {
53
53
  });
54
54
 
55
55
  const copyTask = () =>
56
- _gulp.src(srcPath).pipe(_gulp.dest(distDir.absolutePath));
56
+ _gulp
57
+ .src(srcPath, { encoding: false })
58
+ .pipe(_gulp.dest(distDir.absolutePath));
57
59
  const deleteTask = () => _delete([srcPath]);
58
60
 
59
61
  const task = _gulp.series([packTask, copyTask, deleteTask]);