Skip to content
Merged

Beta #107

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules

/coverage
/.github_old
/.cache
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"formulahendry.auto-rename-tag",
"naumovs.color-highlight",
"humao.rest-client",
"techer.open-in-browser"
"techer.open-in-browser",
"vitest.explorer"
]
}
128 changes: 125 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,16 @@
"release": "npm run release --workspaces",
"release:proof": "npx dotenv-cli -- npm run release -- -- --dry-run",
"test": "vitest",
"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": [
"packages/operators",
"packages/observables"
"packages/observables",
"packages/playground"
],
"devDependencies": {
"@commitlint/config-conventional": "19.6.0",
Expand All @@ -36,21 +41,22 @@
"@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",
"eslint-plugin-no-secrets": "1.1.2",
"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",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"semantic-release-monorepo": "8.0.2",
"vitest": "2.1.5"
"vitest": "^2.1.5"
}
}
6 changes: 6 additions & 0 deletions packages/observables/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion packages/observables/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rxjs-collection/observables",
"version": "1.0.7",
"version": "1.0.8-beta.1",
"description": "rxjs observables",
"license": "MIT",
"contributors": [
Expand Down
3 changes: 3 additions & 0 deletions packages/observables/vitest.config.js
Original file line number Diff line number Diff line change
@@ -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'
}
});
15 changes: 12 additions & 3 deletions packages/operators/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Project Changelog

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


### Features
### Bug Fixes

* **playground:** added playground ([d2a84ff](https://github.com/basics/rxjs-collection/commit/d2a84ffd4685a354a073ce1b888869ba13adb505))
* **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)


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

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.1.0",
"version": "1.1.1-beta.1",
"description": "rxjs operators",
"license": "MIT",
"contributors": [
Expand Down
2 changes: 2 additions & 0 deletions packages/operators/vitest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { defineProject } from 'vitest/config';

export default defineProject({
cacheDir: '../.cache/vitest-operators',
test: {
cacheDir: '../.cache/vitest',
setupFiles: ['../../setup.js'],
testTimeout: 10000,
environment: 'happy-dom'
Expand Down
13 changes: 13 additions & 0 deletions packages/playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
8 changes: 6 additions & 2 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rxjs-collection/playground",
"version": "1.0.12",
"version": "1.0.0-beta.1",
"description": "rxjs playground",
"license": "MIT",
"contributors": [
Expand All @@ -15,7 +15,8 @@
"./src/*"
],
"scripts": {
"release": "npx semantic-release"
"release": "npx semantic-release",
"dev": "npx vitest"
},
"imports": {
"#observables/*": "../observables/src/*",
Expand All @@ -26,5 +27,8 @@
"@rxjs-collection/observables": "*",
"@rxjs-collection/operators": "*",
"rxjs": "7.8.1"
},
"devDependencies": {
"node-fetch": "3.3.2"
}
}
Loading