From 9b69b72393dd8d61e6f435c7294086132ca64afe Mon Sep 17 00:00:00 2001 From: StephanGerbeth Date: Thu, 28 Nov 2024 21:32:09 +0100 Subject: [PATCH 1/7] fix(vitest): updated config - project separated test calls --- .cache/vitest/results.json | 1 + package.json | 6 +++- packages/observables/vitest.config.js | 3 ++ packages/operators/vitest.config.js | 4 ++- packages/playground/package.json | 34 ++++++++++++++++++++++ packages/playground/src/demo/index.test.js | 14 +++++++++ packages/playground/vitest.config.js | 11 +++++++ vitest.config.js | 8 +++-- vitest.workspace.js | 19 +++++++++++- 9 files changed, 94 insertions(+), 6 deletions(-) create mode 100644 .cache/vitest/results.json create mode 100644 packages/playground/package.json create mode 100644 packages/playground/src/demo/index.test.js create mode 100644 packages/playground/vitest.config.js diff --git a/.cache/vitest/results.json b/.cache/vitest/results.json new file mode 100644 index 0000000..a8fca10 --- /dev/null +++ b/.cache/vitest/results.json @@ -0,0 +1 @@ +{"version":"2.1.5","results":[["packages/playground:packages/playground/src/demo/index.test.js",{"duration":0,"failed":false}]]} \ No newline at end of file diff --git a/package.json b/package.json index 926896f..97974e0 100644 --- a/package.json +++ b/package.json @@ -21,11 +21,15 @@ "release": "npm run release --workspaces", "release:proof": "npx dotenv-cli -- npm run release -- -- --dry-run", "test": "vitest", + "test:observables": "vitest --project packages/observables", + "test:operators": "vitest --project packages/operators", + "test:playground": "vitest --project packages/playground", "coverage": "vitest run --coverage" }, "workspaces": [ "packages/operators", - "packages/observables" + "packages/observables", + "packages/playground" ], "devDependencies": { "@commitlint/config-conventional": "19.6.0", diff --git a/packages/observables/vitest.config.js b/packages/observables/vitest.config.js index e3fd592..e551e50 100644 --- a/packages/observables/vitest.config.js +++ b/packages/observables/vitest.config.js @@ -1,7 +1,10 @@ import { defineProject } from 'vitest/config'; export default defineProject({ + cacheDir: '../.cache/vitest-observables', test: { + cacheDir: '../.cache/vitest', + setupFiles: ['../../setup.js'], environment: 'happy-dom' } }); diff --git a/packages/operators/vitest.config.js b/packages/operators/vitest.config.js index 42a246b..675d747 100644 --- a/packages/operators/vitest.config.js +++ b/packages/operators/vitest.config.js @@ -1,7 +1,9 @@ -import { defineProject } from 'vitest/config'; +import { defineProject, configDefaults } from 'vitest/config'; export default defineProject({ + cacheDir: '../.cache/vitest-operators', test: { + cacheDir: '../.cache/vitest', setupFiles: ['../../setup.js'], testTimeout: 10000, environment: 'happy-dom' diff --git a/packages/playground/package.json b/packages/playground/package.json new file mode 100644 index 0000000..b50a2d1 --- /dev/null +++ b/packages/playground/package.json @@ -0,0 +1,34 @@ +{ + "name": "@rxjs-collection/playground", + "version": "1.0.12", + "description": "rxjs playground", + "license": "MIT", + "contributors": [ + { + "name": "Stephan Gerbeth", + "email": "stephan.gerbeth@gmail.com" + } + ], + "type": "module", + "main": "src/index.js", + "files": [ + "./src/*" + ], + "scripts": { + "release": "npx semantic-release", + "dev": "npx vitest" + }, + "imports": { + "#observables/*": "../observables/src/*", + "#operators/*": "../operators/src/*", + "#mocks/*": "../mocks/*" + }, + "dependencies": { + "@rxjs-collection/observables": "*", + "@rxjs-collection/operators": "*", + "rxjs": "7.8.1" + }, + "devDependencies": { + "node-fetch": "3.3.2" + } +} diff --git a/packages/playground/src/demo/index.test.js b/packages/playground/src/demo/index.test.js new file mode 100644 index 0000000..6d32614 --- /dev/null +++ b/packages/playground/src/demo/index.test.js @@ -0,0 +1,14 @@ +import { delay, from } from 'rxjs'; +import { describe, test } from 'vitest'; + +describe('playground stephan', () => { + test('basics', async () => { + const s = from([1, 2, 3, 4, 5, 6, 7, 8, 9]) + .pipe(delay(4000)) + .subscribe(e => { + console.log(e); + // s.unsubscribe(); + }); + await new Promise(done => setTimeout(done, 5000)); + }); +}); diff --git a/packages/playground/vitest.config.js b/packages/playground/vitest.config.js new file mode 100644 index 0000000..20e7167 --- /dev/null +++ b/packages/playground/vitest.config.js @@ -0,0 +1,11 @@ +import { defineProject } from 'vitest/config'; + +export default defineProject({ + cacheDir: '../.cache/vitest-playground', + test: { + cacheDir: '../.cache/vitest', + setupFiles: ['../../setup.js'], + testTimeout: 10000, + environment: 'happy-dom' + } +}); diff --git a/vitest.config.js b/vitest.config.js index 235745c..fba5d6a 100644 --- a/vitest.config.js +++ b/vitest.config.js @@ -2,6 +2,8 @@ import { defineConfig, configDefaults } from 'vitest/config'; export default defineConfig({ test: { + cacheDir: './.cache/vitest', + coverage: { provider: 'v8', reporter: ['text', 'json', 'lcov', 'html'], @@ -11,10 +13,10 @@ export default defineConfig({ 'commitlint.config.js', 'eslint.ignores.js', 'vitest.workspace.js', - './packages/observables/src/index.js', - './packages/operators/src/index.js' + './packages/mocks/', + './packages/*/src/index.js' ] }, - include: ['**/packages/**/*.test.js'] + include: ['./packages/**/*.test.js'] } }); diff --git a/vitest.workspace.js b/vitest.workspace.js index f62b807..cc011cb 100644 --- a/vitest.workspace.js +++ b/vitest.workspace.js @@ -1 +1,18 @@ -export default ['packages/**/vitest.config.js']; +// export default ['packages/**/vitest.config.js']; + +import { readFileSync } from 'node:fs'; +import { defineWorkspace } from 'vitest/config'; + +const pkg = JSON.parse(readFileSync('./package.json', 'utf-8')); + +export default defineWorkspace([ + ...pkg.workspaces + .filter(name => !['scripts'].includes(name)) + .map(name => ({ + extends: `./${name}/vitest.config.js`, + test: { + root: `./${name}`, + name + } + })) +]); From 7df804acd9df3b0013dcc5b92a285dcf352a843a Mon Sep 17 00:00:00 2001 From: StephanGerbeth Date: Thu, 28 Nov 2024 22:26:01 +0100 Subject: [PATCH 2/7] fix(vitest): better config --- .cache/vitest/results.json | 1 - .gitignore | 1 + .vscode/extensions.json | 3 +- package-lock.json | 132 ++++++++++++++++++++++++++-- package.json | 12 +-- packages/operators/vitest.config.js | 2 +- vitest.config.js | 1 - 7 files changed, 138 insertions(+), 14 deletions(-) delete mode 100644 .cache/vitest/results.json diff --git a/.cache/vitest/results.json b/.cache/vitest/results.json deleted file mode 100644 index a8fca10..0000000 --- a/.cache/vitest/results.json +++ /dev/null @@ -1 +0,0 @@ -{"version":"2.1.5","results":[["packages/playground:packages/playground/src/demo/index.test.js",{"duration":0,"failed":false}]]} \ No newline at end of file diff --git a/.gitignore b/.gitignore index 2545672..2d1e174 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ node_modules /coverage /.github_old +/.cache diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 1c5a9a0..032ed75 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -14,6 +14,7 @@ "formulahendry.auto-rename-tag", "naumovs.color-highlight", "humao.rest-client", - "techer.open-in-browser" + "techer.open-in-browser", + "vitest.explorer" ] } diff --git a/package-lock.json b/package-lock.json index 5a17c09..29f9217 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,7 +10,8 @@ "license": "MIT", "workspaces": [ "packages/operators", - "packages/observables" + "packages/observables", + "packages/playground" ], "devDependencies": { "@commitlint/config-conventional": "19.6.0", @@ -22,6 +23,7 @@ "@semantic-release/release-notes-generator": "14.0.1", "@vitest/coverage-v8": "2.1.5", "@vitest/eslint-plugin": "1.1.10", + "@vitest/ui": "^2.1.5", "commitlint": "19.6.0", "eslint": "9.15.0", "eslint-config-prettier": "9.1.0", @@ -36,7 +38,7 @@ "prettier": "3.3.3", "semantic-release": "24.2.0", "semantic-release-monorepo": "8.0.2", - "vitest": "2.1.5" + "vitest": "^2.1.5" } }, "node_modules/@ampproject/remapping": { @@ -1518,6 +1520,12 @@ "node": ">=12" } }, + "node_modules/@polka/url": { + "version": "1.0.0-next.28", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", + "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==", + "dev": true + }, "node_modules/@rollup/rollup-android-arm-eabi": { "version": "4.24.0", "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz", @@ -1734,6 +1742,10 @@ "resolved": "packages/operators", "link": true }, + "node_modules/@rxjs-collection/playground": { + "resolved": "packages/playground", + "link": true + }, "node_modules/@sec-ant/readable-stream": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", @@ -2537,6 +2549,27 @@ "url": "https://opencollective.com/vitest" } }, + "node_modules/@vitest/ui": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@vitest/ui/-/ui-2.1.5.tgz", + "integrity": "sha512-ERgKkDMTfngrZip6VG5h8L9B5D0AH/4+bga4yR1UzGH7c2cxv3LWogw2Dvuwr9cP3/iKDHYys7kIFLDKpxORTg==", + "dev": true, + "dependencies": { + "@vitest/utils": "2.1.5", + "fflate": "^0.8.2", + "flatted": "^3.3.1", + "pathe": "^1.1.2", + "sirv": "^3.0.0", + "tinyglobby": "^0.2.10", + "tinyrainbow": "^1.2.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "vitest": "2.1.5" + } + }, "node_modules/@vitest/utils": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-2.1.5.tgz", @@ -4645,6 +4678,12 @@ "node": ">=18.11.0" } }, + "node_modules/fflate": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz", + "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==", + "dev": true + }, "node_modules/figures": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", @@ -6605,6 +6644,15 @@ "node": ">=16 || 14 >=14.17" } }, + "node_modules/mrmime": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -11083,6 +11131,20 @@ "node": ">=4" } }, + "node_modules/sirv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.0.tgz", + "integrity": "sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==", + "dev": true, + "dependencies": { + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/skin-tone": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", @@ -11650,6 +11712,45 @@ "dev": true, "license": "MIT" }, + "node_modules/tinyglobby": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz", + "integrity": "sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==", + "dev": true, + "dependencies": { + "fdir": "^6.4.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.2.tgz", + "integrity": "sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==", + "dev": true, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/tinypool": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.1.tgz", @@ -11727,6 +11828,15 @@ "node": ">=8.0" } }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/tough-cookie": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.0.0.tgz", @@ -12040,7 +12150,6 @@ "resolved": "https://registry.npmjs.org/vitest/-/vitest-2.1.5.tgz", "integrity": "sha512-P4ljsdpuzRTPI/kbND2sDZ4VmieerR2c9szEZpjc+98Z9ebvnXmM5+0tHEKqYZumXqlvnmfWsjeFOjXVriDG7A==", "dev": true, - "license": "MIT", "dependencies": { "@vitest/expect": "2.1.5", "@vitest/mocker": "2.1.5", @@ -12535,7 +12644,7 @@ }, "packages/observables": { "name": "@rxjs-collection/observables", - "version": "1.0.6", + "version": "1.0.7", "license": "MIT", "dependencies": { "@rxjs-collection/operators": "*", @@ -12544,7 +12653,7 @@ }, "packages/operators": { "name": "@rxjs-collection/operators", - "version": "1.0.10", + "version": "1.0.13", "license": "MIT", "dependencies": { "@rxjs-collection/observables": "*", @@ -12556,6 +12665,19 @@ "devDependencies": { "node-fetch": "3.3.2" } + }, + "packages/playground": { + "name": "@rxjs-collection/playground", + "version": "1.0.12", + "license": "MIT", + "dependencies": { + "@rxjs-collection/observables": "*", + "@rxjs-collection/operators": "*", + "rxjs": "7.8.1" + }, + "devDependencies": { + "node-fetch": "3.3.2" + } } } } diff --git a/package.json b/package.json index 97974e0..4076b22 100644 --- a/package.json +++ b/package.json @@ -21,9 +21,10 @@ "release": "npm run release --workspaces", "release:proof": "npx dotenv-cli -- npm run release -- -- --dry-run", "test": "vitest", - "test:observables": "vitest --project packages/observables", - "test:operators": "vitest --project packages/operators", - "test:playground": "vitest --project packages/playground", + "test:ui": "vitest --ui", + "test:project:observables": "vitest --project packages/observables", + "test:project:operators": "vitest --project packages/operators", + "test:project:playground": "vitest --project packages/playground", "coverage": "vitest run --coverage" }, "workspaces": [ @@ -40,6 +41,8 @@ "@semantic-release/npm": "12.0.1", "@semantic-release/release-notes-generator": "14.0.1", "@vitest/coverage-v8": "2.1.5", + "@vitest/eslint-plugin": "1.1.10", + "@vitest/ui": "^2.1.5", "commitlint": "19.6.0", "eslint": "9.15.0", "eslint-config-prettier": "9.1.0", @@ -47,7 +50,6 @@ "eslint-plugin-perfectionist": "4.0.3", "eslint-plugin-prettier": "5.2.1", "eslint-plugin-security": "3.0.1", - "@vitest/eslint-plugin": "1.1.10", "fetch-mock": "12.2.0", "happy-dom": "15.11.6", "husky": "9.1.7", @@ -55,6 +57,6 @@ "prettier": "3.3.3", "semantic-release": "24.2.0", "semantic-release-monorepo": "8.0.2", - "vitest": "2.1.5" + "vitest": "^2.1.5" } } diff --git a/packages/operators/vitest.config.js b/packages/operators/vitest.config.js index 675d747..1cd1f81 100644 --- a/packages/operators/vitest.config.js +++ b/packages/operators/vitest.config.js @@ -1,4 +1,4 @@ -import { defineProject, configDefaults } from 'vitest/config'; +import { defineProject } from 'vitest/config'; export default defineProject({ cacheDir: '../.cache/vitest-operators', diff --git a/vitest.config.js b/vitest.config.js index fba5d6a..c904251 100644 --- a/vitest.config.js +++ b/vitest.config.js @@ -3,7 +3,6 @@ import { defineConfig, configDefaults } from 'vitest/config'; export default defineConfig({ test: { cacheDir: './.cache/vitest', - coverage: { provider: 'v8', reporter: ['text', 'json', 'lcov', 'html'], From 5511ec7d80318492faeda262bb5468eaad6b12f0 Mon Sep 17 00:00:00 2001 From: StephanGerbeth Date: Thu, 28 Nov 2024 22:35:21 +0100 Subject: [PATCH 3/7] fix(sonarcloud): added exclusion --- sonar-project.properties | 1 + vitest.workspace.js | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/sonar-project.properties b/sonar-project.properties index 0413e11..c2e1a76 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -4,6 +4,7 @@ sonar.organization=basics sonar.cpd.exclusions=./packages/**/*.test.js sonar.javascript.lcov.reportPaths=./coverage/lcov.info sonar.test.inclusions=**/*.test.js +sonar.coverage.exclusions=vitest.workspace.js # This is the name and version displayed in the SonarCloud UI. #sonar.projectName=rxjs-collection diff --git a/vitest.workspace.js b/vitest.workspace.js index cc011cb..09dfadf 100644 --- a/vitest.workspace.js +++ b/vitest.workspace.js @@ -1,5 +1,3 @@ -// export default ['packages/**/vitest.config.js']; - import { readFileSync } from 'node:fs'; import { defineWorkspace } from 'vitest/config'; From e0c22a83c37359a5955e3ef619430717f14f67ef Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 28 Nov 2024 21:42:29 +0000 Subject: [PATCH 4/7] chore(release): 1.1.0-beta.2 [skip ci] # [@rxjs-collection/operators-v1.1.0-beta.2](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.1.0-beta.1...@rxjs-collection/operators-v1.1.0-beta.2) (2024-11-28) ### Bug Fixes * **vitest:** better config ([7df804a](https://github.com/basics/rxjs-collection/commit/7df804acd9df3b0013dcc5b92a285dcf352a843a)) * **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe)) --- packages/operators/CHANGELOG.md | 8 ++++++++ packages/operators/package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/operators/CHANGELOG.md b/packages/operators/CHANGELOG.md index 577c77b..869f96e 100644 --- a/packages/operators/CHANGELOG.md +++ b/packages/operators/CHANGELOG.md @@ -1,5 +1,13 @@ # Project Changelog +# [@rxjs-collection/operators-v1.1.0-beta.2](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.1.0-beta.1...@rxjs-collection/operators-v1.1.0-beta.2) (2024-11-28) + + +### Bug Fixes + +* **vitest:** better config ([7df804a](https://github.com/basics/rxjs-collection/commit/7df804acd9df3b0013dcc5b92a285dcf352a843a)) +* **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe)) + # [@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) diff --git a/packages/operators/package.json b/packages/operators/package.json index bfaaaad..239f835 100644 --- a/packages/operators/package.json +++ b/packages/operators/package.json @@ -1,6 +1,6 @@ { "name": "@rxjs-collection/operators", - "version": "1.1.0-beta.1", + "version": "1.1.0-beta.2", "description": "rxjs operators", "license": "MIT", "contributors": [ From aad79054167a60185a7ef08bea7279c9cc680348 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 28 Nov 2024 21:42:40 +0000 Subject: [PATCH 5/7] chore(release): 1.0.8-beta.1 [skip ci] # [@rxjs-collection/observables-v1.0.8-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.7...@rxjs-collection/observables-v1.0.8-beta.1) (2024-11-28) ### Bug Fixes * **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe)) --- packages/observables/CHANGELOG.md | 6 ++++++ packages/observables/package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/observables/CHANGELOG.md b/packages/observables/CHANGELOG.md index 2039194..abdcd4b 100644 --- a/packages/observables/CHANGELOG.md +++ b/packages/observables/CHANGELOG.md @@ -1,5 +1,11 @@ # Project Changelog +# [@rxjs-collection/observables-v1.0.8-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.7...@rxjs-collection/observables-v1.0.8-beta.1) (2024-11-28) + + +### Bug Fixes + +* **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe)) # [@rxjs-collection/observables-v1.0.7](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.6...@rxjs-collection/observables-v1.0.7) (2024-11-26) diff --git a/packages/observables/package.json b/packages/observables/package.json index 2e2bc65..53f4d8d 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -1,6 +1,6 @@ { "name": "@rxjs-collection/observables", - "version": "1.0.7", + "version": "1.0.8-beta.1", "description": "rxjs observables", "license": "MIT", "contributors": [ From 618c800e9c4bcdd597da95e0127180e991f86d03 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 28 Nov 2024 21:42:55 +0000 Subject: [PATCH 6/7] chore(release): 1.0.0-beta.1 [skip ci] # @rxjs-collection/playground-v1.0.0-beta.1 (2024-11-28) ### Bug Fixes * **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe)) ### Features * **playground:** added playground ([d2a84ff](https://github.com/basics/rxjs-collection/commit/d2a84ffd4685a354a073ce1b888869ba13adb505)) --- packages/playground/CHANGELOG.md | 13 +++++++++++++ packages/playground/package.json | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 packages/playground/CHANGELOG.md diff --git a/packages/playground/CHANGELOG.md b/packages/playground/CHANGELOG.md new file mode 100644 index 0000000..68d2d99 --- /dev/null +++ b/packages/playground/CHANGELOG.md @@ -0,0 +1,13 @@ +# Project Changelog + +# @rxjs-collection/playground-v1.0.0-beta.1 (2024-11-28) + + +### Bug Fixes + +* **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe)) + + +### Features + +* **playground:** added playground ([d2a84ff](https://github.com/basics/rxjs-collection/commit/d2a84ffd4685a354a073ce1b888869ba13adb505)) diff --git a/packages/playground/package.json b/packages/playground/package.json index b50a2d1..5b68a5c 100644 --- a/packages/playground/package.json +++ b/packages/playground/package.json @@ -1,6 +1,6 @@ { "name": "@rxjs-collection/playground", - "version": "1.0.12", + "version": "1.0.0-beta.1", "description": "rxjs playground", "license": "MIT", "contributors": [ From 20afbf5833c343f87b02d3640e20f9f562fdd3e7 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 28 Nov 2024 21:47:29 +0000 Subject: [PATCH 7/7] chore(release): 1.1.1-beta.1 [skip ci] # [@rxjs-collection/operators-v1.1.1-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.1.0...@rxjs-collection/operators-v1.1.1-beta.1) (2024-11-28) ### Bug Fixes * **vitest:** better config ([7df804a](https://github.com/basics/rxjs-collection/commit/7df804acd9df3b0013dcc5b92a285dcf352a843a)) * **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe)) --- packages/operators/CHANGELOG.md | 8 ++++++++ packages/operators/package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/operators/CHANGELOG.md b/packages/operators/CHANGELOG.md index 869f96e..cdcb43e 100644 --- a/packages/operators/CHANGELOG.md +++ b/packages/operators/CHANGELOG.md @@ -1,5 +1,13 @@ # Project Changelog +# [@rxjs-collection/operators-v1.1.1-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.1.0...@rxjs-collection/operators-v1.1.1-beta.1) (2024-11-28) + + +### Bug Fixes + +* **vitest:** better config ([7df804a](https://github.com/basics/rxjs-collection/commit/7df804acd9df3b0013dcc5b92a285dcf352a843a)) +* **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe)) + # [@rxjs-collection/operators-v1.1.0-beta.2](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.1.0-beta.1...@rxjs-collection/operators-v1.1.0-beta.2) (2024-11-28) diff --git a/packages/operators/package.json b/packages/operators/package.json index 239f835..cd80694 100644 --- a/packages/operators/package.json +++ b/packages/operators/package.json @@ -1,6 +1,6 @@ { "name": "@rxjs-collection/operators", - "version": "1.1.0-beta.2", + "version": "1.1.1-beta.1", "description": "rxjs operators", "license": "MIT", "contributors": [