hostReportError with 6.0.0-rc.4 when creating a new project
See original GitHub issueVersions
I first installed Angular CLI 6.0.0-rc.4 with Yarn and got the following output mentionning errors
$ yarn global add @angular/cli@6.0.0-rc.4
$ ng --version
Angular CLI: 6.0.0-rc.4
Node: 9.11.1
OS: darwin x64
Angular:
...
Package Version
------------------------------------------------------
@angular-devkit/architect <error>
@angular-devkit/core <error>
@angular-devkit/schematics <error>
@schematics/angular <error>
@schematics/update <error>
rxjs <error>
So I removed it (yarn global remove @angular/cli
) and reinstalled Angular CLI 6.0.0-rc.4 with NPM and didn’t get the errors
$ npm install -g @angular/cli@6.0.0-rc.4
$ ng --version
Angular CLI: 6.0.0-rc.4
Node: 9.11.1
OS: darwin x64
Angular:
...
Package Version
------------------------------------------------------
@angular-devkit/architect 0.5.6
@angular-devkit/core 0.5.6
@angular-devkit/schematics 0.5.6
@ngtools/json-schema 1.1.0
@schematics/angular 0.5.6
@schematics/update 0.5.6
rxjs 6.0.0-uncanny-rc.7
typescript 2.7.2
Repro steps
But on both scenarios, when I create a new project (ng new store
) I get a hostReportError
(see below). I’ve also tried with 6.0.0-rc.2 and 6.0.0-rc.2 and got the same issue.
Observed behavior
$ ng new store
CREATE store/README.md (1027 bytes)
CREATE store/angular.json (3846 bytes)
CREATE store/package.json (1394 bytes)
CREATE store/tsconfig.json (384 bytes)
CREATE store/tslint.json (2805 bytes)
CREATE store/.editorconfig (245 bytes)
CREATE store/.gitignore (503 bytes)
CREATE store/src/environments/environment.prod.ts (51 bytes)
CREATE store/src/environments/environment.ts (743 bytes)
CREATE store/src/favicon.ico (5430 bytes)
CREATE store/src/index.html (292 bytes)
CREATE store/src/main.ts (370 bytes)
CREATE store/src/polyfills.ts (3114 bytes)
CREATE store/src/test.ts (642 bytes)
CREATE store/src/assets/.gitkeep (0 bytes)
CREATE store/src/styles.css (80 bytes)
CREATE store/src/browserslist (51 bytes)
CREATE store/src/karma.conf.js (1011 bytes)
CREATE store/src/tsconfig.app.json (194 bytes)
CREATE store/src/tsconfig.spec.json (282 bytes)
CREATE store/src/tslint.json (314 bytes)
CREATE store/src/app/app.module.ts (314 bytes)
CREATE store/src/app/app.component.css (0 bytes)
CREATE store/src/app/app.component.html (1141 bytes)
CREATE store/src/app/app.component.spec.ts (986 bytes)
CREATE store/src/app/app.component.ts (207 bytes)
CREATE store/e2e/protractor.conf.js (752 bytes)
CREATE store/e2e/src/app.e2e-spec.ts (299 bytes)
CREATE store/e2e/src/app.po.ts (208 bytes)
CREATE store/e2e/tsconfig.e2e.json (213 bytes)
/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/util/hostReportError.js:9
setTimeout(function () { throw err; });
^
TypeError: You provided 'function reduceOperatorFunction(source) {
return pipe_1.pipe(scan_1.scan(function (acc, value, index) {
return accumulator(acc, value, index + 1);
}), takeLast_1.takeLast(1))(source);
}' where a stream was expected. You can provide an Observable, Promise, Array, or Iterable.
at Object.exports.subscribeTo (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/util/subscribeTo.js:42:15)
at Object.subscribeToResult (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/util/subscribeToResult.js:7:26)
at MergeMapSubscriber._innerSub (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/operators/mergeMap.js:132:38)
at MergeMapSubscriber._tryNext (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/operators/mergeMap.js:129:14)
at MergeMapSubscriber._next (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/operators/mergeMap.js:112:18)
at MergeMapSubscriber.notifyComplete (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/operators/mergeMap.js:148:18)
at InnerSubscriber._complete (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/InnerSubscriber.js:37:21)
at InnerSubscriber.Subscriber.complete (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/Subscriber.js:128:18)
at Observable.rxjs_1.concat.rxjs_1.concat.rxjs_1.Observable.obs [as _subscribe] (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/@angular-devkit/schematics/tools/workflow/node-workflow.js:113:17)
at Observable.subscribe (/Users/agoncal/.npm-packages/lib/node_modules/@angular/cli/node_modules/rxjs/internal/Observable.js:162:69)
Desired behavior
Mention any other details that might be useful (optional)
Don’t know if this could be related to issue #10335 (different OS: Windows vs OSX). In this issue, when installing RC4 @KiraiChang got
Package Version
---------------------------------------------------------
@angular-devkit/architect 0.5.6
@angular-devkit/build-angular 0.5.6
@angular-devkit/core 0.5.6 (cli-only)
@angular-devkit/schematics 0.5.6 (cli-only)
@angular/cli 6.0.0-rc.4
@ngtools/json-schema 1.2.0
@schematics/angular 0.5.6 (cli-only)
@schematics/update 0.5.6
rxjs 5.5.6
typescript 2.5.3
While I have
Package Version
------------------------------------------------------
@angular-devkit/architect 0.5.6
@angular-devkit/core 0.5.6
@angular-devkit/schematics 0.5.6
@ngtools/json-schema 1.1.0
@schematics/angular 0.5.6
@schematics/update 0.5.6
rxjs 6.0.0-uncanny-rc.7
typescript 2.7.2
Which is using rxjs@5.5.6
and not rxjs@6.0.0-uncanny-rc.7
Issue Analytics
- State:
- Created 5 years ago
- Reactions:11
- Comments:8 (1 by maintainers)
Top Results From Across the Web
rxjs/CHANGELOG.md - UNPKG
- Our very new creation function, `connectable`, now takes a configuration object instead of just the `Subject` instance. This was necessary to make...
Read more >@reactivex/rxjs | Yarn - Package Manager
RxJS 6 Stable. MIGRATION AND RELEASE INFORMATION: Find out how to update to v6, automatically update your TypeScript code, and more!
Read more >node_modules/rxjs/CHANGELOG.md ... - GitLab
Our very new creation function, connectable , now takes a configuration object instead of just the Subject instance. This was necessary to make...
Read more >lib/cli.js - Renovate Bot Package Diff
+ throw new Error(`Potentially dangerous call to "${program}" in ${cwd}`); ... Concurrency for creating bin links disabled because of the issue #1961.
Read more >Check if a buffer contains valid UTF-8 | Interpreter library - kandi
Implement utf-8-validate with how-to, Q&A, fixes, code snippets. kandi ratings - Low support, No Bugs, No Vulnerabilities. Non-SPDX License, Build ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I received the same error, here my environment:
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.