Skip to content

Commit 1aa1c75

Browse files
Merge pull request #107 from basics/beta
Beta
2 parents d485fa5 + 20afbf5 commit 1aa1c75

17 files changed

+213
-21
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ node_modules
44

55
/coverage
66
/.github_old
7+
/.cache

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"formulahendry.auto-rename-tag",
1515
"naumovs.color-highlight",
1616
"humao.rest-client",
17-
"techer.open-in-browser"
17+
"techer.open-in-browser",
18+
"vitest.explorer"
1819
]
1920
}

package-lock.json

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

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,16 @@
2121
"release": "npm run release --workspaces",
2222
"release:proof": "npx dotenv-cli -- npm run release -- -- --dry-run",
2323
"test": "vitest",
24+
"test:ui": "vitest --ui",
25+
"test:project:observables": "vitest --project packages/observables",
26+
"test:project:operators": "vitest --project packages/operators",
27+
"test:project:playground": "vitest --project packages/playground",
2428
"coverage": "vitest run --coverage"
2529
},
2630
"workspaces": [
2731
"packages/operators",
28-
"packages/observables"
32+
"packages/observables",
33+
"packages/playground"
2934
],
3035
"devDependencies": {
3136
"@commitlint/config-conventional": "19.6.0",
@@ -36,21 +41,22 @@
3641
"@semantic-release/npm": "12.0.1",
3742
"@semantic-release/release-notes-generator": "14.0.1",
3843
"@vitest/coverage-v8": "2.1.5",
44+
"@vitest/eslint-plugin": "1.1.10",
45+
"@vitest/ui": "^2.1.5",
3946
"commitlint": "19.6.0",
4047
"eslint": "9.15.0",
4148
"eslint-config-prettier": "9.1.0",
4249
"eslint-plugin-no-secrets": "1.1.2",
4350
"eslint-plugin-perfectionist": "4.0.3",
4451
"eslint-plugin-prettier": "5.2.1",
4552
"eslint-plugin-security": "3.0.1",
46-
"@vitest/eslint-plugin": "1.1.10",
4753
"fetch-mock": "12.2.0",
4854
"happy-dom": "15.11.6",
4955
"husky": "9.1.7",
5056
"lint-staged": "15.2.10",
5157
"prettier": "3.3.3",
5258
"semantic-release": "24.2.0",
5359
"semantic-release-monorepo": "8.0.2",
54-
"vitest": "2.1.5"
60+
"vitest": "^2.1.5"
5561
}
5662
}

packages/observables/CHANGELOG.md

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

3+
# [@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)
4+
5+
6+
### Bug Fixes
7+
8+
* **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe))
39

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

packages/observables/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/observables",
3-
"version": "1.0.7",
3+
"version": "1.0.8-beta.1",
44
"description": "rxjs observables",
55
"license": "MIT",
66
"contributors": [

packages/observables/vitest.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import { defineProject } from 'vitest/config';
22

33
export default defineProject({
4+
cacheDir: '../.cache/vitest-observables',
45
test: {
6+
cacheDir: '../.cache/vitest',
7+
setupFiles: ['../../setup.js'],
58
environment: 'happy-dom'
69
}
710
});

packages/operators/CHANGELOG.md

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

3-
# [@rxjs-collection/operators-v1.1.0](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.13...@rxjs-collection/operators-v1.1.0) (2024-11-28)
3+
# [@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)
44

55

6-
### Features
6+
### Bug Fixes
77

8-
* **playground:** added playground ([d2a84ff](https://github.com/basics/rxjs-collection/commit/d2a84ffd4685a354a073ce1b888869ba13adb505))
8+
* **vitest:** better config ([7df804a](https://github.com/basics/rxjs-collection/commit/7df804acd9df3b0013dcc5b92a285dcf352a843a))
9+
* **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe))
10+
11+
# [@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)
12+
13+
14+
### Bug Fixes
15+
16+
* **vitest:** better config ([7df804a](https://github.com/basics/rxjs-collection/commit/7df804acd9df3b0013dcc5b92a285dcf352a843a))
17+
* **vitest:** updated config - project separated test calls ([9b69b72](https://github.com/basics/rxjs-collection/commit/9b69b72393dd8d61e6f435c7294086132ca64afe))
918

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

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

packages/operators/vitest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import { defineProject } from 'vitest/config';
22

33
export default defineProject({
4+
cacheDir: '../.cache/vitest-operators',
45
test: {
6+
cacheDir: '../.cache/vitest',
57
setupFiles: ['../../setup.js'],
68
testTimeout: 10000,
79
environment: 'happy-dom'

0 commit comments

Comments
 (0)