@mobilabs/es6lib 1.0.9 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +8 -0
- package/.travis.yml +1 -1
- package/LICENSE.md +1 -1
- package/README.md +12 -12
- package/_dist/LICENSE.md +1 -1
- package/_dist/README.md +12 -12
- package/_dist/lib/es6lib.js +4 -4
- package/_dist/lib/es6lib.min.js +3 -3
- package/_dist/lib/es6lib.min.mjs +3 -3
- package/_dist/lib/es6lib.mjs +4 -4
- package/bin/es6lib.js +3 -0
- package/package.json +11 -12
- package/tasks/makejs.js +1 -1
- package/CHANGELOG.md +0 -169
package/.travis.yml
CHANGED
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2022 Mobilabs <contact@mobilabs.fr> (https://www.mobilabs.fr)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
[![GitHub last commit][commit-image]][commit-url]
|
|
5
5
|
[![Travis CI][travis-image]][travis-url]
|
|
6
6
|
[![Test coverage][coveralls-image]][coveralls-url]
|
|
7
|
-
[![Dependencies status][dependencies-image]][dependencies-url]
|
|
8
|
-
[![Dev Dependencies status][devdependencies-image]][devdependencies-url]
|
|
9
7
|
[![npm bundle size][npm-bundle-size-image]][npm-bundle-size-url]
|
|
10
8
|
[![License][license-image]](LICENSE.md)
|
|
9
|
+
<!-- [![Dependencies status][dependencies-image]][dependencies-url]
|
|
10
|
+
[![Dev Dependencies status][devdependencies-image]][devdependencies-url] -->
|
|
11
11
|
|
|
12
12
|
ES6lib is a template for writing ES6 Javascript libraries and ES6 modules that run on both Node.js and ECMAScript 2015 (ES6) compliant browsers.
|
|
13
13
|
|
|
@@ -36,9 +36,9 @@ Then, you just need to create a `package.json` file that contains:
|
|
|
36
36
|
"name": "NameOfYourProject",
|
|
37
37
|
"scripts": {
|
|
38
38
|
"create": "npm install @mobilabs/es6lib && npm run populate",
|
|
39
|
-
"populate": "es6lib populate --name $
|
|
39
|
+
"populate": "es6lib populate --name $npm_package_name --author $npm_package_config_name --acronym $npm_package_config_acronym --email $npm_package_config_email --url $npm_package_config_url && npm install && npm run build && npm run test && npm run report"
|
|
40
40
|
},
|
|
41
|
-
"
|
|
41
|
+
"config": {
|
|
42
42
|
"name": "John Doe",
|
|
43
43
|
"acronym": "jdo",
|
|
44
44
|
"email": "jdo@johndoe.com",
|
|
@@ -171,20 +171,20 @@ Enjoy!
|
|
|
171
171
|
|
|
172
172
|
<!--- URls -->
|
|
173
173
|
|
|
174
|
-
[npm-image]: https://img.shields.io/npm/v/@mobilabs/es6lib.svg?
|
|
175
|
-
[release-image]: https://img.shields.io/github/release/jclo/es6lib.svg?include_prereleases
|
|
176
|
-
[commit-image]: https://img.shields.io/github/last-commit/jclo/es6lib.svg?
|
|
177
|
-
[travis-image]: https://img.shields.io/travis/jclo/es6lib.svg?
|
|
178
|
-
[coveralls-image]: https://img.shields.io/coveralls/jclo/es6lib/master.svg
|
|
174
|
+
[npm-image]: https://img.shields.io/npm/v/@mobilabs/es6lib.svg?logo=npm&logoColor=fff&label=NPM+package
|
|
175
|
+
[release-image]: https://img.shields.io/github/release/jclo/es6lib.svg?include_prereleases
|
|
176
|
+
[commit-image]: https://img.shields.io/github/last-commit/jclo/es6lib.svg?logo=github
|
|
177
|
+
[travis-image]: https://img.shields.io/travis/com/jclo/es6lib.svg?logo=travis-ci&logoColor=fff
|
|
178
|
+
[coveralls-image]: https://img.shields.io/coveralls/jclo/es6lib/master.svg?&logo=coveralls
|
|
179
179
|
[dependencies-image]: https://david-dm.org/jclo/es6lib/status.svg?theme=shields.io
|
|
180
180
|
[devdependencies-image]: https://david-dm.org/jclo/es6lib/dev-status.svg?theme=shields.io
|
|
181
|
-
[npm-bundle-size-image]: https://img.shields.io/bundlephobia/minzip/@mobilabs/es6lib.svg
|
|
182
|
-
[license-image]: https://img.shields.io/npm/l/@mobilabs/es6lib.svg
|
|
181
|
+
[npm-bundle-size-image]: https://img.shields.io/bundlephobia/minzip/@mobilabs/es6lib.svg
|
|
182
|
+
[license-image]: https://img.shields.io/npm/l/@mobilabs/es6lib.svg
|
|
183
183
|
|
|
184
184
|
[npm-url]: https://www.npmjs.com/package/@mobilabs/es6lib
|
|
185
185
|
[release-url]: https://github.com/jclo/es6lib/tags
|
|
186
186
|
[commit-url]: https://github.com/jclo/es6lib/commits/master
|
|
187
|
-
[travis-url]: https://travis-ci.com/jclo/es6lib
|
|
187
|
+
[travis-url]: https://app.travis-ci.com/jclo/es6lib?branch=main
|
|
188
188
|
[coveralls-url]: https://coveralls.io/github/jclo/es6lib?branch=master
|
|
189
189
|
[dependencies-url]: https://david-dm.org/jclo/es6lib
|
|
190
190
|
[devdependencies-url]: https://david-dm.org/jclo/es6lib?type=dev
|
package/_dist/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2022 Mobilabs <contact@mobilabs.fr> (https://www.mobilabs.fr)
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/_dist/README.md
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
[![GitHub last commit][commit-image]][commit-url]
|
|
5
5
|
[![Travis CI][travis-image]][travis-url]
|
|
6
6
|
[![Test coverage][coveralls-image]][coveralls-url]
|
|
7
|
-
[![Dependencies status][dependencies-image]][dependencies-url]
|
|
8
|
-
[![Dev Dependencies status][devdependencies-image]][devdependencies-url]
|
|
9
7
|
[![npm bundle size][npm-bundle-size-image]][npm-bundle-size-url]
|
|
10
8
|
[![License][license-image]](LICENSE.md)
|
|
9
|
+
<!-- [![Dependencies status][dependencies-image]][dependencies-url]
|
|
10
|
+
[![Dev Dependencies status][devdependencies-image]][devdependencies-url] -->
|
|
11
11
|
|
|
12
12
|
ES6lib is a template for writing ES6 Javascript libraries and ES6 modules that run on both Node.js and ECMAScript 2015 (ES6) compliant browsers.
|
|
13
13
|
|
|
@@ -36,9 +36,9 @@ Then, you just need to create a `package.json` file that contains:
|
|
|
36
36
|
"name": "NameOfYourProject",
|
|
37
37
|
"scripts": {
|
|
38
38
|
"create": "npm install @mobilabs/es6lib && npm run populate",
|
|
39
|
-
"populate": "es6lib populate --name $
|
|
39
|
+
"populate": "es6lib populate --name $npm_package_name --author $npm_package_config_name --acronym $npm_package_config_acronym --email $npm_package_config_email --url $npm_package_config_url && npm install && npm run build && npm run test && npm run report"
|
|
40
40
|
},
|
|
41
|
-
"
|
|
41
|
+
"config": {
|
|
42
42
|
"name": "John Doe",
|
|
43
43
|
"acronym": "jdo",
|
|
44
44
|
"email": "jdo@johndoe.com",
|
|
@@ -171,20 +171,20 @@ Enjoy!
|
|
|
171
171
|
|
|
172
172
|
<!--- URls -->
|
|
173
173
|
|
|
174
|
-
[npm-image]: https://img.shields.io/npm/v/@mobilabs/es6lib.svg?
|
|
175
|
-
[release-image]: https://img.shields.io/github/release/jclo/es6lib.svg?include_prereleases
|
|
176
|
-
[commit-image]: https://img.shields.io/github/last-commit/jclo/es6lib.svg?
|
|
177
|
-
[travis-image]: https://img.shields.io/travis/jclo/es6lib.svg?
|
|
178
|
-
[coveralls-image]: https://img.shields.io/coveralls/jclo/es6lib/master.svg
|
|
174
|
+
[npm-image]: https://img.shields.io/npm/v/@mobilabs/es6lib.svg?logo=npm&logoColor=fff&label=NPM+package
|
|
175
|
+
[release-image]: https://img.shields.io/github/release/jclo/es6lib.svg?include_prereleases
|
|
176
|
+
[commit-image]: https://img.shields.io/github/last-commit/jclo/es6lib.svg?logo=github
|
|
177
|
+
[travis-image]: https://img.shields.io/travis/com/jclo/es6lib.svg?logo=travis-ci&logoColor=fff
|
|
178
|
+
[coveralls-image]: https://img.shields.io/coveralls/jclo/es6lib/master.svg?&logo=coveralls
|
|
179
179
|
[dependencies-image]: https://david-dm.org/jclo/es6lib/status.svg?theme=shields.io
|
|
180
180
|
[devdependencies-image]: https://david-dm.org/jclo/es6lib/dev-status.svg?theme=shields.io
|
|
181
|
-
[npm-bundle-size-image]: https://img.shields.io/bundlephobia/minzip/@mobilabs/es6lib.svg
|
|
182
|
-
[license-image]: https://img.shields.io/npm/l/@mobilabs/es6lib.svg
|
|
181
|
+
[npm-bundle-size-image]: https://img.shields.io/bundlephobia/minzip/@mobilabs/es6lib.svg
|
|
182
|
+
[license-image]: https://img.shields.io/npm/l/@mobilabs/es6lib.svg
|
|
183
183
|
|
|
184
184
|
[npm-url]: https://www.npmjs.com/package/@mobilabs/es6lib
|
|
185
185
|
[release-url]: https://github.com/jclo/es6lib/tags
|
|
186
186
|
[commit-url]: https://github.com/jclo/es6lib/commits/master
|
|
187
|
-
[travis-url]: https://travis-ci.com/jclo/es6lib
|
|
187
|
+
[travis-url]: https://app.travis-ci.com/jclo/es6lib?branch=main
|
|
188
188
|
[coveralls-url]: https://coveralls.io/github/jclo/es6lib?branch=master
|
|
189
189
|
[dependencies-url]: https://david-dm.org/jclo/es6lib
|
|
190
190
|
[devdependencies-url]: https://david-dm.org/jclo/es6lib?type=dev
|
package/_dist/lib/es6lib.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*! ****************************************************************************
|
|
2
|
-
* ES6lib v1.0.
|
|
2
|
+
* ES6lib v1.0.13
|
|
3
3
|
*
|
|
4
4
|
* A template for writing pure ES6 Javascript libraries.
|
|
5
5
|
* (you can download it from npm or github repositories)
|
|
6
|
-
* Copyright (c)
|
|
6
|
+
* Copyright (c) 2022 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr/).
|
|
7
7
|
* Released under the MIT license. You may obtain a copy of the License
|
|
8
8
|
* at: http://www.opensource.org/licenses/mit-license.php).
|
|
9
9
|
* Built from {{boiler:name}} v{{boiler:name:version}}.
|
|
@@ -312,14 +312,14 @@
|
|
|
312
312
|
const obj = Object.create(methods);
|
|
313
313
|
obj._library = {
|
|
314
314
|
name: 'ES6lib',
|
|
315
|
-
version: '1.0.
|
|
315
|
+
version: '1.0.13',
|
|
316
316
|
};
|
|
317
317
|
return obj;
|
|
318
318
|
};
|
|
319
319
|
|
|
320
320
|
// Attaches constants to ES6lib that provide name and version of the lib.
|
|
321
321
|
ES6lib.NAME = 'ES6lib';
|
|
322
|
-
ES6lib.VERSION = '1.0.
|
|
322
|
+
ES6lib.VERSION = '1.0.13';
|
|
323
323
|
|
|
324
324
|
|
|
325
325
|
// -- Private Static Methods -----------------------------------------------
|
package/_dist/lib/es6lib.min.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*! ****************************************************************************
|
|
2
|
-
* ES6lib v1.0.
|
|
2
|
+
* ES6lib v1.0.13
|
|
3
3
|
*
|
|
4
4
|
* A template for writing pure ES6 Javascript libraries.
|
|
5
5
|
* (you can download it from npm or github repositories)
|
|
6
|
-
* Copyright (c)
|
|
6
|
+
* Copyright (c) 2022 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr/).
|
|
7
7
|
* Released under the MIT license. You may obtain a copy of the License
|
|
8
8
|
* at: http://www.opensource.org/licenses/mit-license.php).
|
|
9
9
|
* Built from {{boiler:name}} v{{boiler:name:version}}.
|
|
10
10
|
* ************************************************************************** */
|
|
11
|
-
!function(t,e){"use strict";"function"==typeof define&&define.amd?define([""],e):"object"==typeof exports?module.exports=e(t):t.ES6lib=e(t)}(this,t=>{"use strict";let e,n;const i={Public:{}};return n=function(t,e){const n=Object.keys(e);for(let i=0;i<n.length;i++)t[n[i]]=e[n[i]]},function(){const t=i.Public;n(t,{getString:()=>"I am a string!",getArray:()=>[1,2,3]})}(),function(){const n=i.Public,r=t.ES6lib;let o;e=function(){const t=Object.create(o);return t._library={name:"ES6lib",version:"1.0.
|
|
11
|
+
!function(t,e){"use strict";"function"==typeof define&&define.amd?define([""],e):"object"==typeof exports?module.exports=e(t):t.ES6lib=e(t)}(this,(t=>{"use strict";let e,n;const i={Public:{}};return n=function(t,e){const n=Object.keys(e);for(let i=0;i<n.length;i++)t[n[i]]=e[n[i]]},function(){const t=i.Public;n(t,{getString:()=>"I am a string!",getArray:()=>[1,2,3]})}(),function(){const n=i.Public,r=t.ES6lib;let o;e=function(){const t=Object.create(o);return t._library={name:"ES6lib",version:"1.0.13"},t},e.NAME="ES6lib",e.VERSION="1.0.13",e._setTestMode=function(){return[]},e.noConflict=function(){return t.ES6lib=r,this},o={whoami(){return this._library},getString:()=>n.getString(),getArray:()=>n.getArray()}}(),e}));
|
package/_dist/lib/es6lib.min.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*! ****************************************************************************
|
|
2
|
-
* ES6lib v1.0.
|
|
2
|
+
* ES6lib v1.0.13
|
|
3
3
|
*
|
|
4
4
|
* A template for writing pure ES6 Javascript libraries.
|
|
5
5
|
* (you can download it from npm or github repositories)
|
|
6
|
-
* Copyright (c)
|
|
6
|
+
* Copyright (c) 2022 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr/).
|
|
7
7
|
* Released under the MIT license. You may obtain a copy of the License
|
|
8
8
|
* at: http://www.opensource.org/licenses/mit-license.php).
|
|
9
9
|
* Built from {{boiler:name}} v{{boiler:name:version}}.
|
|
10
10
|
* ************************************************************************** */
|
|
11
|
-
const $__ES6GLOB={};!function(t,e){"use strict";"function"==typeof define&&define.amd?define([""],e):"object"==typeof exports?module.exports=e(t):t.ES6lib=e(t)}($__ES6GLOB,t=>{"use strict";let e,n;const i={Public:{}};return n=function(t,e){const n=Object.keys(e);for(let i=0;i<n.length;i++)t[n[i]]=e[n[i]]},function(){const t=i.Public;n(t,{getString:()=>"I am a string!",getArray:()=>[1,2,3]})}(),function(){const n=i.Public,r=t.ES6lib;let o;e=function(){const t=Object.create(o);return t._library={name:"ES6lib",version:"1.0.
|
|
11
|
+
const $__ES6GLOB={};!function(t,e){"use strict";"function"==typeof define&&define.amd?define([""],e):"object"==typeof exports?module.exports=e(t):t.ES6lib=e(t)}($__ES6GLOB,(t=>{"use strict";let e,n;const i={Public:{}};return n=function(t,e){const n=Object.keys(e);for(let i=0;i<n.length;i++)t[n[i]]=e[n[i]]},function(){const t=i.Public;n(t,{getString:()=>"I am a string!",getArray:()=>[1,2,3]})}(),function(){const n=i.Public,r=t.ES6lib;let o;e=function(){const t=Object.create(o);return t._library={name:"ES6lib",version:"1.0.13"},t},e.NAME="ES6lib",e.VERSION="1.0.13",e._setTestMode=function(){return[]},e.noConflict=function(){return t.ES6lib=r,this},o={whoami(){return this._library},getString:()=>n.getString(),getArray:()=>n.getArray()}}(),e}));export default $__ES6GLOB.ES6lib;
|
package/_dist/lib/es6lib.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*! ****************************************************************************
|
|
2
|
-
* ES6lib v1.0.
|
|
2
|
+
* ES6lib v1.0.13
|
|
3
3
|
*
|
|
4
4
|
* A template for writing pure ES6 Javascript libraries.
|
|
5
5
|
* (you can download it from npm or github repositories)
|
|
6
|
-
* Copyright (c)
|
|
6
|
+
* Copyright (c) 2022 Mobilabs <contact@mobilabs.fr> (http://www.mobilabs.fr/).
|
|
7
7
|
* Released under the MIT license. You may obtain a copy of the License
|
|
8
8
|
* at: http://www.opensource.org/licenses/mit-license.php).
|
|
9
9
|
* Built from {{boiler:name}} v{{boiler:name:version}}.
|
|
@@ -313,14 +313,14 @@ const $__ES6GLOB = {};
|
|
|
313
313
|
const obj = Object.create(methods);
|
|
314
314
|
obj._library = {
|
|
315
315
|
name: 'ES6lib',
|
|
316
|
-
version: '1.0.
|
|
316
|
+
version: '1.0.13',
|
|
317
317
|
};
|
|
318
318
|
return obj;
|
|
319
319
|
};
|
|
320
320
|
|
|
321
321
|
// Attaches constants to ES6lib that provide name and version of the lib.
|
|
322
322
|
ES6lib.NAME = 'ES6lib';
|
|
323
|
-
ES6lib.VERSION = '1.0.
|
|
323
|
+
ES6lib.VERSION = '1.0.13';
|
|
324
324
|
|
|
325
325
|
|
|
326
326
|
// -- Private Static Methods -----------------------------------------------
|
package/bin/es6lib.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobilabs/es6lib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"description": "A template for writing pure ES6 Javascript libraries",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"minified": "_dist/lib/es6lib.min.js",
|
|
@@ -50,28 +50,27 @@
|
|
|
50
50
|
},
|
|
51
51
|
"homepage": "https://github.com/jclo/es6lib",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@mobilabs/kasar": "^1.0.5",
|
|
54
53
|
"nopt": "^5.0.0",
|
|
55
|
-
"shelljs": "^0.8.
|
|
54
|
+
"shelljs": "^0.8.5"
|
|
56
55
|
},
|
|
57
56
|
"devDependencies": {
|
|
58
|
-
"chai": "^4.3.
|
|
59
|
-
"coveralls": "^3.1.
|
|
57
|
+
"chai": "^4.3.5",
|
|
58
|
+
"coveralls": "^3.1.1",
|
|
60
59
|
"cross-env": "^7.0.3",
|
|
61
60
|
"del": "^6.0.0",
|
|
62
|
-
"eslint": "^7.
|
|
63
|
-
"eslint-config-airbnb-base": "^
|
|
64
|
-
"eslint-plugin-import": "^2.
|
|
61
|
+
"eslint": "^7.32.0",
|
|
62
|
+
"eslint-config-airbnb-base": "^15.0.0",
|
|
63
|
+
"eslint-plugin-import": "^2.25.4",
|
|
65
64
|
"gulp": "^4.0.2",
|
|
66
65
|
"gulp-concat": "^2.6.1",
|
|
67
66
|
"gulp-connect": "^5.7.0",
|
|
68
67
|
"gulp-header": "^2.0.9",
|
|
69
68
|
"gulp-replace": "^1.1.3",
|
|
70
|
-
"gulp-uglify-es": "^
|
|
71
|
-
"husky": "^
|
|
72
|
-
"mocha": "^
|
|
69
|
+
"gulp-uglify-es": "^3.0.0",
|
|
70
|
+
"husky": "^7.0.4",
|
|
71
|
+
"mocha": "^9.2.0",
|
|
73
72
|
"nyc": "^15.1.0",
|
|
74
|
-
"open": "^8.0
|
|
73
|
+
"open": "^8.4.0",
|
|
75
74
|
"opener": "^1.5.2"
|
|
76
75
|
},
|
|
77
76
|
"publishConfig": {
|
package/tasks/makejs.js
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
### HEAD
|
|
2
|
-
|
|
3
|
-
### 1.0.9 (May 12, 2021)
|
|
4
|
-
|
|
5
|
-
* Updated the project to comply with Husky v6,
|
|
6
|
-
* Fixed a release version issue,
|
|
7
|
-
* Release.
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
### 1.0.8 (May 12, 2021)
|
|
11
|
-
|
|
12
|
-
* Updated the project dependencies,
|
|
13
|
-
* Release.
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
### 1.0.7 (January 26, 2021)
|
|
17
|
-
|
|
18
|
-
* Updated the project dependencies,
|
|
19
|
-
* Updated travis.yml,
|
|
20
|
-
* Release.
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
### 1.0.6 (November 11, 2020)
|
|
24
|
-
|
|
25
|
-
* Updated the project dependencies,
|
|
26
|
-
* Fixed a package issue,
|
|
27
|
-
* Release.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
### 1.0.5 (October 8, 2020)
|
|
31
|
-
|
|
32
|
-
* Updated the project dependencies,
|
|
33
|
-
* Release.
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### 1.0.4 (October 8, 2020)
|
|
37
|
-
|
|
38
|
-
* Updated the project dependencies,
|
|
39
|
-
* Added @mobilabs/kasar for the documentation,
|
|
40
|
-
* Release.
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
### 1.0.3 (September 21, 2020)
|
|
44
|
-
|
|
45
|
-
* Updated the project dependencies,
|
|
46
|
-
* Made some changes to the README,
|
|
47
|
-
* Release.
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### 1.0.2 (August 30, 2020)
|
|
51
|
-
|
|
52
|
-
* Fixed a few typos and commented the test suite,
|
|
53
|
-
* Release.
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
### 1.0.1 (August 28, 2020)
|
|
57
|
-
|
|
58
|
-
* Updated es6lib.js script to simplify the project creation,
|
|
59
|
-
* Fixed a build issue,
|
|
60
|
-
* Release.
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
### 1.0.0 (August 27, 2020)
|
|
64
|
-
|
|
65
|
-
* Fixed a few minor issues,
|
|
66
|
-
* Removed a not useful feature from makedist.js,
|
|
67
|
-
* Added a private method for helping to test the internal objects,
|
|
68
|
-
* Added two properties to access to the library name and version,
|
|
69
|
-
* Updated the dependencies,
|
|
70
|
-
* Fourth release candidate,
|
|
71
|
-
* Added the option to import the library as an ES6 module,
|
|
72
|
-
* Fifth release candidate,
|
|
73
|
-
* Updated the dependencies,
|
|
74
|
-
* Sixth release candidate,
|
|
75
|
-
* Updated the Shields.io badges,
|
|
76
|
-
* Seventh release candidate,
|
|
77
|
-
* Added the method "whoami",
|
|
78
|
-
* Eighth release candidate,
|
|
79
|
-
* Reorganised the test folder,
|
|
80
|
-
* Ninth release candidate,
|
|
81
|
-
* Fixed a few minor issues,
|
|
82
|
-
* Tenth release candidate,
|
|
83
|
-
* Restructured the test set,
|
|
84
|
-
* Eleventh release candidate,
|
|
85
|
-
* Updated the project dependencies,
|
|
86
|
-
* Release.
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
### 0.0.12 (March 20, 2020)
|
|
90
|
-
|
|
91
|
-
* Fixed a cohabitation conflict with ES6libplus,
|
|
92
|
-
* Fixed a minor issue to the script es6lib.js,
|
|
93
|
-
* Release.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
### 0.0.11 (March 19, 2020)
|
|
97
|
-
|
|
98
|
-
* Made some cosmetics changes,
|
|
99
|
-
* Fixed a few minor typos,
|
|
100
|
-
* Release.
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
### 0.0.10 (March 17, 2020)
|
|
104
|
-
|
|
105
|
-
* Fixed an annoying mistake, in the script makejs.js, that prevents updating the release number,
|
|
106
|
-
* Release.
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
### 0.0.9 (March 16, 2020)
|
|
110
|
-
|
|
111
|
-
* Fixed some minor typos,
|
|
112
|
-
* Release.
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
### 0.0.8 (March 15, 2020)
|
|
116
|
-
|
|
117
|
-
* Added the capability to start an http server,
|
|
118
|
-
* Release.
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
### 0.0.7 (March 14, 2020)
|
|
122
|
-
|
|
123
|
-
* Updated the dependency packages,
|
|
124
|
-
* Removed the package gulp-footer as it has major vulnerabilities not fixed,
|
|
125
|
-
* Release.
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
### 0.0.6 (December 8, 2019)
|
|
129
|
-
|
|
130
|
-
* Fixed a few typos,
|
|
131
|
-
* Updated the dependencies,
|
|
132
|
-
* Release.
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
### 0.0.5 (September 22, 2019)
|
|
136
|
-
|
|
137
|
-
* Fixed a small regression in the script es6lib,
|
|
138
|
-
* Release.
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
### 0.0.4 (September 18, 2019)
|
|
142
|
-
|
|
143
|
-
* Removed the package vuepress,
|
|
144
|
-
* Release.
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
### 0.0.3 (August 26, 2019)
|
|
148
|
-
|
|
149
|
-
* Fixed a few typos,
|
|
150
|
-
* Release.
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
### 0.0.2 (August 25, 2019)
|
|
154
|
-
|
|
155
|
-
* A few small improvements,
|
|
156
|
-
* Release.
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
### 0.0.1 (August 24, 2019)
|
|
160
|
-
|
|
161
|
-
* Fixed a few typos in package.json,
|
|
162
|
-
* Release.
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
### 0.0.0 (August 24, 2019)
|
|
166
|
-
|
|
167
|
-
* Initial commit,
|
|
168
|
-
* First build,
|
|
169
|
-
* Release.
|