Skip to content

Commit 2df3972

Browse files
Merge branch 'beta' into feature/optimization
2 parents 7df804a + 244685f commit 2df3972

File tree

5 files changed

+57
-4
lines changed

5 files changed

+57
-4
lines changed

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.1.0-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.13...@rxjs-collection/operators-v1.1.0-beta.1) (2024-11-28)
4+
5+
6+
### Features
7+
8+
* **playground:** added playground ([d2a84ff](https://github.com/basics/rxjs-collection/commit/d2a84ffd4685a354a073ce1b888869ba13adb505))
9+
310
# [@rxjs-collection/operators-v1.0.13](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.12...@rxjs-collection/operators-v1.0.13) (2024-11-27)
411

512

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.13",
3+
"version": "1.1.0-beta.1",
44
"description": "rxjs operators",
55
"license": "MIT",
66
"contributors": [

packages/operators/src/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
export { autoPagination } from './request/autoPagination';
2-
export { cache } from './request/cache';
2+
export { cache } from './cache';
33
export { concurrentRequest } from './request/concurrentRequest';
44
export { lazyPagination } from './request/lazyPagination';
55
export { polling } from './request/polling';
6-
export { request, requestJSON, requestText, requestBlob } from './request/request';
6+
export { request, requestJSON, requestText, requestBlob } from './request';
77
export {
88
resolve,
99
resolveJSON,
1010
resolveText,
1111
resolveBlob,
1212
distinctUntilResponseChanged
13-
} from './request/response';
13+
} from './response';
1414
export { retryWhenRequestError } from './retry';

packages/playground/.releaserc

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"branches": [
3+
{
4+
"name": "main",
5+
"channel": "latest",
6+
"prerelease": false
7+
},
8+
{
9+
"name": "beta",
10+
"prerelease": true
11+
}
12+
],
13+
"plugins": [
14+
"@semantic-release/commit-analyzer",
15+
"@semantic-release/release-notes-generator",
16+
[
17+
"@semantic-release/changelog",
18+
{
19+
"changelogFile": "CHANGELOG.md",
20+
"changelogTitle": "# Project Changelog"
21+
}
22+
],
23+
[
24+
"@semantic-release/npm",
25+
{
26+
"npmPublish": false
27+
}
28+
],
29+
[
30+
"@semantic-release/git",
31+
{
32+
"assets": [
33+
"CHANGELOG.md",
34+
"CHANGELOG_PROJECT.md",
35+
"package.json",
36+
"package-lock.json",
37+
"npm-shrinkwrap.json"
38+
]
39+
}
40+
],
41+
[
42+
"@semantic-release/github"
43+
]
44+
],
45+
"extends": "semantic-release-monorepo"
46+
}

packages/playground/src/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)