Compare commits

...

6 Commits

Author SHA1 Message Date
d0445361eb 1.0.1 2016-01-25 02:13:17 +01:00
d580d486fa update npm keywords 2016-01-25 02:13:06 +01:00
8053a34581 update .travis.yml to use lossless 2016-01-25 00:56:04 +01:00
2b6a95a45a 1.0.0 2016-01-25 00:42:17 +01:00
c4e8ce846d updated to use npmts, removed pushrocks dependency, bumped version major 2016-01-25 00:42:11 +01:00
92ad03fc65 0.0.18 2015-12-06 22:07:59 +01:00
11 changed files with 95 additions and 98 deletions

3
.npmignore Normal file
View File

@ -0,0 +1,3 @@
node_modules
test
ts

View File

@ -1,13 +1,13 @@
language: node_js language: node_js
node_js: node_js:
- "4.1" - '4.1'
before_install: before_install:
- npm install -g tsd - npm install -g tsd
deploy: deploy:
provider: npm provider: npm
email: npm@smart-coordination.com email: npm@lossless.digital
api_key: api_key:
secure: G2kV5r0/ZYzNYRxq3eL9in2uuXlE3xj2OAL8q/Xa2GVczMn/hU1FZItfnCYH7wOD1CqeUX1W5J87Fw0iqkfl/6FsTO3h2UpUoTea0mCK/HYj0HlpIudOeXklYfo0HpYqKnhsbR0oB/AkeDldNwBlf3uzyEMu24Bb5VbtWZ8Qmjm7k2CT17ZNX0dJwQ8c1LdsNjYRCUIQrvSFVFypkIwx5WCsWbBzyZSR2e8r7BkuyfdHl7dEN41ULGcq5hTy/x1qKTIS9AY/JbWW/tdzARREsnqUxNiRmtM8BR85BYxRfgFdOO+0FcDBbJJyFC9NHn7FSpbc5kuX/vOEcbpGye7V6rM3D33emKhW8sAER4UaXZjSYJD5LHXrRFm0eexGnSRGmXPvuSt1oa0kuE2w1jTR6ixmL5M4kmcsUQt+OnOha/ImeE1Aa88JKgBBA7K5QIaiCLsJAulZeVvcqpbFD2SH/4L+lOdev9z6cR485x5eHi5ehIeKlRiWoy4ZMydSyMcYQJlvsc2zFgR4QKatz1/iryeti6taJG8FWx4+XWwxQm57sxDrXK3FTsy9uu3wg39iUQJRVhmU52Oyg3obmsa9B3OLVqZFkOEgqy1R9XeJTJHe7ka4MTynRlkjWK7KX9eNCC+tSPMtUf8/bmH+YNS7Y3dQvnNNvvxs3U8XCH/rQ0M= secure: MNBFCPscAm1+rY1qIHbye3Bwif9W/bPyHxvXyoKbi8G2URQjZKNYTpRT0bVShj6UBJihBrnXa40cxmU/F+rcQhPeY4uFIC5oBIyYkSrn0XvhJEqn/yQnBl0DrdImYSuYx480jLKvvNq3RIft2K+5y6+qb8QuumV/1p4QYbiM6Ibwz54SPfmJtzsMsei8bHzbDvOtKeoX8l3mGqyIVX1D/Nnnq9rH0UZnbqf7W5IH/QlCTpVAj5v/HRCSbCbJkbmwTYtx4PV0xS9vYgXklwFr0FcJXyZPmzqSRM/EYnhOg61uQCWM1JG12nDmdv8lkE+x5L6fV+YXTeBAKmnCBAZy8D7CYX0jDELrpKp4wKFofl/AkTDAlVsjEb4U+DVXuJOWt8KQzjYGLX6nXXOUzDD9OXNmB6010a2g3SQ4vCX3jHomycPZTgKPd4MN5xiJBfg/EXn1HlJdtO8jYFB2S87VVmFrJfwQ6x4iZxabmWPtasye3DP/OLX+8/8aWNGLMjP/Lr4muPS4B9OOlI3EvVo+DR3B381NPwzKaM9NLkeM3pHgMhm0K2mqOnbvhUhhkmmMkQI1T+RRf91zraPXAh7fMRDh2lDqKfrhtKobFBmONgXAtO7QPz2Bhp+kszwRo/Vx//H2VpUD45CNfMKnN99VYY/FHGYICBYH2mK/MX50HAA=
on: on:
tags: true tags: true
repo: pushrocks/gulp-browser repo: pushrocks/gulp-browser

