Skip to content

Commit

Permalink
- updated dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ascartabelli committed Feb 11, 2019
1 parent 383a698 commit 3fb8538
Show file tree
Hide file tree
Showing 6 changed files with 1,854 additions and 1,793 deletions.
8 changes: 4 additions & 4 deletions dist/lamb.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/**
* @overview lamb - A lightweight, and docile, JavaScript library to help embracing functional programming.
* @author Andrea Scartabelli <andrea.scartabelli@gmail.com>
* @version 0.57.0-alpha.18
* @version 0.57.0-rc.1
* @module lamb
* @license MIT
* @preserve
*/
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.lamb = {})));
}(this, (function (exports) { 'use strict';
(global = global || self, factory(global.lamb = {}));
}(this, function (exports) { 'use strict';

/**
* The placeholder object.
Expand Down Expand Up @@ -6924,4 +6924,4 @@

Object.defineProperty(exports, '__esModule', { value: true });

})));
}));
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.

6 changes: 1 addition & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ var eslint = require("gulp-eslint");
var jest = require("gulp-jest").default;
var rename = require("gulp-rename");
var rollup = require("rollup");
var rollupJSON = require("rollup-plugin-json");
var sourcemaps = require("gulp-sourcemaps");
var uglify = require("gulp-uglify");

Expand All @@ -26,10 +25,7 @@ var intro = [
/* build */

gulp.task("build", function () {
return rollup.rollup({
input: "src/index.js",
plugins: [rollupJSON()]
}).then(function (bundle) {
return rollup.rollup({ input: "src/index.js" }).then(function (bundle) {
return bundle.write({
banner: intro,
exports: "named",
Expand Down
Loading

0 comments on commit 3fb8538

Please sign in to comment.