Skip to content

Commit

Permalink
updated dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Aug 3, 2016
1 parent 6ab8ad4 commit 5717901
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions dist/lamb.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @overview lamb - A lightweight, and docile, JavaScript library to help embracing functional programming.
* @author Andrea Scartabelli <andrea.scartabelli@gmail.com>
* @version 0.35.0
* @version 0.36.0-alpha.3
* @module lamb
* @license MIT
* @preserve
Expand All @@ -18,7 +18,7 @@
* @category Core
* @type String
*/
lamb._version = "0.35.0";
lamb._version = "0.36.0-alpha.3";

// alias used as a placeholder argument for partial application
var _ = lamb;
Expand Down
4 changes: 2 additions & 2 deletions dist/lamb.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/lamb.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ gulp.task("minify", ["concat"], function () {
return gulp.src("./dist/lamb.js")
.pipe(sourcemaps.init())
.pipe(uglify({
preserveComments: "some"
preserveComments: "license"
}))
.pipe(rename({extname: ".min.js"}))
.pipe(sourcemaps.write("./"))
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@
"coveralls": "gulp coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"tonicExample": "var _ = require('lamb');",
"version": "0.35.0",
"version": "0.36.0-alpha.3",
"devDependencies": {
"coveralls": "^2.11.11",
"coveralls": "^2.11.12",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-footer": "^1.0.5",
Expand All @@ -43,9 +43,9 @@
"gulp-jasmine": "^2.4.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.4",
"gulp-uglify": "^2.0.0",
"plato": "^1.6.0",
"sinon": "^1.17.4"
"sinon": "^1.17.5"
},
"dependencies": {}
}

0 comments on commit 5717901

Please sign in to comment.