12
index.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
/// <reference path="ts/typings/tsd.d.ts" />
declare module GulpBrowserBrowserify {
function init(): () => any;
}
declare var plugins: {
beautylog: any;
through: any;
gutil: any;
path: any;
browserify: any;
};
declare var gulpBrowser: any;

View File

@ -1,19 +1,21 @@
#!/usr/bin/env node
/// <reference path="./index.ts" /> /// <reference path="./index.ts" />
var GulpBrowserBrowserify; var GulpBrowserBrowserify;
(function (GulpBrowserBrowserify) { (function (GulpBrowserBrowserify) {
function init() { function init() {
return function () { return function () {
return through.obj(function (file, enc, cb) { return plugins.through.obj(function (file, enc, cb) {
var bundleCallback = function (err, bufferedContent) { var bundleCallback = function (err, bufferedContent) {
if (Buffer.isBuffer(bufferedContent)) { if (Buffer.isBuffer(bufferedContent)) {
file.contents = bufferedContent; file.contents = bufferedContent;
} }
else { else {
pr.beautylog.error("gulp-browser: .browserify() " + err.message); plugins.beautylog.error("gulp-browser: .browserify() " + err.message);
} }
cb(null, file); cb(null, file);
}; };
browserify(file) plugins.browserify(file)
.bundle(bundleCallback); .bundle(bundleCallback);
}); });
}; };
@ -22,11 +24,13 @@ var GulpBrowserBrowserify;
})(GulpBrowserBrowserify || (GulpBrowserBrowserify = {})); })(GulpBrowserBrowserify || (GulpBrowserBrowserify = {}));
/// <reference path="./typings/tsd.d.ts" /> /// <reference path="./typings/tsd.d.ts" />
/// <reference path="./modulebrowserify.ts" /> /// <reference path="./modulebrowserify.ts" />
var through = require("through2"); var plugins = {
var gutil = require("gulp-util"); beautylog: require("beautylog"),
var path = require("path"); through: require("through2"),
var browserify = require("browserify"); gutil: require("gulp-util"),
var pr = require("pushrocks"); path: require("path"),
browserify: require("browserify")
};
//create the return object //create the return object
var gulpBrowser = {}; var gulpBrowser = {};
gulpBrowser.browserify = GulpBrowserBrowserify.init(); gulpBrowser.browserify = GulpBrowserBrowserify.init();

View File

@ -1,10 +1,10 @@
{ {
"name": "gulp-browser", "name": "gulp-browser",
"version": "0.0.17", "version": "1.0.1",
"description": "browserify and other goodies for gulp", "description": "browserify and other goodies for gulp",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "(cd ts/compile && node compile.js) && (node test.js)", "test": "(npmts) && (node test.js)",
"reinstall": "(rm -r node_modules && npm install)", "reinstall": "(rm -r node_modules && npm install)",
"release": "(git pull origin master && npm version patch && git push origin master && git checkout release && git merge master && git push origin release && git checkout master)", "release": "(git pull origin master && npm version patch && git push origin master && git checkout release && git merge master && git push origin release && git checkout master)",
"update": "(git checkout master && git pull origin master && npm install)", "update": "(git checkout master && git pull origin master && npm install)",
@ -15,9 +15,8 @@
"url": "https://github.com/pushrocks/gulp-browser.git" "url": "https://github.com/pushrocks/gulp-browser.git"
}, },
"keywords": [ "keywords": [
"json", "gulpplugin",
"jade", "browserify"
"template"
], ],
"author": "Smart Coordination GmbH <office@push.rocks> (https://push.rocks)", "author": "Smart Coordination GmbH <office@push.rocks> (https://push.rocks)",
"license": "MIT", "license": "MIT",
@ -26,15 +25,14 @@
}, },
"homepage": "https://github.com/pushrocks/gulp-browser", "homepage": "https://github.com/pushrocks/gulp-browser",
"dependencies": { "dependencies": {
"browserify": "12.0.1", "browserify": "13.0.0",
"gulp-util": "3.0.7", "gulp-util": "3.0.7",
"pushrocks": "1.0.24",
"through2": "2.0.0" "through2": "2.0.0"
}, },
"devDependencies": { "devDependencies": {
"beautylog": "1.0.6", "beautylog": "2.0.2",
"gulp": "3.9.0", "gulp": "3.9.0",
"gulp-callfunction": "0.0.10", "gulp-callfunction": "0.0.10",
"gulp-typescript": "2.10.0" "npmts": "^1.0.9"
} }
} }

