diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..0dfac7c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,52 @@ +{ + "breadcrumbs.enabled": true, + "editor.bracketPairColorization.enabled": true, + "editor.cursorBlinking": "phase", + "editor.formatOnPaste": true, + "editor.minimap.renderCharacters": false, + "editor.minimap.maxColumn": 200, + "editor.minimap.showSlider": "always", + "editor.smoothScrolling": true, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit" + }, + "git.pruneOnFetch": true, + "editor.formatOnSave": true, + "eslint.validate": [ + "javascript", + "javascriptreact", + "vue", + "html" + ], + "files.exclude": { + "docs/": true, + ".scannerwork/": true, + "node_modules/": false, + "**/.idea": true, + "**/*.iml": true, + "**/out": true, + "**/gen": true, + "**/logs": true, + "**/*.log": true, + "**/.DS_Store": true, + ".*": false + }, + "files.associations": { + ".branchlintrc": "json", + ".huskyrc": "json", + ".lintstagedrc": "json", + ".postcssrc": "json", + ".releaserc": "json", + ".*ignore": "ignore", + "*.js.tmpl": "javascript", + "*.html.tmpl": "html" + }, + "javascript.format.enable": false, + "javascript.suggest.paths": false, + "path-intellisense.mappings": { + "@operators/*": "${workspaceRoot}/packages/operators/src" + }, + "window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}", + "workbench.settings.enableNaturalLanguageSearch": false, + "task.autoDetect": "off" +} diff --git a/README.md b/README.md index fef472f..5132fa1 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ - [x] run debugger mode for custom opened test file - [ ] ... - [x] added extension recommendation (will be installed, when project will be opened by workspace file) - - [x] evaluate SonarLint (https://docs.sonarsource.com/sonarcloud/improving/sonarlint/) + - [ ] evaluate SonarLint (https://docs.sonarsource.com/sonarcloud/improving/sonarlint/) - [ ] ... - node - [x] node version manager support (nvmrc) diff --git a/packages/observables/.releaserc b/packages/observables/.releaserc index f6dda8d..a90e7ef 100644 --- a/packages/observables/.releaserc +++ b/packages/observables/.releaserc @@ -39,8 +39,16 @@ } ], [ - "@semantic-release/github" + "@semantic-release/github", + { + "assets": [ + { + "path": "./packages/observables/", + "label": "observables" + } + ] + } ] ], "extends": "semantic-release-monorepo" -} \ No newline at end of file +} diff --git a/packages/observables/CHANGELOG.md b/packages/observables/CHANGELOG.md index 2b0c365..f57f54f 100644 --- a/packages/observables/CHANGELOG.md +++ b/packages/observables/CHANGELOG.md @@ -1,5 +1,40 @@ # Project Changelog +# [@rxjs-collection/observables-v1.0.3-beta.5](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.3-beta.4...@rxjs-collection/observables-v1.0.3-beta.5) (2024-09-20) + + +### Bug Fixes + +* **test:** test ([7fe8f10](https://github.com/basics/rxjs-collection/commit/7fe8f109c227b8c29fda4710cdb5713e0e1a041f)) + +# [@rxjs-collection/observables-v1.0.3-beta.4](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.3-beta.3...@rxjs-collection/observables-v1.0.3-beta.4) (2024-09-20) + + +### Bug Fixes + +* **test:** test ([e63da46](https://github.com/basics/rxjs-collection/commit/e63da46be81fe6e1109ead1aa41155ec73fc96db)) + +# [@rxjs-collection/observables-v1.0.3-beta.3](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.3-beta.2...@rxjs-collection/observables-v1.0.3-beta.3) (2024-09-20) + + +### Bug Fixes + +* **test:** test ([fdc55ef](https://github.com/basics/rxjs-collection/commit/fdc55ef1b142d98bc58f8c7808354e00b02cd79c)) + +# [@rxjs-collection/observables-v1.0.3-beta.2](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.3-beta.1...@rxjs-collection/observables-v1.0.3-beta.2) (2024-09-20) + + +### Bug Fixes + +* **release:** reduced artifact of each package ([b7b00cd](https://github.com/basics/rxjs-collection/commit/b7b00cd92b5f6d009a01fe00d8a9d72b9cb8d1be)) + +# [@rxjs-collection/observables-v1.0.3-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.2...@rxjs-collection/observables-v1.0.3-beta.1) (2024-09-19) + + +### Bug Fixes + +* **config:** update ([94101a4](https://github.com/basics/rxjs-collection/commit/94101a4c3b41b1b0d9c99bd8b98b8f8d8e67b1b2)) + # [@rxjs-collection/observables-v1.0.2](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/observables-v1.0.1...@rxjs-collection/observables-v1.0.2) (2024-09-18) diff --git a/packages/observables/package.json b/packages/observables/package.json index d3f927e..40d4fc3 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -1,6 +1,6 @@ { "name": "@rxjs-collection/observables", - "version": "1.0.2", + "version": "1.0.3-beta.5", "description": "rxjs observables", "license": "MIT", "contributors": [ @@ -11,10 +11,14 @@ ], "type": "module", "main": "index.js", + "files": [ + "./src/*" + ], "scripts": { "release": "npx semantic-release" }, "dependencies": { + "@rxjs-collection/operators": "*", "rxjs": "7.8.1" } } diff --git a/packages/operators/.releaserc b/packages/operators/.releaserc index f6dda8d..fc40687 100644 --- a/packages/operators/.releaserc +++ b/packages/operators/.releaserc @@ -43,4 +43,4 @@ ] ], "extends": "semantic-release-monorepo" -} \ No newline at end of file +} diff --git a/packages/operators/CHANGELOG.md b/packages/operators/CHANGELOG.md index b56dab8..7f4d5fd 100644 --- a/packages/operators/CHANGELOG.md +++ b/packages/operators/CHANGELOG.md @@ -1,5 +1,33 @@ # Project Changelog +# [@rxjs-collection/operators-v1.0.2-beta.4](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.2-beta.3...@rxjs-collection/operators-v1.0.2-beta.4) (2024-09-20) + + +### Bug Fixes + +* **test:** test ([e63da46](https://github.com/basics/rxjs-collection/commit/e63da46be81fe6e1109ead1aa41155ec73fc96db)) + +# [@rxjs-collection/operators-v1.0.2-beta.3](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.2-beta.2...@rxjs-collection/operators-v1.0.2-beta.3) (2024-09-20) + + +### Bug Fixes + +* **test:** test ([fdc55ef](https://github.com/basics/rxjs-collection/commit/fdc55ef1b142d98bc58f8c7808354e00b02cd79c)) + +# [@rxjs-collection/operators-v1.0.2-beta.2](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.2-beta.1...@rxjs-collection/operators-v1.0.2-beta.2) (2024-09-20) + + +### Bug Fixes + +* **release:** reduced artifact of each package ([b7b00cd](https://github.com/basics/rxjs-collection/commit/b7b00cd92b5f6d009a01fe00d8a9d72b9cb8d1be)) + +# [@rxjs-collection/operators-v1.0.2-beta.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.1...@rxjs-collection/operators-v1.0.2-beta.1) (2024-09-19) + + +### Bug Fixes + +* **config:** update ([94101a4](https://github.com/basics/rxjs-collection/commit/94101a4c3b41b1b0d9c99bd8b98b8f8d8e67b1b2)) + # [@rxjs-collection/operators-v1.0.1](https://github.com/basics/rxjs-collection/compare/@rxjs-collection/operators-v1.0.0...@rxjs-collection/operators-v1.0.1) (2024-09-18) diff --git a/packages/operators/package.json b/packages/operators/package.json index 8200232..c70815d 100644 --- a/packages/operators/package.json +++ b/packages/operators/package.json @@ -1,6 +1,6 @@ { "name": "@rxjs-collection/operators", - "version": "1.0.1", + "version": "1.0.2-beta.4", "description": "rxjs operators", "license": "MIT", "contributors": [ @@ -11,10 +11,14 @@ ], "type": "module", "main": "index.js", + "files": [ + "./src/*" + ], "scripts": { "release": "npx semantic-release" }, "dependencies": { + "@rxjs-collection/observables": "*", "rxjs": "7.8.1" } } diff --git a/rxjs-collection.code-workspace b/rxjs-collection.code-workspace index 33088d5..c7223d8 100644 --- a/rxjs-collection.code-workspace +++ b/rxjs-collection.code-workspace @@ -3,56 +3,5 @@ { "path": "." } - ], - "settings": { - "breadcrumbs.enabled": true, - "editor.bracketPairColorization.enabled": true, - "editor.cursorBlinking": "phase", - "editor.formatOnPaste": true, - "editor.minimap.renderCharacters": false, - "editor.minimap.maxColumn": 200, - "editor.minimap.showSlider": "always", - "editor.smoothScrolling": true, - "editor.codeActionsOnSave": { - "source.fixAll.eslint": "explicit" - }, - "editor.formatOnSave": true, - "eslint.validate": [ - "javascript", - "javascriptreact", - "vue", - "html" - ], - "files.exclude": { - "docs/": true, - ".scannerwork/": true, - "node_modules/": false, - "**/.idea": true, - "**/*.iml": true, - "**/out": true, - "**/gen": true, - "**/logs": true, - "**/*.log": true, - "**/.DS_Store": true, - ".*": false - }, - "files.associations": { - ".branchlintrc": "json", - ".huskyrc": "json", - ".lintstagedrc": "json", - ".postcssrc": "json", - ".releaserc": "json", - ".*ignore": "ignore", - "*.js.tmpl": "javascript", - "*.html.tmpl": "html" - }, - "javascript.format.enable": false, - "javascript.suggest.paths": false, - "path-intellisense.mappings": { - "@operators/*": "${workspaceRoot}/packages/operators/src" - }, - "window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}", - "workbench.settings.enableNaturalLanguageSearch": false, - "task.autoDetect": "off" - } -} \ No newline at end of file + ] +}