Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failure when running 'gulp production' #27

Closed
bjornharvold opened this issue Sep 8, 2016 · 18 comments
Closed

Failure when running 'gulp production' #27

bjornharvold opened this issue Sep 8, 2016 · 18 comments

Comments

@bjornharvold
Copy link

Hi,

I love this github project! Thank you for making it.

When I was looking at building this to production so I typed 'gulp production'.

This is what I got:

| => gulp production
[15:27:07] Using gulpfile ~/git/ng2Boilerplate/gulpfile.js
[15:27:07] Starting 'production'...
[15:27:07] Starting 'x_clean'...
[15:27:07] Finished 'x_clean' after 12 ms
[15:27:07] Starting 'x_assets'...
[15:27:07] Finished 'x_assets' after 59 ms
[15:27:07] Starting 'x_copy_files'...
[15:27:16] Finished 'x_copy_files' after 8.07 s
[15:27:16] Starting 'x_build-ts'...
[15:27:21] Finished 'x_build-ts' after 5.61 s
[15:27:21] Starting 'x_copy'...
[15:27:21] Finished 'x_copy' after 907 μs
[15:27:21] Starting 'x_bundle'...
     Building the bundle tree for src/App.js...

err  Error on fetch for ng2Boilerplater/App.js.ts at file:///Users/crash/git/ng2Boilerplate/src/App.js.ts
  Error: ENOENT: no such file or directory, open '/Users/crash/git/ng2Boilerplate/src/App.js.ts'
    at Error (native)
[15:27:25] 'x_bundle' errored after 3.75 s
[15:27:25] Error: Command `jspm bundle src/App.js ./dist/index.js --skip-source-maps` failed with exit code 1
    at ChildProcess.exithandler (child_process.js:206:12)
    at emitTwo (events.js:106:13)
    at ChildProcess.emit (events.js:191:7)
    at maybeClose (internal/child_process.js:877:16)
    at Socket.<anonymous> (internal/child_process.js:334:11)
    at emitOne (events.js:96:13)
    at Socket.emit (events.js:188:7)
    at Pipe._handle.close [as _onclose] (net.js:493:12)
Command `jspm bundle src/App.js ./dist/index.js --skip-source-maps` failed with exit code 1
[15:27:25] 'production' errored after 18 s
[15:27:25] Error in plugin 'run-sequence(x_bundle)'
Message:
    Command `jspm bundle src/App.js ./dist/index.js --skip-source-maps` failed with exit code 1
Details:
    killed: false
    code: 1
    signal: null
    cmd: jspm bundle src/App.js ./dist/index.js --skip-source-maps
    stdout:      Building the bundle tree for src/App.js...

    stderr: 
err  Error on fetch for ng2Boilerplater/App.js.ts at file:///Users/crash/git/ng2Boilerplate/src/App.js.ts
  Error: ENOENT: no such file or directory, open '/Users/crash/git/ng2Boilerplate/src/App.js.ts'
    at Error (native)

Stack:
Error: Command `jspm bundle src/App.js ./dist/index.js --skip-source-maps` failed with exit code 1
    at ChildProcess.exithandler (child_process.js:206:12)
    at emitTwo (events.js:106:13)
    at ChildProcess.emit (events.js:191:7)
    at maybeClose (internal/child_process.js:877:16)
    at Socket.<anonymous> (internal/child_process.js:334:11)
    at emitOne (events.js:96:13)
    at Socket.emit (events.js:188:7)
    at Pipe._handle.close [as _onclose] (net.js:493:12)
@born2net
Copy link
Owner

born2net commented Sep 8, 2016

it's trying to access App.js.ts
not sure why, did you modify gulp or tsconfig props?
odd :/

@bjornharvold
Copy link
Author

Just cloned the repo and followed your instructions.

@amitmahbubani
Copy link

+1 same issue

@born2net
Copy link
Owner

did major refactoring today to jspm, please try again!

@bjornharvold
Copy link
Author

Different errors now. One is obviously x_clear_remote which is hooked up to your personal environment.

I'm running Node v6.5.0 and npm 3.10.3.

Installation changes not saved.

npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/common@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/compiler@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/core@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/forms@2.0.0 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/common@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/compiler@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/core@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser-dynamic@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of rxjs@5.0.0-beta.11 but none was installed.
npm WARN gulp-tslint@4.3.5 requires a peer of tslint@^3 || >=3.1.0-dev || >=3.2.0-dev || >=3.2.1-dev || >= 3.2.2-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev but none was installed.
npm WARN tslint-loader@2.1.5 requires a peer of tslint@^3.0.0 but none was installed.
npm ERR! Darwin 16.0.0
npm ERR! argv "/usr/local/Cellar/node/6.5.0/bin/node" "/usr/local/bin/npm" "install"
npm ERR! node v6.5.0
npm ERR! npm v3.10.3
npm ERR! code ELIFECYCLE
npm ERR! ng2Boilerplater@0.7.2 postinstall: jspm install && gulp development
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the ng2Boilerplater@0.7.2 postinstall script 'jspm install && gulp development'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the ng2Boilerplater package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! jspm install && gulp development
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs ng2Boilerplater
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls ng2Boilerplater
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR! /Users/crash/git/ng2Boilerplate/npm-debug.log


| ~/git/ng2Boilerplate @ crash (crash)
| => npm install typescript@2.0.2
ng2Boilerplater@0.7.2 /Users/crash/git/ng2Boilerplate
├── UNMET PEER DEPENDENCY @angular/common@2.0.0-rc.6
├── UNMET PEER DEPENDENCY @angular/compiler@2.0.0-rc.6
├── UNMET PEER DEPENDENCY @angular/core@2.0.0-rc.6
├── UNMET PEER DEPENDENCY @angular/forms@2.0.0
├── UNMET PEER DEPENDENCY @angular/platform-browser@2.0.0-rc.6
├── UNMET PEER DEPENDENCY @angular/platform-browser-dynamic@2.0.0-rc.6
├── UNMET PEER DEPENDENCY rxjs@5.0.0-beta.12
├── UNMET PEER DEPENDENCY tslint@^3 || >=3.1.0-dev || >=3.2.0-dev || >=3.2.1-dev || >= 3.2.2-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev
└── typescript@2.0.2

npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/common@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/compiler@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/core@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser-dynamic@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of rxjs@5.0.0-beta.11 but none was installed.
npm WARN gulp-tslint@4.3.5 requires a peer of tslint@^3 || >=3.1.0-dev || >=3.2.0-dev || >=3.2.1-dev || >= 3.2.2-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/common@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/compiler@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/core@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/forms@2.0.0 but none was installed.
npm WARN tslint-loader@2.1.5 requires a peer of tslint@^3.0.0 but none was installed.


| ~/git/ng2Boilerplate @ crash (crash)
| => gulp production
error TS5023: Unknown compiler option 'baseUrl'.
error TS5023: Unknown compiler option 'paths'.
[08:55:16] Using gulpfile ~/git/ng2Boilerplate/gulpfile.js
[08:55:16] Starting 'production'...
[08:55:16] Starting 'x_removeOffline'...
[08:55:16] Finished 'x_removeOffline' after 18 ms
[08:55:16] Starting 'x_clean'...
[08:55:16] Finished 'x_clean' after 18 ms
[08:55:16] Starting 'x_assets'...
[08:55:16] Finished 'x_assets' after 54 ms
[08:55:16] Starting 'x_jspm'...
[08:55:16] Finished 'x_jspm' after 4.69 ms
[08:55:16] Starting 'x_copy_files'...
[08:55:22] Finished 'x_copy_files' after 6.4 s
[08:55:22] Starting 'x_build-ts'...
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/buttons/button-checkbox.directive.d.ts(14,22): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/buttons/button-checkbox.directive.d.ts(15,22): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/buttons/button-radio.directive.d.ts(10,14): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/buttons/button-radio.directive.d.ts(10,22): error TS1005: ';' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/dropdown/dropdown-toggle.directive.d.ts(11,14): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/dropdown/dropdown-toggle.directive.d.ts(11,20): error TS1005: ';' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/modal/modal.component.d.ts(14,14): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/modal/modal.component.d.ts(14,21): error TS1005: ';' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/modal/modal.component.d.ts(22,22): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/position.d.ts(29,22): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/position.d.ts(30,22): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/tooltip/tooltip-container.component.d.ts(21,14): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/tooltip/tooltip-container.component.d.ts(21,24): error TS1005: ';' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/typeahead/typeahead-container.component.d.ts(18,14): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/typeahead/typeahead-container.component.d.ts(18,26): error TS1005: ';' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/typeahead/typeahead-container.component.d.ts(18,44): error TS1005: '(' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/typeahead/typeahead.directive.d.ts(46,14): error TS1005: '=' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/typeahead/typeahead.directive.d.ts(46,21): error TS1005: ';' expected.
/Users/crash/git/ng2Boilerplate/node_modules/ng2-bootstrap/components/typeahead/typeahead.directive.d.ts(46,33): error TS1005: '(' expected.
[08:55:27] TypeScript: 19 syntax errors
[08:55:27] TypeScript: emit succeeded (with errors)
[08:55:27] Finished 'x_build-ts' after 4.34 s
[08:55:27] Starting 'x_copy'...
[08:55:27] Finished 'x_copy' after 1.18 ms
[08:55:27] Starting 'x_bundle'...

