rxjs-poll 1.0.4 → 1.0.5
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 +1 -0
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<a href="https://www.npmjs.com/package/rxjs-poll" target="_blank" rel="noopener noreferrer nofollow"><img alt="NPM Version" src="https://img.shields.io/npm/v/rxjs-poll"></a>
|
|
4
4
|
<a href="https://bundlephobia.com/package/rxjs-poll@latest" target="_blank" rel="noopener noreferrer nofollow"><img alt="NPM Bundle Size" src="https://img.shields.io/bundlephobia/minzip/rxjs-poll?label=gzip"></a>
|
|
5
|
+
<a href="https://github.com/mmustra/rxjs-poll/tree/main/tests" target="_blank" rel="noopener noreferrer nofollow"><img alt="Codecov" src="https://img.shields.io/codecov/c/gh/mmustra/rxjs-poll?token=H9R97BLFQI"></a>
|
|
5
6
|
<a href="https://github.com/mmustra/rxjs-poll/issues" target="_blank" rel="noopener noreferrer nofollow"><img alt="GitHub Issues or Pull Requests" src="https://img.shields.io/github/issues/mmustra/rxjs-poll"></a>
|
|
6
7
|
|
|
7
8
|
Library provides RxJS operator that can do polling on any completed source.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rxjs-poll",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "RxJS operator for polling",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rxjs",
|
|
@@ -26,17 +26,19 @@
|
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"release": "release-it",
|
|
29
|
-
"build": "npm run util:clean && npm run build:esm && npm run build:cjs && npm run build:types && npm run util:packageJson",
|
|
29
|
+
"build": "npm run util:clean:dist && npm run build:esm && npm run build:cjs && npm run build:types && npm run util:packageJson",
|
|
30
30
|
"build:esm": "tsc -p ./ts-configs/tsconfig.esm.json",
|
|
31
31
|
"build:cjs": "tsc -p ./ts-configs/tsconfig.cjs.json",
|
|
32
32
|
"build:types": "tsc -p ./ts-configs/tsconfig.types.json",
|
|
33
33
|
"prepare": "is-ci || husky",
|
|
34
34
|
"prepublishOnly": "npm run build",
|
|
35
35
|
"test": "jest --verbose",
|
|
36
|
+
"test:coverage": "npm run util:clean:coverage && npm run test -- --collect-coverage",
|
|
36
37
|
"lint": "eslint ./src ./tests --ext .js,.ts",
|
|
37
38
|
"lint:fix": "npm run lint -- --fix",
|
|
38
39
|
"util:packageJson": "ts-node ./scripts/generate-package-json.ts",
|
|
39
|
-
"util:clean": "fse remove ./dist",
|
|
40
|
+
"util:clean:dist": "fse remove ./dist",
|
|
41
|
+
"util:clean:coverage": "fse remove ./coverage",
|
|
40
42
|
"util:commitlint": "commitlint",
|
|
41
43
|
"util:lint-staged": "lint-staged"
|
|
42
44
|
},
|