Skip to content

Commit 6dffc89

Browse files
Merge pull request #104 from basics/beta
Beta
2 parents 749d027 + 244685f commit 6dffc89

File tree

9 files changed

+106
-6
lines changed

9 files changed

+106
-6
lines changed

package-lock.json

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

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/package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "@rxjs-collection/playground",
3+
"version": "1.0.12",
4+
"description": "rxjs playground",
5+
"license": "MIT",
6+
"contributors": [
7+
{
8+
"name": "Stephan Gerbeth",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"type": "module",
13+
"main": "src/index.js",
14+
"files": [
15+
"./src/*"
16+
],
17+
"scripts": {
18+
"release": "npx semantic-release"
19+
},
20+
"imports": {
21+
"#observables/*": "../observables/src/*",
22+
"#operators/*": "../operators/src/*",
23+
"#mocks/*": "../mocks/*"
24+
},
25+
"dependencies": {
26+
"@rxjs-collection/observables": "*",
27+
"@rxjs-collection/operators": "*",
28+
"rxjs": "7.8.1"
29+
}
30+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { from } from 'rxjs';
2+
import { describe, test } from 'vitest';
3+
4+
describe('playground stephan', () => {
5+
test('basics', () => {
6+
from([1, 2, 3]).subscribe(e => console.log(e));
7+
});
8+
});

packages/playground/src/index.js

Whitespace-only changes.

packages/playground/vitest.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { defineProject } from 'vitest/config';
2+
3+
export default defineProject({
4+
test: {
5+
setupFiles: ['../../setup.js'],
6+
testTimeout: 10000,
7+
environment: 'happy-dom'
8+
}
9+
});

0 commit comments

Comments
 (0)