err No project configuration file not found. Looking for: /Users/crash/git/ng2Boilerplate/config.js
[08:55:27] Finished 'x_bundle' after 490 ms
[08:55:27] Starting 'x_minify'...
[08:55:27] Finished 'x_minify' after 2.8 ms
[08:55:27] Starting 'x_target'...
[08:55:27] Finished 'x_target' after 1.48 ms
[08:55:27] Starting 'x_clear_remote'...
ssh: connect to host digitalsignage.com port 22: Operation timed out
[08:56:43] 'x_clear_remote' errored after 1.25 min
[08:56:43] Error: Command ssh root@digitalsignage.com rm -r -f /var/www/sites/dynasite/htdocs/_msportal/_js/_node/_boiler/src failed with exit code 255
at ChildProcess.exithandler (child_process.js:206:12)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at maybeClose (internal/child_process.js:877:16)
at Socket. (internal/child_process.js:334:11)
at emitOne (events.js:96:13)
at Socket.emit (events.js:188:7)
at Pipe._handle.close as _onclose
Command ssh root@digitalsignage.com rm -r -f /var/www/sites/dynasite/htdocs/_msportal/_js/_node/_boiler/src failed with exit code 255
[08:56:43] 'production' errored after 1.43 min
[08:56:43] Error in plugin 'run-sequence(x_clear_remote)'
Message:
Command ssh root@digitalsignage.com rm -r -f /var/www/sites/dynasite/htdocs/_msportal/_js/_node/_boiler/src failed with exit code 255
Details:
killed: false
code: 255
signal: null
cmd: ssh root@digitalsignage.com rm -r -f /var/www/sites/dynasite/htdocs/_msportal/_js/_node/_boiler/src
stdout:
stderr: ssh: connect to host digitalsignage.com port 22: Operation timed out

Stack:
Error: Command ssh root@digitalsignage.com rm -r -f /var/www/sites/dynasite/htdocs/_msportal/_js/_node/_boiler/src failed with exit code 255
at ChildProcess.exithandler (child_process.js:206:12)
at emitTwo (events.js:106:13)
at ChildProcess.emit (events.js:191:7)
at maybeClose (internal/child_process.js:877:16)
at Socket. (internal/child_process.js:334:11)
at emitOne (events.js:96:13)
at Socket.emit (events.js:188:7)
at Pipe._handle.close as _onclose


| ~/git/ng2Boilerplate @ crash (crash)
| =>
[Restored Sep 24, 2016, 08:57:31]
Last login: Sat Sep 24 08:57:31 on ttys002
Restored session: Sat Sep 24 08:57:28 ICT 2016


| ~/git/ng2Boilerplate @ crash (crash)

@born2net
Copy link
Owner

I updated a new version which removes the rsync and remote clean.
also since the gulp-typescript plugin is still bound to TS 1.8 you will need to modify its pacakege.json to 2.0.2 for its typescript peer dependency' hopefully they will fix it this week since 2.0 is now final.

@bjornharvold
Copy link
Author

I went to node_modules/grunt-typescript and updated the dep on typescript to 2.0.2. Still get an error:

| => npm install

> ng2Boilerplater@0.7.2 postinstall /Users/crash/git/ng2Boilerplate
> jspm install && gulp development


warn Running jspm globally, it is advisable to locally install jspm via npm install jspm --save-dev.

Configuration file config.js doesn't exist, create it? [yes]:
     Looking up npm:ng2-bootstrap
     Looking up npm:@angular/common
     Looking up npm:@angular/compiler
     Looking up npm:@angular/core
     Looking up npm:@angular/http
     Looking up npm:@angular/platform-browser
     Looking up npm:@angular/platform-browser-dynamic
     Looking up npm:@angular/forms
     Looking up npm:angular2-google-maps
     Looking up npm:angular2-polyfill
     Looking up npm:angular2-redux-util
     Looking up npm:angular2-uuid
     Looking up npm:bootbox
     Looking up npm:clean-css
     Looking up npm:highcharts
     Looking up npm:immutable
     Looking up npm:is-equal
     Looking up npm:jquery
     Looking up npm:lodash
     Looking up npm:moment
     Looking up npm:platform
     Looking up npm:plugin-typescript
     Looking up npm:redux-thunk
     Looking up npm:reselect
     Looking up npm:@angular/router
     Looking up npm:typescript
     Looking up npm:underscore
     Looking up npm:xml2js
     Updating registry cache...

warn Using local override for npm:@angular/compiler@2.0.0

warn Using local override for npm:@angular/platform-browser-dynamic@2.0.1

warn Using local override for npm:moment@2.15.1

warn Using local override for npm:@angular/http@2.0.0

warn Using local override for npm:@angular/platform-browser@2.0.0

warn Using local override for npm:@angular/common@2.0.0

err  No version match found for npm:typescript@^1.9

warn Installation changes not saved.

npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/common@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/compiler@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/core@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser-dynamic@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of rxjs@5.0.0-beta.11 but none was installed.
npm WARN gulp-tslint@4.3.5 requires a peer of tslint@^3 || >=3.1.0-dev || >=3.2.0-dev || >=3.2.1-dev || >= 3.2.2-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/common@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/compiler@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/core@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/forms@2.0.0 but none was installed.
npm WARN tslint-loader@2.1.5 requires a peer of tslint@^3.0.0 but none was installed.
npm ERR! Darwin 16.0.0
npm ERR! argv "/usr/local/Cellar/node/6.6.0/bin/node" "/usr/local/bin/npm" "install"
npm ERR! node v6.6.0
npm ERR! npm  v3.10.7
npm ERR! code ELIFECYCLE
npm ERR! ng2Boilerplater@0.7.2 postinstall: `jspm install && gulp development`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the ng2Boilerplater@0.7.2 postinstall script 'jspm install && gulp development'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the ng2Boilerplater package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     jspm install && gulp development
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs ng2Boilerplater
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls ng2Boilerplater
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/crash/git/ng2Boilerplate/npm-debug.log
[npm-debug.log.zip](https://github.com/born2net/ng2Boilerplate/files/491184/npm-debug.log.zip)


@born2net
Copy link
Owner

you dont have jspm installed globally.
restart process after npm install jspm -g

@bjornharvold
Copy link
Author

I do.

npm install jspm -g
npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:868) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
npm WARN deprecated lodash.isarray@4.0.0: This package is deprecated. Use Array.isArray.
/usr/local/bin/jspm -> /usr/local/lib/node_modules/jspm/jspm.js
/usr/local/lib
└── jspm@0.16.45 

________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => npm install

> ng2Boilerplater@0.7.2 postinstall /Users/crash/git/ng2Boilerplate
> jspm install && gulp development


warn Running jspm globally, it is advisable to locally install jspm via npm install jspm --save-dev.

