Skip to content

Commit

Permalink
Merge branch 'beta' into feature/optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanGerbeth authored Nov 28, 2024
2 parents 7df804a + 244685f commit 2df3972
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 4 deletions.
7 changes: 7 additions & 0 deletions packages/operators/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Project Changelog

# [@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)


### Features

* **playground:** added playground ([d2a84ff](https://github.com/basics/rxjs-collection/commit/d2a84ffd4685a354a073ce1b888869ba13adb505))

# [@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)


Expand Down
2 changes: 1 addition & 1 deletion packages/operators/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rxjs-collection/operators",
"version": "1.0.13",
"version": "1.1.0-beta.1",
"description": "rxjs operators",
"license": "MIT",
"contributors": [
Expand Down
6 changes: 3 additions & 3 deletions packages/operators/src/index.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
export { autoPagination } from './request/autoPagination';
export { cache } from './request/cache';
export { cache } from './cache';
export { concurrentRequest } from './request/concurrentRequest';
export { lazyPagination } from './request/lazyPagination';
export { polling } from './request/polling';
export { request, requestJSON, requestText, requestBlob } from './request/request';
export { request, requestJSON, requestText, requestBlob } from './request';
export {
resolve,
resolveJSON,
resolveText,
resolveBlob,
distinctUntilResponseChanged
} from './request/response';
} from './response';
export { retryWhenRequestError } from './retry';
46 changes: 46 additions & 0 deletions packages/playground/.releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"branches": [
{
"name": "main",
"channel": "latest",
"prerelease": false
},
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# Project Changelog"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"CHANGELOG_PROJECT.md",
"package.json",
"package-lock.json",
"npm-shrinkwrap.json"
]
}
],
[
"@semantic-release/github"
]
],
"extends": "semantic-release-monorepo"
}
Empty file.

0 comments on commit 2df3972

Please sign in to comment.