diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ffd0cd1 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,51 @@ +{ + "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" +} diff --git a/packages/observables/package.json b/packages/observables/package.json index d3f927e..d0b42e2 100644 --- a/packages/observables/package.json +++ b/packages/observables/package.json @@ -15,6 +15,7 @@ "release": "npx semantic-release" }, "dependencies": { + "@rxjs-collection/operators": "*", "rxjs": "7.8.1" } } diff --git a/packages/operators/package.json b/packages/operators/package.json index 8200232..bad7d97 100644 --- a/packages/operators/package.json +++ b/packages/operators/package.json @@ -15,6 +15,7 @@ "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 + ] +}