Compare commits

..

2 Commits

Author SHA1 Message Date
e0c4a10411 0.0.9 2015-11-24 13:51:07 +01:00
6deab0541f update deps 2015-11-24 13:49:02 +01:00
5 changed files with 8 additions and 6 deletions

View File

@ -1,7 +1,7 @@
/// <reference path="typings/tsd.d.ts" /> /// <reference path="typings/tsd.d.ts" />
var through = require("through2"); var through = require("through2");
var path = require("path"); var path = require("path");
var beautylog = require("beautylog"); var beautylog = require("beautylog")("os");
//important vars //important vars
var gulpCallFunction = { var gulpCallFunction = {
executionMode: 'forEach', executionMode: 'forEach',

View File

@ -1,6 +1,6 @@
{ {
"name": "gulp-callfunction", "name": "gulp-callfunction",
"version": "0.0.8", "version": "0.0.9",
"description": "accepts a function call as parameter to execute in gulp pipeline", "description": "accepts a function call as parameter to execute in gulp pipeline",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
@ -29,7 +29,7 @@
"gulp-typescript": "^2.9.2" "gulp-typescript": "^2.9.2"
}, },
"dependencies": { "dependencies": {
"beautylog": "0.0.15", "beautylog": "1.0.4",
"through2": "^2.0.0" "through2": "^2.0.0"
} }
} }

View File

@ -1,8 +1,9 @@
/// <reference path="typings/tsd.d.ts" /> /// <reference path="typings/tsd.d.ts" />
var gulp = require("gulp"); var gulp = require("gulp");
var gulpCallFunction = require("./index.js"); var gulpCallFunction = require("./index.js");
var beautylog = require("beautylog")("os");
var myFunction = function () { var myFunction = function () {
console.log("Hello World!"); beautylog.log("Hello World!");
}; };
gulp.task('default', function () { gulp.task('default', function () {
gulp.src('./test/test.md') gulp.src('./test/test.md')

View File

@ -1,7 +1,7 @@
/// <reference path="typings/tsd.d.ts" /> /// <reference path="typings/tsd.d.ts" />
var through = require("through2"); var through = require("through2");
var path = require("path"); var path = require("path");
var beautylog = require("beautylog"); var beautylog = require("beautylog")("os");
//important vars //important vars
var gulpCallFunction = { var gulpCallFunction = {

View File

@ -1,9 +1,10 @@
/// <reference path="typings/tsd.d.ts" /> /// <reference path="typings/tsd.d.ts" />
var gulp = require("gulp"); var gulp = require("gulp");
var gulpCallFunction = require("./index.js"); var gulpCallFunction = require("./index.js");
var beautylog = require("beautylog")("os");
var myFunction = function () { var myFunction = function () {
console.log("Hello World!"); beautylog.log("Hello World!");
} }
gulp.task('default',function() { gulp.task('default',function() {