Configuration file config.js doesn't exist, create it? [yes]:
     Looking up npm:ng2-bootstrap
     Looking up npm:@angular/common
     Looking up npm:@angular/compiler
     Looking up npm:@angular/core
     Looking up npm:@angular/http
     Looking up npm:@angular/platform-browser
     Looking up npm:@angular/platform-browser-dynamic
     Looking up npm:@angular/forms
     Looking up npm:angular2-google-maps
     Looking up npm:angular2-polyfill
     Looking up npm:angular2-redux-util
     Looking up npm:angular2-uuid
     Looking up npm:bootbox
     Looking up npm:clean-css
     Looking up npm:highcharts
     Looking up npm:immutable
     Looking up npm:is-equal
     Looking up npm:jquery
     Looking up npm:lodash
     Looking up npm:moment
     Looking up npm:platform
     Looking up npm:plugin-typescript
     Looking up npm:redux-thunk
     Looking up npm:reselect
     Looking up npm:@angular/router
     Looking up npm:typescript
     Looking up npm:underscore
     Looking up npm:xml2js

warn Using local override for npm:jquery@2.2.4

err  No version match found for npm:typescript@^1.9

warn Installation changes not saved.

npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/common@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/compiler@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/core@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser-dynamic@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of rxjs@5.0.0-beta.11 but none was installed.
npm WARN gulp-tslint@4.3.5 requires a peer of tslint@^3 || >=3.1.0-dev || >=3.2.0-dev || >=3.2.1-dev || >= 3.2.2-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/common@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/compiler@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/core@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/forms@2.0.0 but none was installed.
npm WARN tslint-loader@2.1.5 requires a peer of tslint@^3.0.0 but none was installed.
npm ERR! Darwin 16.0.0
npm ERR! argv "/usr/local/Cellar/node/6.6.0/bin/node" "/usr/local/bin/npm" "install"
npm ERR! node v6.6.0
npm ERR! npm  v3.10.7
npm ERR! code ELIFECYCLE
npm ERR! ng2Boilerplater@0.7.2 postinstall: `jspm install && gulp development`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the ng2Boilerplater@0.7.2 postinstall script 'jspm install && gulp development'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the ng2Boilerplater package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     jspm install && gulp development
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs ng2Boilerplater
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls ng2Boilerplater
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/crash/git/ng2Boilerplate/npm-debug.log

npm-debug.log.zip

@bjornharvold
Copy link
Author

Here's what happens if I ignore all failures above and run 'gulp development'. I have [tried to] installed jspm locally and globally. I think it's another Typescript error but don't know where.

digitalsignage_-_studiodashboard

@born2net
Copy link
Owner

born2net commented Sep 25, 2016

you are missing the plugin. jspm install npm:plugin-typescript@5.1.2

@bjornharvold
Copy link
Author

I cloned the repo from scratch. Ran all the commands included in your readme and in this thread and I am still failing. Can you try to clean your environment to replicate my issue.

 => cd git/ng2Boilerplate/
total 100
drwxr-xr-x  14 crash  staff   476B Sep 25 21:39 .git/
-rw-r--r--   1 crash  staff   127B Sep 25 21:39 .gitignore
drwxr-xr-x   3 crash  staff   102B Sep 25 21:39 .idea/
-rw-r--r--   1 crash  staff   9.3K Sep 25 21:39 Readme.md
-rw-r--r--   1 crash  staff   405B Sep 25 21:39 debug.txt
-rw-r--r--   1 crash  staff    11K Sep 25 21:39 gulpfile.js
-rw-r--r--   1 crash  staff   218B Sep 25 21:39 jspm.browser.js
-rw-r--r--   1 crash  staff    32K Sep 25 21:39 jspm.config.js
drwxr-xr-x   5 crash  staff   170B Sep 25 21:39 lib/
-rw-r--r--   1 crash  staff    11K Sep 25 21:39 package.json
-rw-r--r--   1 crash  staff   628B Sep 25 21:39 server.js
drwxr-xr-x  24 crash  staff   816B Sep 25 21:39 src/
drwxr-xr-x   8 crash  staff   272B Sep 25 21:39 temp/
-rw-r--r--   1 crash  staff   1.3K Sep 25 21:39 tsconfig.json
-rw-r--r--   1 crash  staff   2.6K Sep 25 21:39 tslint.json
drwxr-xr-x  22 crash  staff   748B Sep 25 21:39 typings/
-rw-r--r--   1 crash  staff   425B Sep 25 21:39 typings.json
________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => npm install jspm -g
npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1497) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
npm WARN deprecated lodash.isarray@4.0.0: This package is deprecated. Use Array.isArray.
/usr/local/bin/jspm -> /usr/local/lib/node_modules/jspm/jspm.js
/usr/local/lib
└── jspm@0.16.45 

________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => npm install typescript@2.0.3
ng2Boilerplater@0.7.2 /Users/crash/git/ng2Boilerplate
└── typescript@2.0.3 

