zaraz 0.0.2 → 1.0.0
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/Readme.md +6 -9
- package/package.json +7 -6
- package/History.md +0 -16
package/Readme.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
[![NPM version][npm-image]][npm-url]
|
|
2
|
-
[![Build Status][
|
|
2
|
+
[![Build Status][build-image]][build-url]
|
|
3
3
|
[![Dependency Status][deps-image]][deps-url]
|
|
4
|
-
[![Dev Dependency Status][deps-dev-image]][deps-dev-url]
|
|
5
4
|
|
|
6
5
|
# zaraz
|
|
7
6
|
|
|
@@ -50,14 +49,12 @@ zaraz(sum, 10, 10); // will displey 20 after it displays 13
|
|
|
50
49
|
|
|
51
50
|
MIT © [Damian Krzeminski](https://pirxpilot.me)
|
|
52
51
|
|
|
53
|
-
[npm-image]: https://img.shields.io/npm/v/zaraz
|
|
52
|
+
[npm-image]: https://img.shields.io/npm/v/zaraz
|
|
54
53
|
[npm-url]: https://npmjs.org/package/zaraz
|
|
55
54
|
|
|
56
|
-
[
|
|
57
|
-
[
|
|
55
|
+
[build-url]: https://github.com/pirxpilot/zaraz/actions/workflows/check.yaml
|
|
56
|
+
[build-image]: https://img.shields.io/github/actions/workflow/status/pirxpilot/zaraz/check.yaml?branch=main
|
|
58
57
|
|
|
59
|
-
[deps-image]: https://img.shields.io/
|
|
60
|
-
[deps-url]: https://
|
|
58
|
+
[deps-image]: https://img.shields.io/librariesio/release/npm/zaraz
|
|
59
|
+
[deps-url]: https://libraries.io/npm/zaraz
|
|
61
60
|
|
|
62
|
-
[deps-dev-image]: https://img.shields.io/david/dev/pirxpilot/zaraz.svg
|
|
63
|
-
[deps-dev-url]: https://david-dm.org/pirxpilot/zaraz?type=dev
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zaraz",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Cheap way to introduce short async delay.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Damian Krzeminski",
|
|
7
7
|
"email": "pirxpilot@furkot.com",
|
|
8
8
|
"url": "https://pirxpilot.me"
|
|
9
9
|
},
|
|
10
|
-
"repository":
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/pirxpilot/zaraz.git"
|
|
13
|
+
},
|
|
11
14
|
"license": "MIT",
|
|
12
15
|
"keywords": [
|
|
13
16
|
"zaraz",
|
|
@@ -19,9 +22,7 @@
|
|
|
19
22
|
"debug": "*"
|
|
20
23
|
},
|
|
21
24
|
"devDependencies": {
|
|
22
|
-
"jshint": "~
|
|
23
|
-
"tap-dot": "~2",
|
|
24
|
-
"tape": "~4"
|
|
25
|
+
"@pirxpilot/jshint": "~3"
|
|
25
26
|
},
|
|
26
27
|
"scripts": {
|
|
27
28
|
"test": "make check"
|
|
@@ -30,4 +31,4 @@
|
|
|
30
31
|
"index.js",
|
|
31
32
|
"lib"
|
|
32
33
|
]
|
|
33
|
-
}
|
|
34
|
+
}
|
package/History.md
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
0.0.2 / 2019-04-01
|
|
3
|
-
==================
|
|
4
|
-
|
|
5
|
-
* add basic docs to README
|
|
6
|
-
* use spread operator to extract optional parameters
|
|
7
|
-
* use setInterval instead of setTimeout
|
|
8
|
-
* optimize queue merging
|
|
9
|
-
* replace mocha with tape
|
|
10
|
-
* rewrite in ES6
|
|
11
|
-
|
|
12
|
-
0.0.1 / 2017-11-12
|
|
13
|
-
==================
|
|
14
|
-
|
|
15
|
-
* implement MAX_ITEMS and ACTIVE restriction
|
|
16
|
-
* initial implementation
|