Skip to content

Commit 7d86067

Browse files
Merge pull request #52 from basics/beta
Beta
2 parents d6cadbe + 40f47da commit 7d86067

File tree

9 files changed

+139
-59
lines changed

9 files changed

+139
-59
lines changed

.vscode/settings.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"breadcrumbs.enabled": true,
3+
"editor.bracketPairColorization.enabled": true,
4+
"editor.cursorBlinking": "phase",
5+
"editor.formatOnPaste": true,
6+
"editor.minimap.renderCharacters": false,
7+
"editor.minimap.maxColumn": 200,
8+
"editor.minimap.showSlider": "always",
9+
"editor.smoothScrolling": true,
10+
"editor.codeActionsOnSave": {
11+
"source.fixAll.eslint": "explicit"
12+
},
13+
"git.pruneOnFetch": true,
14+
"editor.formatOnSave": true,
15+
"eslint.validate": [
16+
"javascript",
17+
"javascriptreact",
18+
"vue",
19+
"html"
20+
],
21+
"files.exclude": {
22+
"docs/": true,
23+
".scannerwork/": true,
24+
"node_modules/": false,
25+
"**/.idea": true,
26+
"**/*.iml": true,
27+
"**/out": true,
28+
"**/gen": true,
29+
"**/logs": true,
30+
"**/*.log": true,
31+
"**/.DS_Store": true,
32+
".*": false
33+
},
34+
"files.associations": {
35+
".branchlintrc": "json",
36+
".huskyrc": "json",
37+
".lintstagedrc": "json",
38+
".postcssrc": "json",
39+
".releaserc": "json",
40+
".*ignore": "ignore",
41+
"*.js.tmpl": "javascript",
42+
"*.html.tmpl": "html"
43+
},
44+
"javascript.format.enable": false,
45+
"javascript.suggest.paths": false,
46+
"path-intellisense.mappings": {
47+
"@operators/*": "${workspaceRoot}/packages/operators/src"
48+
},
49+
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
50+
"workbench.settings.enableNaturalLanguageSearch": false,
51+
"task.autoDetect": "off"
52+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
- [x] run debugger mode for custom opened test file
3333
- [ ] ...
3434
- [x] added extension recommendation (will be installed, when project will be opened by workspace file)
35-
- [x] evaluate SonarLint (https://docs.sonarsource.com/sonarcloud/improving/sonarlint/)
35+
- [ ] evaluate SonarLint (https://docs.sonarsource.com/sonarcloud/improving/sonarlint/)
3636
- [ ] ...
3737
- node
3838
- [x] node version manager support (nvmrc)

packages/observables/.releaserc

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,16 @@
3939
}
4040
],
4141
[
42-
"@semantic-release/github"
42+
"@semantic-release/github",
43+
{
44+
"assets": [
45+
{
46+
"path": "./packages/observables/",
47+
"label": "observables"
48+
}
49+
]
50+
}
4351
]
4452
],
4553
"extends": "semantic-release-monorepo"
46-
}
54+
}

packages/observables/CHANGELOG.md

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

