diff --git a/index.js b/index.js index 2032604..5ad9f1f 100644 --- a/index.js +++ b/index.js @@ -179,7 +179,6 @@ var NpmtsCompile; //tsStream.dts.pipe(plugins.gulp.dest(outputDir)), tsStream.js .pipe(plugins.g.sourcemaps.write()) // Now the sourcemaps are added to the .js file - .pipe(plugins.g.header('#!/usr/bin/env node\n\n')) .pipe(plugins.gulp.dest(outputDir)) ]); moduleStream.add(stream); diff --git a/test/assets/dist/index.js b/test/assets/dist/index.js index c065a23..bb265ec 100644 --- a/test/assets/dist/index.js +++ b/test/assets/dist/index.js @@ -1,5 +1,3 @@ -#!/usr/bin/env node - /// var testplugin = { logSomething: function () { diff --git a/test/assets/test/test.js b/test/assets/test/test.js index ac6a263..3cd2b33 100644 --- a/test/assets/test/test.js +++ b/test/assets/test/test.js @@ -1,5 +1,3 @@ -#!/usr/bin/env node - /// console.log("**** starting test ****"); var testplugin = require("../dist/index.js"); diff --git a/ts/npmts.compile.ts b/ts/npmts.compile.ts index d31cbc7..5f337e0 100644 --- a/ts/npmts.compile.ts +++ b/ts/npmts.compile.ts @@ -79,7 +79,7 @@ module NpmtsCompile { //tsStream.dts.pipe(plugins.gulp.dest(outputDir)), tsStream.js .pipe(plugins.g.sourcemaps.write()) // Now the sourcemaps are added to the .js file - .pipe(plugins.g.header('#!/usr/bin/env node\n\n')) + //.pipe(plugins.g.header('#!/usr/bin/env node\n\n')) .pipe(plugins.gulp.dest(outputDir)) ]); moduleStream.add(stream);