Skip to content

Commit

Permalink
Merge pull request #52 from basics/beta
Browse files Browse the repository at this point in the history
Beta
  • Loading branch information
StephanGerbeth authored Sep 20, 2024
2 parents d6cadbe + 40f47da commit 7d86067
Show file tree
Hide file tree
Showing 9 changed files with 139 additions and 59 deletions.
52 changes: 52 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -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"
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 10 additions & 2 deletions packages/observables/.releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,16 @@
}
],
[
"@semantic-release/github"
"@semantic-release/github",
{
"assets": [
{
"path": "./packages/observables/",
"label": "observables"
}
]
}
]
],
"extends": "semantic-release-monorepo"
}
}
35 changes: 35 additions & 0 deletions packages/observables/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
6 changes: 5 additions & 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.2",
"version": "1.0.3-beta.5",
"description": "rxjs observables",
"license": "MIT",
"contributors": [
Expand All @@ -11,10 +11,14 @@
],
"type": "module",
"main": "index.js",
"files": [
"./src/*"
],
"scripts": {
"release": "npx semantic-release"
},
"dependencies": {
"@rxjs-collection/operators": "*",
"rxjs": "7.8.1"
}
}
2 changes: 1 addition & 1 deletion packages/operators/.releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@
]
],
"extends": "semantic-release-monorepo"
}
}
28 changes: 28 additions & 0 deletions packages/operators/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
6 changes: 5 additions & 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.0.1",
"version": "1.0.2-beta.4",
"description": "rxjs operators",
"license": "MIT",
"contributors": [
Expand All @@ -11,10 +11,14 @@
],
"type": "module",
"main": "index.js",
"files": [
"./src/*"
],
"scripts": {
"release": "npx semantic-release"
},
"dependencies": {
"@rxjs-collection/observables": "*",
"rxjs": "7.8.1"
}
}
55 changes: 2 additions & 53 deletions rxjs-collection.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
]
}

0 comments on commit 7d86067

Please sign in to comment.