________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => npm install jspm --save-dev
npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1510) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
npm WARN deprecated lodash.isarray@4.0.0: This package is deprecated. Use Array.isArray.
ng2Boilerplater@0.7.2 /Users/crash/git/ng2Boilerplate
├─┬ chalk@1.1.3 
│ ├── ansi-styles@2.2.1 
│ ├── escape-string-regexp@1.0.5 
│ ├─┬ has-ansi@2.0.0 
│ │ └── ansi-regex@2.0.0 
│ ├── strip-ansi@3.0.1 
│ └── supports-color@2.0.0 
├─┬ jspm@0.16.45 
│ ├── core-js@1.2.7 
│ ├─┬ glob@6.0.4 
│ │ ├─┬ inflight@1.0.5 
│ │ │ └── wrappy@1.0.2 
│ │ ├── inherits@2.0.3 
│ │ ├── once@1.4.0 
│ │ └── path-is-absolute@1.0.0 
│ ├── graceful-fs@4.1.6 
│ ├─┬ jspm-github@0.13.16 
│ │ ├─┬ expand-tilde@1.2.2 
│ │ │ └── os-homedir@1.0.1 
│ │ ├── netrc@0.1.4 
│ │ ├─┬ request@2.53.0 
│ │ │ ├── aws-sign2@0.5.0 
│ │ │ ├─┬ bl@0.9.5 
│ │ │ │ └─┬ readable-stream@1.0.34 
│ │ │ │   └── isarray@0.0.1 
│ │ │ ├── caseless@0.9.0 
│ │ │ ├─┬ combined-stream@0.0.7 
│ │ │ │ └── delayed-stream@0.0.5 
│ │ │ ├── forever-agent@0.5.2 
│ │ │ ├─┬ form-data@0.2.0 
│ │ │ │ └── async@0.9.2 
│ │ │ ├── hawk@2.3.1 
│ │ │ ├─┬ http-signature@0.10.1 
│ │ │ │ ├── asn1@0.1.11 
│ │ │ │ ├── assert-plus@0.1.5 
│ │ │ │ └── ctype@0.5.3 
│ │ │ ├─┬ mime-types@2.0.14 
│ │ │ │ └── mime-db@1.12.0 
│ │ │ ├── oauth-sign@0.6.0 
│ │ │ └── qs@2.3.3 
│ │ ├─┬ rimraf@2.3.4 
│ │ │ └─┬ glob@4.5.3 
│ │ │   └── minimatch@2.0.10 
│ │ ├─┬ tar@2.2.1 
│ │ │ ├── block-stream@0.0.9 
│ │ │ └── fstream@1.0.10 
│ │ ├─┬ which@1.2.11 
│ │ │ └── isexe@1.1.2 
│ │ └─┬ yauzl@2.6.0 
│ │   ├── buffer-crc32@0.2.5 
│ │   └─┬ fd-slicer@1.0.1 
│ │     └── pend@1.2.0 
│ ├─┬ jspm-npm@0.26.11 
│ │ ├── buffer-peek-stream@1.0.1 
│ │ ├── glob@5.0.15 
│ │ ├─┬ request@2.58.0 
│ │ │ ├── caseless@0.10.0 
│ │ │ ├─┬ combined-stream@1.0.5 
│ │ │ │ └── delayed-stream@1.0.0 
│ │ │ ├── extend@2.0.1 
│ │ │ ├── forever-agent@0.6.1 
│ │ │ ├─┬ form-data@1.0.1 
│ │ │ │ ├─┬ async@2.0.1 
│ │ │ │ │ └── lodash@4.16.1 
│ │ │ │ └─┬ mime-types@2.1.12 
│ │ │ │   └── mime-db@1.24.0 
│ │ │ ├─┬ har-validator@1.8.0 
│ │ │ │ └── bluebird@2.11.0 
│ │ │ ├── http-signature@0.11.0 
│ │ │ ├── oauth-sign@0.8.2 
│ │ │ └── qs@3.1.0 
│ │ ├── resolve@1.1.7 
│ │ ├─┬ rmdir@1.1.0 
│ │ │ └─┬ node.flow@1.2.3 
│ │ │   └─┬ node.extend@1.0.8 
│ │ │     ├── is@0.2.7 
│ │ │     └── object-keys@0.4.0 
│ │ └── tar@1.0.3 
│ ├─┬ jspm-registry@0.4.1 
│ │ └── semver@4.3.6 
│ ├─┬ liftoff@2.3.0 
│ │ ├── extend@3.0.0 
│ │ ├─┬ findup-sync@0.4.2 
│ │ │ ├─┬ detect-file@0.1.0 
│ │ │ │ └── fs-exists-sync@0.1.0 
│ │ │ ├─┬ is-glob@2.0.1 
│ │ │ │ └── is-extglob@1.0.0 
│ │ │ ├─┬ micromatch@2.3.11 
│ │ │ │ ├─┬ arr-diff@2.0.0 
│ │ │ │ │ └── arr-flatten@1.0.1 
│ │ │ │ ├── array-unique@0.2.1 
│ │ │ │ ├─┬ braces@1.8.5 
│ │ │ │ │ ├─┬ expand-range@1.8.2 
│ │ │ │ │ │ └─┬ fill-range@2.2.3 
│ │ │ │ │ │   ├── is-number@2.1.0 
│ │ │ │ │ │   ├─┬ isobject@2.1.0 
│ │ │ │ │ │   │ └── isarray@1.0.0 
│ │ │ │ │ │   └── randomatic@1.1.5 
│ │ │ │ │ ├── preserve@0.2.0 
│ │ │ │ │ └── repeat-element@1.1.2 
│ │ │ │ ├─┬ expand-brackets@0.1.5 
│ │ │ │ │ └── is-posix-bracket@0.1.1 
│ │ │ │ ├── extglob@0.3.2 
│ │ │ │ ├── filename-regex@2.0.0 
│ │ │ │ ├─┬ kind-of@3.0.4 
│ │ │ │ │ └── is-buffer@1.1.4 
│ │ │ │ ├── normalize-path@2.0.1 
│ │ │ │ ├─┬ object.omit@2.0.0 
│ │ │ │ │ ├─┬ for-own@0.1.4 
│ │ │ │ │ │ └── for-in@0.1.6 
│ │ │ │ │ └── is-extendable@0.1.1 
│ │ │ │ ├─┬ parse-glob@3.0.4 
│ │ │ │ │ ├─┬ glob-base@0.3.0 
│ │ │ │ │ │ └── glob-parent@2.0.0 
│ │ │ │ │ └── is-dotfile@1.0.2 
│ │ │ │ └─┬ regex-cache@0.4.3 
│ │ │ │   ├── is-equal-shallow@0.1.3 
│ │ │ │   └── is-primitive@2.0.0 
│ │ │ └─┬ resolve-dir@0.1.1 
│ │ │   └─┬ global-modules@0.2.3 
│ │ │     ├─┬ global-prefix@0.1.4 
│ │ │     │ ├── ini@1.3.4 
│ │ │     │ └── osenv@0.1.3 
│ │ │     └── is-windows@0.2.0 
│ │ ├─┬ fined@1.0.1 
│ │ │ ├── lodash.assignwith@4.2.0 
│ │ │ ├── lodash.isarray@4.0.0 
│ │ │ ├── lodash.isempty@4.4.0 
│ │ │ ├── lodash.pick@4.4.0 
│ │ │ └─┬ parse-filepath@1.0.1 
│ │ │   ├─┬ is-absolute@0.2.5 
│ │ │   │ ├─┬ is-relative@0.2.1 
│ │ │   │ │ └─┬ is-unc-path@0.1.1 
│ │ │   │ │   └── unc-path-regex@0.1.2 
│ │ │   │ └── is-windows@0.1.1 
│ │ │   ├── map-cache@0.2.2 
│ │ │   └─┬ path-root@0.1.1 
│ │ │     └── path-root-regex@0.1.2 
│ │ ├── flagged-respawn@0.3.2 
│ │ ├── lodash.isplainobject@4.0.6 
│ │ ├── lodash.isstring@4.0.1 
│ │ ├── lodash.mapvalues@4.6.0 
│ │ └── rechoir@0.6.2 
│ ├─┬ minimatch@3.0.3 
│ │ └─┬ brace-expansion@1.1.6 
│ │   ├── balanced-match@0.4.2 
│ │   └── concat-map@0.0.1 
│ ├─┬ mkdirp@0.5.1 
│ │ └── minimist@0.0.8 
│ ├── ncp@2.0.0 
│ ├─┬ proper-lockfile@1.2.0 
│ │ ├── err-code@1.1.1 
│ │ ├── extend@3.0.0 
│ │ └── retry@0.10.0 
│ ├─┬ request@2.75.0 
│ │ ├── aws-sign2@0.6.0 
│ │ ├── aws4@1.4.1 
│ │ ├─┬ bl@1.1.2 
│ │ │ └─┬ readable-stream@2.0.6 
│ │ │   ├── core-util-is@1.0.2 
│ │ │   ├── isarray@1.0.0 
│ │ │   ├── process-nextick-args@1.0.7 
│ │ │   ├── string_decoder@0.10.31 
│ │ │   └── util-deprecate@1.0.2 
│ │ ├── caseless@0.11.0 
│ │ ├─┬ combined-stream@1.0.5 
│ │ │ └── delayed-stream@1.0.0 
│ │ ├── extend@3.0.0 
│ │ ├── forever-agent@0.6.1 
│ │ ├─┬ form-data@2.0.0 
│ │ │ └── asynckit@0.4.0 
│ │ ├─┬ har-validator@2.0.6 
│ │ │ ├─┬ is-my-json-valid@2.14.0 
│ │ │ │ ├── generate-function@2.0.0 
│ │ │ │ ├─┬ generate-object-property@1.2.0 
│ │ │ │ │ └── is-property@1.0.2 
│ │ │ │ ├── jsonpointer@2.0.0 
│ │ │ │ └── xtend@4.0.1 
│ │ │ └─┬ pinkie-promise@2.0.1 
│ │ │   └── pinkie@2.0.4 
│ │ ├─┬ hawk@3.1.3 
│ │ │ ├── boom@2.10.1 
│ │ │ ├── cryptiles@2.0.5 
│ │ │ ├── hoek@2.16.3 
│ │ │ └── sntp@1.0.9 
│ │ ├─┬ http-signature@1.1.1 
│ │ │ ├── assert-plus@0.2.0 
│ │ │ ├─┬ jsprim@1.3.1 
│ │ │ │ ├── extsprintf@1.0.2 
│ │ │ │ ├── json-schema@0.2.3 
│ │ │ │ └── verror@1.3.6 
│ │ │ └─┬ sshpk@1.10.0 
│ │ │   ├── asn1@0.2.3 
│ │ │   ├── assert-plus@1.0.0 
│ │ │   ├─┬ bcrypt-pbkdf@1.0.0 
│ │ │   │ └── tweetnacl@0.14.3 
│ │ │   ├─┬ dashdash@1.14.0 
│ │ │   │ └── assert-plus@1.0.0 
│ │ │   ├── ecc-jsbn@0.1.1 
│ │ │   ├─┬ getpass@0.1.6 
│ │ │   │ └── assert-plus@1.0.0 
│ │ │   ├── jodid25519@1.0.2 
│ │ │   ├── jsbn@0.1.0 
│ │ │   └── tweetnacl@0.13.3 
│ │ ├── is-typedarray@1.0.0 
│ │ ├── isstream@0.1.2 
│ │ ├── json-stringify-safe@5.0.1 
│ │ ├─┬ mime-types@2.1.12 
│ │ │ └── mime-db@1.24.0 
│ │ ├── node-uuid@1.4.7 
│ │ ├── oauth-sign@0.8.2 
│ │ ├── qs@6.2.1 
│ │ ├── stringstream@0.0.5 
│ │ ├── tough-cookie@2.3.1 
│ │ └── tunnel-agent@0.4.3 
│ ├── rsvp@3.3.2 
│ ├── semver@5.3.0 
│ ├─┬ systemjs@0.19.37 
│ │ └── when@3.7.7 
│ ├─┬ systemjs-builder@0.15.30 
│ │ ├─┬ babel-core@6.14.0 
│ │ │ ├─┬ babel-code-frame@6.11.0 
│ │ │ │ ├── esutils@2.0.2 
│ │ │ │ └── js-tokens@2.0.0 
│ │ │ ├─┬ babel-generator@6.14.0 
│ │ │ │ ├─┬ detect-indent@3.0.1 
│ │ │ │ │ ├── get-stdin@4.0.1 
│ │ │ │ │ ├── minimist@1.2.0 
│ │ │ │ │ └─┬ repeating@1.1.3 
│ │ │ │ │   └─┬ is-finite@1.0.1 
│ │ │ │ │     └── number-is-nan@1.0.0 
│ │ │ │ └── lodash@4.16.1 
│ │ │ ├── babel-helpers@6.8.0 
│ │ │ ├── babel-messages@6.8.0 
│ │ │ ├─┬ babel-register@6.14.0 
│ │ │ │ ├── core-js@2.4.1 
│ │ │ │ ├─┬ home-or-tmp@1.0.0 
│ │ │ │ │ ├── os-tmpdir@1.0.1 
│ │ │ │ │ └── user-home@1.1.1 
│ │ │ │ └── lodash@4.16.1 
│ │ │ ├─┬ babel-runtime@6.11.6 
│ │ │ │ ├── core-js@2.4.1 
│ │ │ │ └── regenerator-runtime@0.9.5 
│ │ │ ├─┬ babel-template@6.15.0 
│ │ │ │ └── lodash@4.16.1 
│ │ │ ├─┬ babel-traverse@6.15.0 
│ │ │ │ ├── globals@8.18.0 
│ │ │ │ ├─┬ invariant@2.2.1 
│ │ │ │ │ └─┬ loose-envify@1.2.0 
│ │ │ │ │   └── js-tokens@1.0.3 
│ │ │ │ └── lodash@4.16.1 
│ │ │ ├─┬ babel-types@6.15.0 
│ │ │ │ ├── lodash@4.16.1 
│ │ │ │ └── to-fast-properties@1.0.2 
│ │ │ ├── babylon@6.11.2 
│ │ │ ├── convert-source-map@1.3.0 
│ │ │ ├─┬ debug@2.2.0 
│ │ │ │ └── ms@0.7.1 
│ │ │ ├── json5@0.4.0 
│ │ │ ├── lodash@4.16.1 
│ │ │ ├── path-exists@1.0.0 
│ │ │ ├── private@0.1.6 
│ │ │ ├── shebang-regex@1.0.0 
│ │ │ └── slash@1.0.0 
│ │ ├─┬ babel-plugin-transform-cjs-system-wrapper@0.2.1 
│ │ │ └── babel-plugin-transform-cjs-system-require@0.1.1 
│ │ ├─┬ babel-plugin-transform-es2015-modules-systemjs@6.14.0 
│ │ │ └── babel-helper-hoist-variables@6.8.0 
│ │ ├── babel-plugin-transform-global-system-wrapper@0.0.1 
│ │ ├── babel-plugin-transform-system-register@0.0.1 
│ │ ├── bluebird@3.4.6 
│ │ ├── data-uri-to-buffer@0.0.4 
│ │ ├─┬ es6-template-strings@2.0.1 
│ │ │ ├─┬ es5-ext@0.10.12 
│ │ │ │ ├─┬ es6-iterator@2.0.0 
│ │ │ │ │ └── d@0.1.1 
│ │ │ │ └── es6-symbol@3.1.0 
│ │ │ └─┬ esniff@1.1.0 
│ │ │   └── d@1.0.0 
│ │ ├── glob@7.1.0 
│ │ ├─┬ rollup@0.31.2 
│ │ │ └─┬ source-map-support@0.4.2 
│ │ │   └── source-map@0.1.32 
│ │ └── source-map@0.5.6 
│ ├─┬ traceur@0.0.105 
│ │ ├─┬ commander@2.9.0 
│ │ │ └── graceful-readlink@1.0.1 
│ │ ├── glob@5.0.15 
│ │ ├── semver@4.3.6 
│ │ └─┬ source-map-support@0.2.10 
│ │   └─┬ source-map@0.1.32 
│ │     └── amdefine@1.0.0 
│ └─┬ uglify-js@2.7.3 
│   ├── async@0.2.10 
│   ├── uglify-to-browserify@1.0.2 
│   └─┬ yargs@3.10.0 
│     ├── camelcase@1.2.1 
│     ├─┬ cliui@2.1.0 
│     │ ├─┬ center-align@0.1.3 
│     │ │ ├─┬ align-text@0.1.4 
│     │ │ │ ├── longest@1.0.1 
│     │ │ │ └── repeat-string@1.5.4 
│     │ │ └── lazy-cache@1.0.4 
│     │ ├── right-align@0.1.3 
│     │ └── wordwrap@0.0.2 
│     ├── decamelize@1.2.0 
│     └── window-size@0.1.0 
└─┬ rimraf@2.5.4 
  └─┬ glob@7.1.0 
    └── fs.realpath@1.0.0 