42
test.js
View File

@ -1,27 +1,29 @@
/// <reference path="./typings/tsd.d.ts" /> /// <reference path="./typings/tsd.d.ts" />
var gulp = require("gulp"); var plugins = {
var gulpBrowser = require("./index.js"); beautylog: require("beautylog"),
var pr = require("pushrocks"); gulp: require("gulp"),
var gulpCallFunction = require("gulp-callfunction"); gulpBrowser: require("./index.js"),
var pipeWorked = function () { gulpCallFunction: require("gulp-callfunction")
pr.beautylog.info("Pipe didn't break! Ready for Primetime!");
}; };
pr.beautylog.log('Now trying to browserify a testfile...'); var pipeWorked = function () {
gulp.task('gulpBrowserTest', function (cb) { plugins.beautylog.info("Pipe didn't break! Ready for Primetime!");
var stream = gulp.src('./test/browserifyGulpTest.js') };
.pipe(gulpBrowser.browserify()) plugins.beautylog.log('Now trying to browserify a testfile...');
.pipe(gulp.dest("./test/result/")) plugins.gulp.task('gulpBrowserTest', function (cb) {
.pipe(gulpCallFunction(pipeWorked)); var stream = plugins.gulp.src('./test/browserifyGulpTest.js')
.pipe(plugins.gulpBrowser.browserify())
.pipe(plugins.gulp.dest("./test/result/"))
.pipe(plugins.gulpCallFunction(pipeWorked));
return stream; return stream;
}); });
gulp.task('gulpBrowserTestError', function (cb) { plugins.gulp.task('gulpBrowserTestError', function (cb) {
var stream = gulp.src('./test/browserifyGulpTestError.js') var stream = plugins.gulp.src('./test/browserifyGulpTestError.js')
.pipe(gulpBrowser.browserify()) .pipe(plugins.gulpBrowser.browserify())
.pipe(gulp.dest("./test/result/")) .pipe(plugins.gulp.dest("./test/result/"))
.pipe(gulpCallFunction(pipeWorked)); .pipe(plugins.gulpCallFunction(pipeWorked));
return stream; return stream;
}); });
gulp.task("default", ['gulpBrowserTest', 'gulpBrowserTestError'], function () { plugins.gulp.task("default", ['gulpBrowserTest', 'gulpBrowserTestError'], function () {
pr.beautylog.success("Test passed!"); plugins.beautylog.success("Test passed!");
}); });
gulp.start.apply(gulp, ['default']); plugins.gulp.start.apply(plugins.gulp, ['default']);

View File

@ -1,27 +0,0 @@
// import gulp
var gulp = require("gulp")
var gulpTypescript = require("gulp-typescript");
var pr = require("pushrocks");
gulp.task('compileTS', function() {
var stream = gulp.src('../index.ts')
.pipe(gulpTypescript({
out: "index.js"
}))
.pipe(gulp.dest("../../"));
return stream;
});
gulp.task('compileTestTS', function() {
var stream = gulp.src('../test.ts')
.pipe(gulpTypescript({
out: "test.js"
}))
.pipe(gulp.dest("../../"));
return stream;
});
gulp.task('default',['compileTS','compileTestTS'], function() {
pr.beautylog.success('Typescript compiled');
});
gulp.start.apply(gulp, ['default']);

View File

@ -1,2 +0,0 @@
# How to compile.
Make sure gulp and gulp-taypescript from npm are available. Then run the gulpfile in this directory.

View File