3+
# [@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)
4+
5+
6+
### Bug Fixes
7+
8+
* **test:** test ([7fe8f10](https://github.com/basics/rxjs-collection/commit/7fe8f109c227b8c29fda4710cdb5713e0e1a041f))
9+
10+
# [@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)
11+
12+
13+
### Bug Fixes
14+
15+
* **test:** test ([e63da46](https://github.com/basics/rxjs-collection/commit/e63da46be81fe6e1109ead1aa41155ec73fc96db))
16+
17+
# [@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)
18+
19+
20+
### Bug Fixes
21+
22+
* **test:** test ([fdc55ef](https://github.com/basics/rxjs-collection/commit/fdc55ef1b142d98bc58f8c7808354e00b02cd79c))
23+
24+
# [@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)
25+
26+
27+
### Bug Fixes
28+
29+
* **release:** reduced artifact of each package ([b7b00cd](https://github.com/basics/rxjs-collection/commit/b7b00cd92b5f6d009a01fe00d8a9d72b9cb8d1be))
30+
31+
# [@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)
32+
33+
34+
### Bug Fixes
35+
36+
* **config:** update ([94101a4](https://github.com/basics/rxjs-collection/commit/94101a4c3b41b1b0d9c99bd8b98b8f8d8e67b1b2))
37+
338
# [@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)
439

540

packages/observables/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rxjs-collection/observables",
3-
"version": "1.0.2",
3+
"version": "1.0.3-beta.5",
44
"description": "rxjs observables",
55
"license": "MIT",
66
"contributors": [
@@ -11,10 +11,14 @@
1111
],
1212
"type": "module",
1313
"main": "index.js",
14+
"files": [
15+
"./src/*"
16+
],
1417
"scripts": {
1518
"release": "npx semantic-release"
1619
},
1720
"dependencies": {
21+
"@rxjs-collection/operators": "*",
1822
"rxjs": "7.8.1"
1923
}
2024
}

packages/operators/.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@
4343
]
4444
],
4545
"extends": "semantic-release-monorepo"
46-
}
46+
}

packages/operators/CHANGELOG.md

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

3+
# [@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)
4+
5+
6+
### Bug Fixes
7+
8+
* **test:** test ([e63da46](https://github.com/basics/rxjs-collection/commit/e63da46be81fe6e1109ead1aa41155ec73fc96db))
9+
10+
# [@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)
11+
12+
13+
### Bug Fixes
14+
15+
* **test:** test ([fdc55ef](https://github.com/basics/rxjs-collection/commit/fdc55ef1b142d98bc58f8c7808354e00b02cd79c))
16+
17+
# [@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)
18+
19+
20+
### Bug Fixes
21+
22+
* **release:** reduced artifact of each package ([b7b00cd](https://github.com/basics/rxjs-collection/commit/b7b00cd92b5f6d009a01fe00d8a9d72b9cb8d1be))
23+
24+
# [@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)
25+
26+
27+
### Bug Fixes
28+
29+
* **config:** update ([94101a4](https://github.com/basics/rxjs-collection/commit/94101a4c3b41b1b0d9c99bd8b98b8f8d8e67b1b2))
30+
331
# [@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)
432

533

packages/operators/package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rxjs-collection/operators",
3-
"version": "1.0.1",
3+
"version": "1.0.2-beta.4",
44
"description": "rxjs operators",
55
"license": "MIT",
66
"contributors": [
@@ -11,10 +11,14 @@
1111
],
1212
"type": "module",
1313
"main": "index.js",
14+
"files": [
15+
"./src/*"
16+
],
1417
"scripts": {
1518
"release": "npx semantic-release"
1619
},
1720
"dependencies": {
21+
"@rxjs-collection/observables": "*",
1822
"rxjs": "7.8.1"
1923
}
2024
}

rxjs-collection.code-workspace

Lines changed: 2 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -3,56 +3,5 @@
33
{
44
"path": "."
55
}
6-
],
7-
"settings": {
8-
"breadcrumbs.enabled": true,
9-
"editor.bracketPairColorization.enabled": true,
10-
"editor.cursorBlinking": "phase",
11-
"editor.formatOnPaste": true,
12-
"editor.minimap.renderCharacters": false,
13-
"editor.minimap.maxColumn": 200,
14-
"editor.minimap.showSlider": "always",
15-
"editor.smoothScrolling": true,
16-
"editor.codeActionsOnSave": {
17-
"source.fixAll.eslint": "explicit"
18-
},
19-
"editor.formatOnSave": true,
20-
"eslint.validate": [
21-
"javascript",
22-
"javascriptreact",
23-
"vue",
24-
"html"
25-
],
26-
"files.exclude": {
27-
"docs/": true,
28-
".scannerwork/": true,
29-
"node_modules/": false,
30-
"**/.idea": true,
31-
"**/*.iml": true,
32-
"**/out": true,
33-
"**/gen": true,
34-
"**/logs": true,
35-
"**/*.log": true,
36-
"**/.DS_Store": true,
37-
".*": false
38-
},
39-
"files.associations": {
40-
".branchlintrc": "json",
41-
".huskyrc": "json",
42-
".lintstagedrc": "json",
43-
".postcssrc": "json",
44-
".releaserc": "json",
45-
".*ignore": "ignore",
46-
"*.js.tmpl": "javascript",
47-
"*.html.tmpl": "html"
48-
},
49-
"javascript.format.enable": false,
50-
"javascript.suggest.paths": false,
51-
"path-intellisense.mappings": {
52-
"@operators/*": "${workspaceRoot}/packages/operators/src"
53-
},
54-
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
55-
"workbench.settings.enableNaturalLanguageSearch": false,
56-
"task.autoDetect": "off"
57-
}
58-
}
6+
]
7+
}

0 commit comments

Comments
 (0)