________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => jspm install npm:plugin-typescript@5.1.2
Configuration file config.js doesn't exist, create it? [yes]:
     Looking up npm:plugin-typescript
     Updating registry cache...
     Looking up npm:typescript

warn Using local override for npm:typescript@2.0.3
ok   Installed npm:typescript@^2.0.0 (2.0.3)
     Looking up github:jspm/nodelibs-os
     Looking up github:jspm/nodelibs-crypto
     Looking up npm:crypto-browserify
     Looking up npm:os-browserify
ok   Installed github:jspm/nodelibs-crypto@^0.1.0 (0.1.0)
ok   Installed github:jspm/nodelibs-os@^0.1.0 (0.1.0)
     Looking up npm:browserify-cipher
     Looking up npm:browserify-sign
     Looking up npm:create-ecdh
     Looking up npm:create-hash
     Looking up npm:create-hmac
     Looking up npm:diffie-hellman
     Looking up npm:inherits
     Looking up npm:pbkdf2
     Looking up npm:public-encrypt
     Looking up npm:randombytes
ok   Installed npm:os-browserify@^0.1.2 (0.1.2)
ok   Installed npm:crypto-browserify@^3.7.2 (3.11.0)

warn Using local override for npm:inherits@2.0.3
ok   Installed npm:inherits@^2.0.1 (2.0.3)
     Looking up npm:bn.js
     Looking up npm:elliptic
ok   Installed npm:create-ecdh@^4.0.0 (4.0.0)
     Looking up npm:browserify-rsa
     Looking up npm:parse-asn1
ok   Installed npm:browserify-sign@^4.0.0 (4.0.0)
ok   Installed npm:create-hmac@^1.1.0 (1.1.4)
ok   Installed npm:pbkdf2@^3.0.3 (3.0.8)
     Looking up npm:brorand
     Looking up npm:hash.js
ok   Installed npm:bn.js@^4.1.0 (4.11.6)
ok   Installed npm:elliptic@^6.0.0 (6.3.2)
     Looking up npm:asn1.js
     Looking up npm:browserify-aes
     Looking up npm:evp_bytestokey
ok   Installed npm:browserify-rsa@^4.0.0 (4.0.1)
ok   Installed npm:parse-asn1@^5.0.0 (5.0.0)
ok   Installed npm:hash.js@^1.0.0 (1.0.3)
     Looking up npm:minimalistic-assert
     Looking up npm:buffer-xor
     Looking up npm:cipher-base