@ -1,11 +1,14 @@
/// <reference path="./typings/tsd.d.ts" /> /// <reference path="./typings/tsd.d.ts" />
/// <reference path="./modulebrowserify.ts" /> /// <reference path="./modulebrowserify.ts" />
var through = require("through2"); var plugins = {
var gutil = require("gulp-util"); beautylog: require("beautylog"),
var path = require("path"); through: require("through2"),
var browserify = require("browserify"); gutil: require("gulp-util"),
var pr = require("pushrocks"); path: require("path"),
browserify: require("browserify")
};
//create the return object //create the return object
var gulpBrowser:any = {}; var gulpBrowser:any = {};

View File

@ -2,16 +2,16 @@
module GulpBrowserBrowserify { module GulpBrowserBrowserify {
export function init() { export function init() {
return function() { return function() {
return through.obj((file, enc, cb) => { //this is the through object that gets returned by gulpBrowser.browserify(); return plugins.through.obj((file, enc, cb) => { //this is the through object that gets returned by gulpBrowser.browserify();
var bundleCallback = function(err, bufferedContent) { var bundleCallback = function(err, bufferedContent) {
if (Buffer.isBuffer(bufferedContent)){ if (Buffer.isBuffer(bufferedContent)){
file.contents = bufferedContent; file.contents = bufferedContent;
} else { } else {
pr.beautylog.error("gulp-browser: .browserify() " + err.message); plugins.beautylog.error("gulp-browser: .browserify() " + err.message);
} }
cb(null,file); cb(null,file);
}; };
browserify(file) plugins.browserify(file)
.bundle(bundleCallback) .bundle(bundleCallback)
}); });
}; };

View File

@ -1,29 +1,33 @@
/// <reference path="./typings/tsd.d.ts" /> /// <reference path="./typings/tsd.d.ts" />
var gulp = require("gulp");
var gulpBrowser = require("./index.js");
var pr = require("pushrocks");
var gulpCallFunction = require("gulp-callfunction");
var pipeWorked = function() { var plugins = {
pr.beautylog.info("Pipe didn't break! Ready for Primetime!"); beautylog: require("beautylog"),
gulp: require("gulp"),
gulpBrowser: require("./index.js"),
gulpCallFunction: require("gulp-callfunction")
}; };
pr.beautylog.log('Now trying to browserify a testfile...');
gulp.task('gulpBrowserTest',function(cb) { var pipeWorked = function() {
var stream =gulp.src('./test/browserifyGulpTest.js') plugins.beautylog.info("Pipe didn't break! Ready for Primetime!");
.pipe(gulpBrowser.browserify()) };
.pipe(gulp.dest("./test/result/"))
.pipe(gulpCallFunction(pipeWorked)); plugins.beautylog.log('Now trying to browserify a testfile...');
plugins.gulp.task('gulpBrowserTest',function(cb) {
var stream = plugins.gulp.src('./test/browserifyGulpTest.js')
.pipe(plugins.gulpBrowser.browserify())
.pipe(plugins.gulp.dest("./test/result/"))
.pipe(plugins.gulpCallFunction(pipeWorked));
return stream; return stream;
}); });
gulp.task('gulpBrowserTestError',function(cb) { plugins.gulp.task('gulpBrowserTestError',function(cb) {
var stream = gulp.src('./test/browserifyGulpTestError.js') var stream = plugins.gulp.src('./test/browserifyGulpTestError.js')
.pipe(gulpBrowser.browserify()) .pipe(plugins.gulpBrowser.browserify())
.pipe(gulp.dest("./test/result/")) .pipe(plugins.gulp.dest("./test/result/"))
.pipe(gulpCallFunction(pipeWorked)); .pipe(plugins.gulpCallFunction(pipeWorked));
return stream; return stream;
}); });
gulp.task("default",['gulpBrowserTest','gulpBrowserTestError'],function(){ plugins.gulp.task("default",['gulpBrowserTest','gulpBrowserTestError'],function(){
pr.beautylog.success("Test passed!"); plugins.beautylog.success("Test passed!");
}); });
gulp.start.apply(gulp, ['default']); plugins.gulp.start.apply(plugins.gulp, ['default']);