Skip to content

Commit 293b651

Browse files
Merge pull request #77 from basics/feature/fetch-extended
Feature/fetch extended
2 parents f0af6f4 + bd3c5ef commit 293b651

34 files changed

+794
-265
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
88
// https://github.com/eslint-community/eslint-plugin-security
99
import eslintPluginSecurity from 'eslint-plugin-security';
1010
// https://github.com/vitest-dev/eslint-plugin-vitest
11-
import vitest from 'eslint-plugin-vitest';
11+
import vitest from '@vitest/eslint-plugin';
1212
import globals from 'globals';
1313

1414
import eslintIgnores from './eslint.ignores.js';

package-lock.json

Lines changed: 9 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
"eslint-plugin-perfectionist": "3.9.1",
4444
"eslint-plugin-prettier": "5.2.1",
4545
"eslint-plugin-security": "3.0.1",
46-
"@vitest/eslint-plugin": "1.0.1",
46+
"@vitest/eslint-plugin": "1.1.10",
4747
"fetch-mock": "12.1.0",
48-
"happy-dom": "15.10.2",
48+
"happy-dom": "15.11.6",
4949
"husky": "9.1.6",
5050
"lint-staged": "15.2.10",
5151
"prettier": "3.3.3",

packages/operators/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Project Changelog
22

3+
# [@rxjs-collection/operators-v1.0.5](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.4...@rxjs-collection/operators-v1.0.5) (2024-10-25)
4+
5+
6+
### Bug Fixes
7+
8+
* **fetch:** implemented sonar optimizations ([9063f6e](https://github.com/basics/rxjs-collection/commit/9063f6e9fc85f5d544af4e6d92d1d60e32cccf94))
9+
310
# [@rxjs-collection/operators-v1.0.5-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.4...@rxjs-collection/operators-v1.0.5-beta.1) (2024-10-25)
411

512

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
const test = await fetch('https://dummyjson.com/products?limit=10&skip=0&select=title,price');
2+
console.log(test);
3+
const a = new Blob([test]);
4+
console.log(a);
5+
6+
const fr = new FileReader();
7+
8+
fr.onload = function () {
9+
console.log(JSON.parse(this.result));
10+
};
11+
12+
fr.readAsText(a);

packages/operators/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rxjs-collection/operators",
3-
"version": "1.0.5-beta.1",
3+
"version": "1.0.5",
44
"description": "rxjs operators",
55
"license": "MIT",
66
"contributors": [

packages/operators/src/fetch/autoPagination.test.js

Lines changed: 0 additions & 42 deletions
This file was deleted.

packages/operators/src/fetch/concurrentDownload.test.js

Lines changed: 0 additions & 40 deletions
This file was deleted.

packages/operators/src/fetch/lazyPagination.js

Lines changed: 0 additions & 15 deletions
This file was deleted.

packages/operators/src/fetch/lazyPagination.test.js

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)