ok   Installed npm:evp_bytestokey@^1.0.0 (1.0.0)
ok   Installed npm:browserify-aes@^1.0.0 (1.0.6)
ok   Installed npm:asn1.js@^4.0.0 (4.8.1)
     Looking up github:systemjs/plugin-json
ok   Installed npm:cipher-base@^1.0.0 (1.0.3)
ok   Installed npm:buffer-xor@^1.0.2 (1.0.3)
     Looking up npm:ripemd160
     Looking up npm:sha.js
ok   Installed npm:create-hash@^1.1.0 (1.1.2)
ok   Installed npm:public-encrypt@^4.0.0 (4.0.0)
     Looking up npm:miller-rabin
ok   Installed npm:randombytes@^2.0.0 (2.0.3)
ok   Installed npm:diffie-hellman@^5.0.0 (5.0.2)
     Looking up github:jspm/nodelibs-util
ok   Installed npm:brorand@^1.0.1 (1.0.6)
ok   Installed npm:ripemd160@^1.0.0 (1.0.1)
ok   Installed npm:sha.js@^2.3.6 (2.4.5)
     Looking up github:jspm/nodelibs-buffer
     Looking up github:jspm/nodelibs-stream
     Looking up npm:browserify-des
     Looking up github:jspm/nodelibs-process
ok   Installed npm:browserify-cipher@^1.0.0 (1.0.0)
     Looking up github:jspm/nodelibs-constants
     Looking up npm:des.js
ok   Installed npm:browserify-des@^1.0.0 (1.0.0)
ok   Installed npm:miller-rabin@^4.0.0 (4.0.0)
     Looking up github:jspm/nodelibs-vm
     Looking up github:jspm/nodelibs-fs
ok   Installed npm:des.js@^1.0.0 (1.0.0)
     Looking up github:jspm/nodelibs-string_decoder
ok   Installed npm:minimalistic-assert@^1.0.0 (1.0.0)
ok   Installed github:systemjs/plugin-json@^0.1.0 (0.1.2)
     Looking up npm:util
ok   Installed github:jspm/nodelibs-util@^0.1.0 (0.1.0)
     Looking up npm:buffer
     Looking up npm:stream-browserify
ok   Installed github:jspm/nodelibs-buffer@^0.1.0 (0.1.0)
ok   Installed github:jspm/nodelibs-stream@^0.1.0 (0.1.0)

warn Using local override for npm:inherits@2.0.1
ok   Installed npm:util@^0.10.3 (0.10.3)
ok   Installed npm:inherits@2.0.1 (2.0.1)
     Looking up npm:constants-browserify
ok   Installed github:jspm/nodelibs-constants@^0.1.0 (0.1.0)
     Looking up npm:base64-js
     Looking up npm:ieee754
     Looking up npm:isarray
     Looking up npm:readable-stream
ok   Installed npm:buffer@^3.0.1 (3.6.0)
ok   Installed npm:stream-browserify@^1.0.0 (1.0.0)
     Looking up npm:process
ok   Installed github:jspm/nodelibs-process@^0.1.0 (0.1.2)
ok   Installed npm:constants-browserify@0.0.1 (0.0.1)
ok   Installed github:jspm/nodelibs-fs@^0.1.0 (0.1.2)
ok   Installed npm:base64-js@0.0.8 (0.0.8)

warn Using local override for npm:readable-stream@1.1.14
     Downloading npm:readable-stream@1.1.14
     Looking up npm:core-util-is
     Looking up npm:string_decoder
     Looking up npm:vm-browserify
ok   Installed github:jspm/nodelibs-vm@^0.1.0 (0.1.0)
ok   Installed npm:core-util-is@~1.0.0 (1.0.2)
ok   Installed npm:string_decoder@~0.10.0 (0.10.31)
ok   Installed github:jspm/nodelibs-string_decoder@^0.1.0 (0.1.0)
     Looking up npm:indexof
ok   Installed npm:vm-browserify@0.0.4 (0.0.4)
ok   Installed npm:indexof@0.0.1 (0.0.1)
ok   Installed npm:ieee754@^1.1.4 (1.1.6)
ok   Installed npm:process@^0.11.0 (0.11.9)
     Looking up github:jspm/nodelibs-child_process
     Looking up github:jspm/nodelibs-events
ok   Installed npm:readable-stream@^1.0.27-1 (1.1.14)
ok   Installed npm:isarray@0.0.1 (0.0.1)
ok   Installed npm:isarray@^1.0.0 (1.0.0)
     Looking up github:jspm/nodelibs-assert
     Looking up npm:events
ok   Installed github:jspm/nodelibs-events@^0.1.1 (0.1.1)
ok   Installed github:jspm/nodelibs-child_process@^0.1.0 (0.1.0)
ok   Installed npm:events@1.0.2 (1.0.2)
     Looking up npm:assert
ok   Installed github:jspm/nodelibs-assert@^0.1.0 (0.1.0)
ok   Installed npm:assert@^1.3.0 (1.4.1)
ok   Installed plugin-typescript as npm:plugin-typescript@5.1.2 (5.1.2)
     Clearing configuration for npm:inherits@2.0.3
     Removing unused package.json override github:twbs/bootstrap@3.3.6
     Removing unused package.json override npm:@angular/common@2.0.0
     Removing unused package.json override npm:@angular/compiler@2.0.0
     Removing unused package.json override npm:@angular/core@2.0.0
     Removing unused package.json override npm:@angular/http@2.0.0
     Removing unused package.json override npm:@angular/platform-browser-dynamic@2.0.0
     Removing unused package.json override npm:@angular/platform-browser@2.0.0
     Removing unused package.json override npm:angular@1.5.6
     Removing unused package.json override npm:debug@2.2.0
     Removing unused package.json override npm:inherits@2.0.3
     Removing unused package.json override npm:jquery@2.2.4
     Removing unused package.json override npm:moment@2.13.0
     Removing unused package.json override npm:moment@2.14.1
     Removing unused package.json override npm:ms@0.7.1
     Removing unused package.json override npm:readable-stream@1.0.34
     Removing unused package.json override npm:reflect-metadata@0.1.3
     Removing unused package.json override npm:typescript@1.8.10
     Removing package files for npm:inherits@2.0.3

     The following new package versions were substituted by install deduping:

       inherits 2.0.3 -> 2.0.1

     Installed Forks

                               npm:isarray 0.0.1 1.0.0

     To inspect individual package constraints, use jspm inspect registry:name.

     Looking up loader files...
       system.js
       system-csp-production.js
       system.src.js
       system-csp-production.src.js
       system-polyfills.js
       system-polyfills.js.map
       system.js.map
       system-csp-production.js.map
       system-polyfills.src.js

     Using loader versions:
       systemjs@0.19.37
     Looking up npm:babel-core
     Looking up npm:babel-runtime
     Looking up npm:core-js
ok   Installed npm:util@0.10.3 (0.10.3)
ok   Installed babel-runtime as npm:babel-runtime@^5.8.24 (5.8.38)
ok   Installed babel as npm:babel-core@^5.8.24 (5.8.38)
     Looking up github:jspm/nodelibs-path
     Looking up npm:path-browserify
ok   Installed github:jspm/nodelibs-path@^0.1.0 (0.1.0)
ok   Installed npm:path-browserify@0.0.0 (0.0.0)
ok   Installed core-js as npm:core-js@^1.1.4 (1.2.7)
     Clearing configuration for npm:inherits@2.0.3
ok   Loader files downloaded successfully

ok   Install complete.
________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => npm install chokidar-socket-emitter --save-dev
(node:1562) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1562) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit

> fsevents@1.0.14 install /Users/crash/git/ng2Boilerplate/node_modules/fsevents
> node-pre-gyp install --fallback-to-build

