gulp-append-prepend
Advanced tools
Comparing version
26
index.js
@@ -7,7 +7,9 @@ const through = require('through2'); | ||
function filesGetContents(filepaths){ | ||
if (!(filepaths instanceof Array)) { | ||
filepaths = [filepaths]; | ||
} | ||
function arrayify(obj) { | ||
return Array.isArray(obj) ? obj : [obj]; | ||
} | ||
function filesGetContents(filepaths) { | ||
filepaths = arrayify(filepaths); | ||
const filesContents = []; | ||
@@ -21,9 +23,7 @@ for (var i = 0; i < filepaths.length; i++) { | ||
function insert(texts, separator, type) { | ||
if(!texts){ | ||
if (!texts) { | ||
throw new PluginError(PLUGIN_NAME, 'Missing text or path !'); | ||
} | ||
if (!(texts instanceof Array)) { | ||
texts = [texts]; | ||
} | ||
texts = arrayify(texts); | ||
@@ -47,3 +47,3 @@ if (type !== "append" && type !== "prepend") { | ||
const stream = through.obj(function(file, enc, cb) { | ||
const stream = through.obj(function (file, enc, cb) { | ||
if (file.isStream()) { | ||
@@ -76,16 +76,16 @@ this.emit('error', new PluginError(PLUGIN_NAME, 'Streams are not supported !')); | ||
module.exports.appendFile = function(filepath, separator) { | ||
module.exports.appendFile = function (filepath, separator) { | ||
return insert(filesGetContents(filepath), separator, "append"); | ||
}; | ||
module.exports.prependFile = function(filepath, separator) { | ||
module.exports.prependFile = function (filepath, separator) { | ||
return insert(filesGetContents(filepath), separator, "prepend"); | ||
}; | ||
module.exports.appendText = function(text, separator) { | ||
module.exports.appendText = function (text, separator) { | ||
return insert(text, separator, "append"); | ||
}; | ||
module.exports.prependText = function(text, separator) { | ||
module.exports.prependText = function (text, separator) { | ||
return insert(text, separator, "prepend"); | ||
}; |
{ | ||
"name": "gulp-append-prepend", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "Simple Gulp plugin to append/prepend.", | ||
"types": "./index.d.ts", | ||
"main": "index.js", | ||
@@ -6,0 +7,0 @@ "keywords": [ |
11586
4.4%10
11.11%187
8.72%