Skip to content

Commit

Permalink
Updated the dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
jclo committed Mar 17, 2020
1 parent ed638ad commit 25a59f3
Show file tree
Hide file tree
Showing 16 changed files with 1,188 additions and 577 deletions.
Empty file added .npmignore
Empty file.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### HEAD

### 0.0.3 (March 17, 2020)

* Updated the dependencies,
* ...,


### 0.0.2 (December 27, 2019)

* Replaced the template ES6lib by ES6libplus,
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr)
Copyright (c) 2020 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion _dist/LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr)
Copyright (c) 2020 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 5 additions & 4 deletions _dist/lib/taskq-noparent.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*! ****************************************************************************
* TaskQ v0.0.2
* TaskQ v0.0.3-alpha.1
*
* A library that processes tasks sequentially.
* (you can download it from npm or github repositories)
* Copyright (c) 2019 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr).
* Copyright (c) 2020 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr).
* Released under the MIT license. You may obtain a copy of the License
* at: http://www.opensource.org/licenses/mit-license.php).
* Built from ES6libplus v0.0.6.
* ************************************************************************** */
// Based on ES6Libplus template v0.0.2
// ESLint declarations
/* global define */
/* eslint strict: ["error", "function"] */
Expand All @@ -20,6 +20,7 @@
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
/* eslint-disable-next-line no-param-reassign */
module.exports = factory(root);
// This is a hack to attach the lib to the browser root when this lib is
// included inside another lib and the whole is browserifyied:
Expand Down Expand Up @@ -124,7 +125,7 @@
};

// Attaches a constant to TaskQ that provides the version of the lib.
TaskQ.VERSION = '0.0.2';
TaskQ.VERSION = '0.0.3-alpha.1';


// -- Public Static Methods ------------------------------------------------
Expand Down
9 changes: 5 additions & 4 deletions _dist/lib/taskq.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/*! ****************************************************************************
* TaskQ v0.0.2
* TaskQ v0.0.3-alpha.1
*
* A library that processes tasks sequentially.
* (you can download it from npm or github repositories)
* Copyright (c) 2019 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr).
* Copyright (c) 2020 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr).
* Released under the MIT license. You may obtain a copy of the License
* at: http://www.opensource.org/licenses/mit-license.php).
* Built from ES6libplus v0.0.6.
* ************************************************************************** */
// Based on ES6Libplus template v0.0.2
// ESLint declarations
/* global define */
/* eslint strict: ["error", "function"] */
Expand All @@ -22,6 +22,7 @@
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
/* eslint-disable-next-line no-param-reassign */
module.exports = factory(root);
// This is a hack to attach the lib to the browser root when this lib is
// included inside another lib and the whole is browserifyied:
Expand Down Expand Up @@ -128,7 +129,7 @@
};

// Attaches a constant to TaskQ that provides the version of the lib.
TaskQ.VERSION = '0.0.2';
TaskQ.VERSION = '0.0.3-alpha.1';


// -- Public Static Methods ------------------------------------------------
Expand Down
7 changes: 4 additions & 3 deletions _dist/lib/taskq.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

// -- Node modules
const { watch, series } = require('gulp')
, connect = require('gulp-connect')
, open = require('open')
;

// -- Local constants
Expand All @@ -21,9 +23,35 @@ function fwatch() {
watch(filesToWatch, series(build));
}

// -- Gulp connect dev
function devserver(done) {
connect.server({
host: '0.0.0.0', // (allows remote access)
root: './',
port: 8888,
livereload: true,
});
open('http://localhost:8888/');
done();
}

// -- Gulp connect prod
function appserver(done) {
connect.server({
host: '0.0.0.0', // (allows remote access)
root: './_dist',
port: 8889,
livereload: true,
});
open('http://localhost:8889/');
done();
}


// Gulp Public Tasks:
exports.watch = fwatch;
exports.build = build;
exports.rundev = devserver;
exports.makedist = makedist;
exports.runapp = appserver;
exports.default = series(build, makedist);
4 changes: 2 additions & 2 deletions lib/taskq-noparent.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// Based on ES6Libplus template v0.0.2
// ESLint declarations
/* global define */
/* eslint strict: ["error", "function"] */
Expand All @@ -13,6 +12,7 @@
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
/* eslint-disable-next-line no-param-reassign */
module.exports = factory(root);
// This is a hack to attach the lib to the browser root when this lib is
// included inside another lib and the whole is browserifyied:
Expand Down Expand Up @@ -119,7 +119,7 @@
};

// Attaches a constant to TaskQ that provides the version of the lib.
TaskQ.VERSION = '{{lib:version}}';
TaskQ.VERSION = '0.0.3-alpha.1';


// -- Public Static Methods ------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions lib/taskq.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// Based on ES6Libplus template v0.0.2
// ESLint declarations
/* global define */
/* eslint strict: ["error", "function"] */
Expand All @@ -13,6 +12,7 @@
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
/* eslint-disable-next-line no-param-reassign */
module.exports = factory(root);
// This is a hack to attach the lib to the browser root when this lib is
// included inside another lib and the whole is browserifyied:
Expand Down Expand Up @@ -119,7 +119,7 @@
};

// Attaches a constant to TaskQ that provides the version of the lib.
TaskQ.VERSION = '{{lib:version}}';
TaskQ.VERSION = '0.0.3-alpha.1';


// -- Public Static Methods ------------------------------------------------
Expand Down
Loading

0 comments on commit 25a59f3

Please sign in to comment.