[fsevents] Success: "/Users/crash/git/ng2Boilerplate/node_modules/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node" is installed via remote
ng2Boilerplater@0.7.2 /Users/crash/git/ng2Boilerplate
└─┬ chokidar-socket-emitter@0.5.4 
  ├─┬ chokidar@1.6.0 
  │ ├─┬ anymatch@1.3.0 
  │ │ └── arrify@1.0.1 
  │ ├── async-each@1.0.1 
  │ ├─┬ fsevents@1.0.14 
  │ │ ├── nan@2.4.0 
  │ │ └─┬ node-pre-gyp@0.6.29 
  │ │   ├─┬ mkdirp@0.5.1 
  │ │   │ └── minimist@0.0.8 
  │ │   ├─┬ nopt@3.0.6 
  │ │   │ └── abbrev@1.0.9 
  │ │   ├─┬ npmlog@3.1.2 
  │ │   │ ├─┬ are-we-there-yet@1.1.2 
  │ │   │ │ └── delegates@1.0.0 
  │ │   │ ├── console-control-strings@1.1.0 
  │ │   │ ├─┬ gauge@2.6.0 
  │ │   │ │ ├── aproba@1.0.4 
  │ │   │ │ ├── has-color@0.1.7 
  │ │   │ │ ├── has-unicode@2.0.1 
  │ │   │ │ ├── object-assign@4.1.0 
  │ │   │ │ ├── signal-exit@3.0.0 
  │ │   │ │ ├─┬ string-width@1.0.1 
  │ │   │ │ │ ├─┬ code-point-at@1.0.0 
  │ │   │ │ │ │ └── number-is-nan@1.0.0 
  │ │   │ │ │ └── is-fullwidth-code-point@1.0.0 
  │ │   │ │ ├─┬ strip-ansi@3.0.1 
  │ │   │ │ │ └── ansi-regex@2.0.0 
  │ │   │ │ └── wide-align@1.1.0 
  │ │   │ └── set-blocking@2.0.0 
  │ │   ├─┬ rc@1.1.6 
  │ │   │ ├── deep-extend@0.4.1 
  │ │   │ ├── ini@1.3.4 
  │ │   │ ├── minimist@1.2.0 
  │ │   │ └── strip-json-comments@1.0.4 
  │ │   ├─┬ request@2.73.0 
  │ │   │ ├── aws-sign2@0.6.0 
  │ │   │ ├── aws4@1.4.1 
  │ │   │ ├─┬ bl@1.1.2 
  │ │   │ │ └── readable-stream@2.0.6 
  │ │   │ ├── caseless@0.11.0 
  │ │   │ ├─┬ combined-stream@1.0.5 
  │ │   │ │ └── delayed-stream@1.0.0 
  │ │   │ ├── extend@3.0.0 
  │ │   │ ├── forever-agent@0.6.1 
  │ │   │ ├─┬ form-data@1.0.0-rc4 
  │ │   │ │ └── async@1.5.2 
  │ │   │ ├─┬ har-validator@2.0.6 
  │ │   │ │ ├─┬ chalk@1.1.3 
  │ │   │ │ │ ├── ansi-styles@2.2.1 
  │ │   │ │ │ ├── escape-string-regexp@1.0.5 
  │ │   │ │ │ ├── has-ansi@2.0.0 
  │ │   │ │ │ └── supports-color@2.0.0 
  │ │   │ │ ├─┬ commander@2.9.0 
  │ │   │ │ │ └── graceful-readlink@1.0.1 
  │ │   │ │ ├─┬ is-my-json-valid@2.13.1 
  │ │   │ │ │ ├── generate-function@2.0.0 
  │ │   │ │ │ ├─┬ generate-object-property@1.2.0 
  │ │   │ │ │ │ └── is-property@1.0.2 
  │ │   │ │ │ ├── jsonpointer@2.0.0 
  │ │   │ │ │ └── xtend@4.0.1 
  │ │   │ │ └─┬ pinkie-promise@2.0.1 
  │ │   │ │   └── pinkie@2.0.4 
  │ │   │ ├─┬ hawk@3.1.3 
  │ │   │ │ ├── boom@2.10.1 
  │ │   │ │ ├── cryptiles@2.0.5 
  │ │   │ │ ├── hoek@2.16.3 
  │ │   │ │ └── sntp@1.0.9 
  │ │   │ ├─┬ http-signature@1.1.1 
  │ │   │ │ ├── assert-plus@0.2.0 
  │ │   │ │ ├─┬ jsprim@1.3.0 
  │ │   │ │ │ ├── extsprintf@1.0.2 
  │ │   │ │ │ ├── json-schema@0.2.2 
  │ │   │ │ │ └── verror@1.3.6 
  │ │   │ │ └─┬ sshpk@1.8.3 
  │ │   │ │   ├── asn1@0.2.3 
  │ │   │ │   ├── assert-plus@1.0.0 
  │ │   │ │   ├─┬ dashdash@1.14.0 
  │ │   │ │   │ └── assert-plus@1.0.0 
  │ │   │ │   ├── ecc-jsbn@0.1.1 
  │ │   │ │   ├─┬ getpass@0.1.6 
  │ │   │ │   │ └── assert-plus@1.0.0 
  │ │   │ │   ├── jodid25519@1.0.2 
  │ │   │ │   ├── jsbn@0.1.0 
  │ │   │ │   └── tweetnacl@0.13.3 
  │ │   │ ├── is-typedarray@1.0.0 
  │ │   │ ├── isstream@0.1.2 
  │ │   │ ├── json-stringify-safe@5.0.1 
  │ │   │ ├─┬ mime-types@2.1.11 
  │ │   │ │ └── mime-db@1.23.0 
  │ │   │ ├── node-uuid@1.4.7 
  │ │   │ ├── oauth-sign@0.8.2 
  │ │   │ ├── qs@6.2.0 
  │ │   │ ├── stringstream@0.0.5 
  │ │   │ ├── tough-cookie@2.2.2 
  │ │   │ └── tunnel-agent@0.4.3 
  │ │   ├─┬ rimraf@2.5.3 
  │ │   │ └─┬ glob@7.0.5 
  │ │   │   ├── fs.realpath@1.0.0 
  │ │   │   ├── inflight@1.0.5 
  │ │   │   ├─┬ minimatch@3.0.2 
  │ │   │   │ └─┬ brace-expansion@1.1.5 
  │ │   │   │   ├── balanced-match@0.4.2 
  │ │   │   │   └── concat-map@0.0.1 
  │ │   │   └── path-is-absolute@1.0.0 
  │ │   ├── semver@5.2.0 
  │ │   ├─┬ tar@2.2.1 
  │ │   │ ├── block-stream@0.0.9 
  │ │   │ ├─┬ fstream@1.0.10 
  │ │   │ │ └── graceful-fs@4.1.4 
  │ │   │ └── inherits@2.0.1 
  │ │   └─┬ tar-pack@3.1.4 
  │ │     ├─┬ debug@2.2.0 
  │ │     │ └── ms@0.7.1 
  │ │     ├── fstream-ignore@1.0.5 
  │ │     ├─┬ once@1.3.3 
  │ │     │ └── wrappy@1.0.2 
  │ │     ├─┬ readable-stream@2.1.4 
  │ │     │ ├── buffer-shims@1.0.0 
  │ │     │ ├── core-util-is@1.0.2 
  │ │     │ ├── isarray@1.0.0 
  │ │     │ ├── process-nextick-args@1.0.7 
  │ │     │ ├── string_decoder@0.10.31 
  │ │     │ └── util-deprecate@1.0.2 
  │ │     └── uid-number@0.0.6 
  │ ├─┬ is-binary-path@1.0.1 
  │ │ └── binary-extensions@1.6.0 
  │ └─┬ readdirp@2.1.0 
  │   ├─┬ readable-stream@2.1.5 
  │   │ ├── buffer-shims@1.0.0 
  │   │ └── isarray@1.0.0 
  │   └── set-immediate-shim@1.0.1 
  └─┬ socket.io@1.4.8 
    ├─┬ engine.io@1.6.11 
    │ ├─┬ accepts@1.1.4 
    │ │ └── negotiator@0.4.9 
    │ ├── base64id@0.1.0 
    │ ├─┬ engine.io-parser@1.2.4 
    │ │ ├── after@0.8.1 
    │ │ ├── arraybuffer.slice@0.0.6 
    │ │ ├── base64-arraybuffer@0.1.2 
    │ │ ├── blob@0.0.4 
    │ │ ├── has-binary@0.1.6 
    │ │ └── utf8@2.1.0 
    │ └─┬ ws@1.1.0 
    │   ├── options@0.0.6 
    │   └── ultron@1.0.2 
    ├── has-binary@0.1.7 
    ├─┬ socket.io-adapter@0.4.0 
    │ └─┬ socket.io-parser@2.2.2 
    │   ├── debug@0.7.4 
    │   └── json3@3.2.6 
    ├─┬ socket.io-client@1.4.8 
    │ ├── backo2@1.0.2 
    │ ├── component-bind@1.0.0 
    │ ├── component-emitter@1.2.0 
    │ ├─┬ engine.io-client@1.6.11 
    │ │ ├── component-inherit@0.0.3 
    │ │ ├── has-cors@1.1.0 
    │ │ ├── parsejson@0.0.1 
    │ │ ├── parseqs@0.0.2 
    │ │ ├── ws@1.0.1 
    │ │ ├── xmlhttprequest-ssl@1.5.1 
    │ │ └── yeast@0.1.2 
    │ ├── indexof@0.0.1 
    │ ├── object-component@0.0.3 
    │ ├─┬ parseuri@0.0.4 
    │ │ └─┬ better-assert@1.0.2 
    │ │   └── callsite@1.0.0 
    │ └── to-array@0.1.4 
    └─┬ socket.io-parser@2.2.6 
      ├── benchmark@1.0.0 
      ├── component-emitter@1.1.2 
      └── json3@3.3.2 

