From 8b2459296655a410370a281143ceca8ccd945df6 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Thu, 28 Jan 2016 21:51:42 -0600 Subject: Updates README with revised deps and version --- package.json | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 7862cb9..2841e85 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "serpentity", "description": "A simple entity framework inspired by ash", - "version": "0.1.7", + "version": "1.0.0-alpha1", "contributors": [ { "name": "Ben Beltran", @@ -14,17 +14,13 @@ "url": "https://github.com/rbdr/serpentity.git" }, "dependencies": { - "neon": "2.0.x" }, "devDependencies": { - "colors": "0.6.2", - "tellurium": "2.0.x", - "gulp-uglify": "~0.3.1", - "gulp": "~3.8.7", - "gulp-concat": "~2.3.4" + "gulp": "3.9.x", + "gulp-concat": "2.6.x" }, "engines": { - "node": ">= 0.10.0" + "node": ">= 4.0.0" }, - "main": "./lib/serpentity/serpentity.js" + "main": "./lib/serpentity.js" } -- cgit From e1d0944b599a85a46767fdf1f12e31e8fca98956 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sun, 27 Mar 2016 23:24:25 -0600 Subject: Adds babel to devDependencies --- package.json | 2 ++ 1 file changed, 2 insertions(+) (limited to 'package.json') diff --git a/package.json b/package.json index 2841e85..1e37373 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,9 @@ "dependencies": { }, "devDependencies": { + "babel-preset-es2015": "6.6.x", "gulp": "3.9.x", + "gulp-babel": "6.1.x", "gulp-concat": "2.6.x" }, "engines": { -- cgit From 4c329508c3a6c56076c110cd4397fef0a219f7ce Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sun, 27 Mar 2016 23:33:46 -0600 Subject: Adds the minifying process back --- gulpfile.js | 7 +++++++ package.json | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'package.json') diff --git a/gulpfile.js b/gulpfile.js index edd97d0..dcb689b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -3,6 +3,8 @@ const Gulp = require('gulp'); const Babel = require('gulp-babel'); const Concat = require('gulp-concat'); +const Rename = require('gulp-rename'); +const Uglify = require('gulp-uglify'); Gulp.task('build', function() { Gulp.src([ @@ -17,5 +19,10 @@ Gulp.task('build', function() { presets: ['es2015'] })) .pipe(Concat('serpentity.js')) + .pipe(Gulp.dest('dist')) + .pipe(Uglify()) + .pipe(Rename({ + suffix: '.min' + })) .pipe(Gulp.dest('dist')); }); diff --git a/package.json b/package.json index 1e37373..0b50871 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,9 @@ "babel-preset-es2015": "6.6.x", "gulp": "3.9.x", "gulp-babel": "6.1.x", - "gulp-concat": "2.6.x" + "gulp-concat": "2.6.x", + "gulp-rename": "1.2.x", + "gulp-uglify": "1.5.x" }, "engines": { "node": ">= 4.0.0" -- cgit From efd207c0ea9b48b10126f01e8d4c60cf40f48d26 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 28 Mar 2016 00:10:39 -0600 Subject: Upgrades version to 1.0.0 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package.json') diff --git a/package.json b/package.json index 0b50871..4346199 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "serpentity", "description": "A simple entity framework inspired by ash", - "version": "1.0.0-alpha1", + "version": "1.0.0", "contributors": [ { - "name": "Ben Beltran", + "name": "Rubén Beltrán del Río", "email": "ben@nsovocal.com", "url": "http://nsovocal.com" } -- cgit