________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => npm install http-server --save-dev
ng2Boilerplater@0.7.2 /Users/crash/git/ng2Boilerplate
└─┬ http-server@0.9.0 
  ├── colors@1.0.3 
  ├── corser@2.0.1 
  ├─┬ ecstatic@1.4.1 
  │ ├── he@0.5.0 
  │ ├── mime@1.3.4 
  │ ├── minimist@1.2.0 
  │ └── url-join@1.1.0 
  ├─┬ http-proxy@1.15.1 
  │ ├── eventemitter3@1.2.0 
  │ └── requires-port@1.0.0 
  ├── opener@1.4.2 
  ├── optimist@0.6.1 
  ├─┬ portfinder@0.4.0 
  │ └── async@0.9.0 
  └── union@0.4.4 

________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => jspm install systemjs-hot-reloader --dev
     Updating registry cache...
     Looking up github:capaj/systemjs-hot-reloader
     Looking up npm:debug
     Looking up npm:weakee
     Looking up npm:ms
ok   Installed npm:debug@^2.2.0 (2.2.0)
ok   Installed npm:ms@0.7.1 (0.7.1)
ok   Installed npm:weakee@^1.0.0 (1.0.0)
     Looking up github:socketio/socket.io-client
ok   Installed github:socketio/socket.io-client@^1.4.4 (1.4.8)
ok   Installed systemjs-hot-reloader as github:capaj/systemjs-hot-reloader@^0.6.0 (0.6.0)
     Installed Forks

                               npm:isarray 0.0.1 1.0.0

     To inspect individual package constraints, use jspm inspect registry:name.


ok   Install complete.
________________________________________________________________________________
| ~/git/ng2Boilerplate @ crash (crash) 
| => npm install
npm WARN deprecated es6-module-loader@0.17.11: This project has been deprecated for "npm install es-module-loader" based on the newer loader spec.
npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated lodash-node@2.4.1: This package is discontinued. Use lodash@^4.0.0.
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
npm WARN deprecated lodash.assign@4.2.0: This package is deprecated. Use Object.assign.
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
(node:1591) Warning: Possible EventEmitter memory leak detected. 11 error listeners added. Use emitter.setMaxListeners() to increase limit
npm WARN deprecated tough-cookie@2.2.2: ReDoS vulnerability parsing Set-Cookie https://nodesecurity.io/advisories/130
npm WARN deprecated lodash@1.0.2: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^4.0.0.
npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.

> typechecker@2.0.8 preinstall /Users/crash/git/ng2Boilerplate/node_modules/.staging/typechecker-51948bb7
> node ./cyclic.js

npm WARN prefer global marked@0.3.6 should be installed with -g

> ng2Boilerplater@0.7.2 postinstall /Users/crash/git/ng2Boilerplate
> jspm install && gulp development

     Looking up npm:ng2-bootstrap
     Looking up npm:@angular/forms
     Looking up npm:@angular/common
     Looking up npm:@angular/compiler
     Looking up npm:@angular/core
     Looking up npm:@angular/http
     Looking up npm:@angular/platform-browser
     Looking up npm:@angular/platform-browser-dynamic
     Looking up npm:angular2-google-maps
     Looking up npm:angular2-polyfill
     Looking up npm:angular2-redux-util
     Looking up npm:angular2-uuid
     Looking up npm:bootbox
     Looking up npm:clean-css
     Looking up npm:highcharts
     Looking up npm:immutable
     Looking up npm:is-equal
     Looking up npm:jquery
     Looking up npm:lodash
     Looking up npm:moment
     Looking up npm:platform
     Looking up npm:redux-thunk
     Looking up npm:reselect
     Looking up npm:@angular/router
     Looking up npm:typescript
     Looking up npm:underscore
     Looking up npm:xml2js
     Looking up npm:babel-core
     Looking up npm:core-js
     Looking up npm:babel-runtime
     Looking up npm:plugin-typescript
     Updating registry cache...

err  No version match found for npm:typescript@^1.9

warn Installation changes not saved.

npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/common@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/compiler@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/core@2.0.0 but none was installed.
npm WARN ng2-bootstrap@1.1.5 requires a peer of @angular/forms@2.0.0 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/common@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/compiler@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/core@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of @angular/platform-browser-dynamic@2.0.0-rc.6 but none was installed.
npm WARN angular2-google-maps@0.14.0 requires a peer of rxjs@5.0.0-beta.11 but none was installed.
npm WARN tslint-loader@2.1.5 requires a peer of tslint@^3.0.0 but none was installed.
npm WARN gulp-tslint@4.3.5 requires a peer of tslint@^3 || >=3.1.0-dev || >=3.2.0-dev || >=3.2.1-dev || >= 3.2.2-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.7.0-dev but none was installed.
npm ERR! Darwin 16.0.0
npm ERR! argv "/usr/local/Cellar/node/6.6.0/bin/node" "/usr/local/bin/npm" "install"
npm ERR! node v6.6.0
npm ERR! npm  v3.10.7
npm ERR! code ELIFECYCLE
npm ERR! ng2Boilerplater@0.7.2 postinstall: `jspm install && gulp development`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the ng2Boilerplater@0.7.2 postinstall script 'jspm install && gulp development'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the ng2Boilerplater package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     jspm install && gulp development
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs ng2Boilerplater
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls ng2Boilerplater
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/crash/git/ng2Boilerplate/npm-debug.log

npm-debug.log.zip

@bjornharvold
Copy link
Author

They screenshot I posted above says it cannot find a json file. This json file doesn't exist even after the plugin-typescript is installed.

http://localhost:8080/jspm_packages/npm/plugin-typescript@5.1.2.json

@born2net
Copy link
Owner

I did, works for me.. on Win 10 x64
are u on mac?

@born2net
Copy link
Owner

ok I think I know the issue, as per docs, you need to run jspm version 0.17
do jspm --version`` needs to be``0.17.0-beta.28

@born2net
Copy link
Owner

born2net commented Sep 25, 2016

globally
npm install -g jspm@beta
and locally
npm install jspm@beta

@bjornharvold
Copy link
Author

bjornharvold commented Sep 26, 2016

Yes, I am on a Mac.

I got it up and running. These are the extra commands you need to add to your readme in order to get it to run:

Update Typescript from 1.8 to 2.0.3 in gulp-typescript/package.json
npm install -g jspm@beta
npm install jspm@beta
jspm install npm:typescript@2.0.3
jspm install npm:plugin-typescript@5.1.2
jspm install npm:socket.io-client@^1.4.8
jspm install bootstrap@3.3.6
jspm install reflect-metadata@0.1.3

I don't know why these other dependencies are not being downloaded automatically.

@born2net
Copy link
Owner

born2net commented Sep 26, 2016

ok good, gulp-typescript updated today to 2.0 so we are good
added: npm install -g jspm@beta and npm install jspm@beta to the docs which should take care of the rest of the items

tx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants