Skip to content

Instantly share code, notes, and snippets.

@tommymarshall
Created December 6, 2015 16:19
Show Gist options
  • Save tommymarshall/83cb7d05f22806cf73bd to your computer and use it in GitHub Desktop.
Save tommymarshall/83cb7d05f22806cf73bd to your computer and use it in GitHub Desktop.
Errors encountered when installing gulp-starter
npm WARN engine [email protected]: wanted: {"node":">=0.10.40"} (current: {"node":"0.10.33","npm":"1.4.28"})
> [email protected] postinstall /home/forge/default/node_modules/gulp-sass/node_modules/node-sass/node_modules/cross-spawn/node_modules/spawn-sync
> node postinstall
Installing native dependencies (this may take up to a minute)
> [email protected] install /home/forge/default/node_modules/gulp-sass/node_modules/node-sass
> node scripts/install.js
Binary downloaded and installed at /home/forge/default/node_modules/gulp-sass/node_modules/node-sass/vendor/linux-x64-11/binding.node
> [email protected] postinstall /home/forge/default/node_modules/gulp-imagemin/node_modules/imagemin/node_modules/imagemin-gifsicle/node_modules/gifsicle
> node lib/install.js
✔ gifsicle pre-build test passed successfully
> [email protected] postinstall /home/forge/default/node_modules/gulp-sass/node_modules/node-sass
> node scripts/build.js
` /home/forge/default/node_modules/gulp-sass/node_modules/node-sass/vendor/linux-x64-11/binding.node ` exists.
testing binary.
Binary is fine; exiting.
> [email protected] postinstall /home/forge/default/node_modules/gulp-imagemin/node_modules/imagemin/node_modules/imagemin-optipng/node_modules/optipng-bin
> node lib/install.js
✔ optipng pre-build test passed successfully
> [email protected] postinstall /home/forge/default/node_modules/gulp-imagemin/node_modules/imagemin/node_modules/imagemin-jpegtran/node_modules/jpegtran-bin
> node lib/install.js
✔ jpegtran pre-build test passed successfully
npm WARN engine [email protected]: wanted: {"node":">=0.10.40"} (current: {"node":"0.10.33","npm":"1.4.28"})
npm WARN engine [email protected]: wanted: {"node":">=0.10.40"} (current: {"node":"0.10.33","npm":"1.4.28"})
npm WARN engine [email protected]: wanted: {"node":">=0.10.40"} (current: {"node":"0.10.33","npm":"1.4.28"})
> [email protected] install /home/forge/default/node_modules/gulp-iconfont/node_modules/gulp-ttf2woff2/node_modules/ttf2woff2
> (node-gyp rebuild > builderror.log) || (exit 0)
../csrc/addon.cc:9:20: error: ‘FunctionCallbackInfo’ does not name a type
void Convert(const FunctionCallbackInfo<Value>& args) {
^
../csrc/addon.cc:9:20: error: ISO C++ forbids declaration of ‘parameter’ with no type [-fpermissive]
../csrc/addon.cc:9:40: error: expected ‘,’ or ‘...’ before ‘<’ token
void Convert(const FunctionCallbackInfo<Value>& args) {
^
../csrc/addon.cc: In function ‘void Convert(int)’:
../csrc/addon.cc:11:28: error: no matching function for call to ‘v8::HandleScope::HandleScope(v8::Isolate*&)’
HandleScope scope(isolate);
^
../csrc/addon.cc:11:28: note: candidates are:
In file included from /home/forge/.node-gyp/0.10.33/src/node.h:62:0,
from ../csrc/addon.cc:1:
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:473:3: note: v8::HandleScope::HandleScope(const v8::HandleScope&)
HandleScope(const HandleScope&);
^
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:473:3: note: no known conversion for argument 1 from ‘v8::Isolate*’ to ‘const v8::HandleScope&’
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:448:3: note: v8::HandleScope::HandleScope()
HandleScope();
^
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:448:3: note: candidate expects 0 arguments, 1 provided
../csrc/addon.cc:13:7: error: ‘args’ was not declared in this scope
if (args.Length() < 1) {
^
../csrc/addon.cc:14:14: error: ‘class v8::Isolate’ has no member named ‘ThrowException’
isolate->ThrowException(Exception::TypeError(
^
../csrc/addon.cc:15:9: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
String::NewFromUtf8(isolate, "Wrong number of arguments")));
^
../csrc/addon.cc:19:8: error: ‘args’ was not declared in this scope
if (!args[0]->IsObject()) {
^
../csrc/addon.cc:20:14: error: ‘class v8::Isolate’ has no member named ‘ThrowException’
isolate->ThrowException(Exception::TypeError(
^
../csrc/addon.cc:21:9: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
String::NewFromUtf8(isolate, "Not an object")));
^
../csrc/addon.cc:25:31: error: ‘args’ was not declared in this scope
Local<Object> inputBuffer = args[0]->ToObject();
^
../csrc/addon.cc:28:14: error: ‘class v8::Isolate’ has no member named ‘ThrowException’
isolate->ThrowException(Exception::TypeError(
^
../csrc/addon.cc:29:9: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
String::NewFromUtf8(isolate, "First arg should be a Buffer")));
^
../csrc/addon.cc:45:14: error: ‘class v8::Isolate’ has no member named ‘ThrowException’
isolate->ThrowException(Exception::TypeError(
^
../csrc/addon.cc:46:9: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
String::NewFromUtf8(isolate, "Could not convert the given font.")));
^
../csrc/addon.cc:49:70: error: no matching function for call to ‘node::Buffer::New(v8::Isolate*&, size_t&)’
Local<Object> slowBuffer = node::Buffer::New(isolate, output_length);
^
../csrc/addon.cc:49:70: note: candidates are:
In file included from ../csrc/addon.cc:2:0:
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:116:33: note: static v8::Handle<v8::Object> node::Buffer::New(v8::Handle<v8::String>)
static v8::Handle<v8::Object> New(v8::Handle<v8::String> string);
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:116:33: note: candidate expects 1 argument, 2 provided
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:121:18: note: static node::Buffer* node::Buffer::New(size_t)
static Buffer* New(size_t length);
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:121:18: note: candidate expects 1 argument, 2 provided
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:123:18: note: static node::Buffer* node::Buffer::New(const char*, size_t)
static Buffer* New(const char *data, size_t len);
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:123:18: note: no known conversion for argument 1 from ‘v8::Isolate*’ to ‘const char*’
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:125:18: note: static node::Buffer* node::Buffer::New(char*, size_t, node::Buffer::free_callback, void*)
static Buffer* New(char *data, size_t length,
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:125:18: note: candidate expects 4 arguments, 2 provided
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:129:32: note: static v8::Handle<v8::Value> node::Buffer::New(const v8::Arguments&)
static v8::Handle<v8::Value> New(const v8::Arguments &args);
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:129:32: note: candidate expects 1 argument, 2 provided
../csrc/addon.cc:52:38: error: ‘class v8::Isolate’ has no member named ‘GetCurrentContext’
Local<Object> globalObj = isolate->GetCurrentContext()->Global();
^
../csrc/addon.cc:54:42: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
Local<Function>::Cast(globalObj->Get(String::NewFromUtf8(isolate, "Buffer")));
^
../csrc/addon.cc:57:57: error: no matching function for call to ‘v8::Number::New(v8::Isolate*&, int)’
Number::New(isolate, static_cast<int>(output_length)),
^
../csrc/addon.cc:57:57: note: candidate is:
In file included from /home/forge/.node-gyp/0.10.33/src/node.h:62:0,
from ../csrc/addon.cc:1:
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:1381:33: note: static v8::Local<v8::Number> v8::Number::New(double)
V8EXPORT static Local<Number> New(double value);
^
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:1381:33: note: candidate expects 1 argument, 2 provided
../csrc/addon.cc:58:27: error: no matching function for call to ‘v8::Number::New(v8::Isolate*&, int)’
Number::New(isolate, 0)
^
../csrc/addon.cc:58:27: note: candidate is:
In file included from /home/forge/.node-gyp/0.10.33/src/node.h:62:0,
from ../csrc/addon.cc:1:
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:1381:33: note: static v8::Local<v8::Number> v8::Number::New(double)
V8EXPORT static Local<Number> New(double value);
^
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:1381:33: note: candidate expects 1 argument, 2 provided
../csrc/addon.cc: In function ‘void Init(v8::Handle<v8::Object>)’:
../csrc/addon.cc:65:46: error: no matching function for call to ‘SetMethod(v8::Handle<v8::Object>&, const char [8], void (&)(int))’
NODE_SET_METHOD(exports, "convert", Convert);
^
../csrc/addon.cc:65:46: note: candidate is:
In file included from ../csrc/addon.cc:1:0:
/home/forge/.node-gyp/0.10.33/src/node.h:112:6: note: template<class target_t> void node::SetMethod(target_t, const char*, v8::InvocationCallback)
void SetMethod(target_t obj, const char* name,
^
/home/forge/.node-gyp/0.10.33/src/node.h:112:6: note: template argument deduction/substitution failed:
../csrc/addon.cc:65:46: note: cannot convert ‘Convert’ (type ‘void(int)’) to type ‘v8::InvocationCallback {aka v8::Handle<v8::Value> (*)(const v8::Arguments&)}’
NODE_SET_METHOD(exports, "convert", Convert);
^
make: *** [Release/obj.target/addon/csrc/addon.o] Error 1
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/home/forge/.nvm/v0.10.33/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:267:23)
gyp ERR! stack at ChildProcess.emit (events.js:98:17)
gyp ERR! stack at Process.ChildProcess._handle.onexit (child_process.js:810:12)
gyp ERR! System Linux 3.13.0-68-generic
gyp ERR! command "node" "/home/forge/.nvm/v0.10.33/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /home/forge/default/node_modules/gulp-iconfont/node_modules/gulp-ttf2woff2/node_modules/ttf2woff2
gyp ERR! node -v v0.10.33
gyp ERR! node-gyp -v v1.0.1
gyp ERR! not ok
[email protected] node_modules/gulp-rename
[email protected] node_modules/object-assign
[email protected] node_modules/pretty-hrtime
[email protected] node_modules/open
[email protected] node_modules/require-dir
[email protected] node_modules/morgan
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
└── [email protected] ([email protected])
[email protected] node_modules/merge-stream
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-sequence
└── [email protected]
[email protected] node_modules/vinyl-source-stream
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/compression
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-rev
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/babel-loader
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/express
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/del
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-svgstore
└── [email protected] ([email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-minify-css
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-sizereport
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-watch
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/lodash
[email protected] node_modules/gulp
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected]
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-changed
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-data
├── [email protected]
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-if
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-nunjucks-render
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-uglify
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-util
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-rev-napkin
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-htmlmin
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-gh-pages
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-sourcemaps
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected])
[email protected] node_modules/gulp-notify
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-filesize
├── [email protected]
├── [email protected]
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/webpack
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-rev-replace
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-sass
├── [email protected]
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/gulp-autoprefixer
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected])
[email protected] node_modules/babel-core
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
└── [email protected]
[email protected] node_modules/gulp-imagemin
├── [email protected] ([email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected])
└── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
[email protected] node_modules/browser-sync
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected]
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected]
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected])
[email protected] node_modules/gulp-iconfont
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected], [email protected])
├── [email protected] ([email protected])
├── [email protected] ([email protected], [email protected], [email protected])
└── [email protected] ([email protected], [email protected], [email protected])
forge@starbnb:~/default$ npm run production
> [email protected] production /home/forge/default
> gulp production
/home/forge/default/node_modules/gulp-iconfont/node_modules/gulp-ttf2woff2/node_modules/ttf2woff2/jssrc/ttf2woff2.js:1
aughtException",(function(ex){if(!(ex instanceof ExitStatus)){throw ex}}));Mod
^
Error: Unable to allocate ArrayBuffer.
at Object.<anonymous> (/home/forge/default/node_modules/gulp-iconfont/node_modules/gulp-ttf2woff2/node_modules/ttf2woff2/jssrc/ttf2woff2.js:1:23345)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (/home/forge/default/node_modules/gulp-iconfont/node_modules/gulp-ttf2woff2/node_modules/ttf2woff2/jssrc/index.js:3:27)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
npm ERR! [email protected] production: `gulp production`
npm ERR! Exit status 7
npm ERR!
npm ERR! Failed at the [email protected] production script.
npm ERR! This is most likely a problem with the gulp-starter package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! gulp production
npm ERR! You can get their info via:
npm ERR! npm owner ls gulp-starter
npm ERR! There is likely additional logging output above.
npm ERR! System Linux 3.13.0-68-generic
npm ERR! command "/home/forge/.nvm/v0.10.33/bin/node" "/home/forge/.nvm/v0.10.33/bin/npm" "run" "production"
npm ERR! cwd /home/forge/default
npm ERR! node -v v0.10.33
npm ERR! npm -v 1.4.28
npm ERR! code ELIFECYCLE
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /home/forge/default/npm-debug.log
npm ERR! not ok code 0
forge@starbnb:~/default$ npm -v
1.4.28
forge@starbnb:~/default$ sudo npm install npm -g
[sudo] password for forge:
/usr/bin/npm -> /usr/lib/node_modules/npm/bin/npm-cli.js
[email protected] /usr/lib/node_modules/npm
forge@starbnb:~/default$ npm -v
1.4.28
forge@starbnb:~/default$ npm -v
1.4.28
forge@starbnb:~/default$ curl -L https://npmjs.com/install.sh | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 193 100 193 0 0 511 0 --:--:-- --:--:-- --:--:-- 511
100 6263 100 6263 0 0 7410 0 --:--:-- --:--:-- --:--:-- 7410
tar=/bin/tar
version:
tar (GNU tar) 1.27.1
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by John Gilmore and Jay Fenlason.
install npm@latest
fetching: http://registry.npmjs.org/npm/-/npm-3.5.1.tgz
- [email protected] node_modules/npm/node_modules/abbrev
- [email protected] node_modules/npm/node_modules/ansi
- [email protected] node_modules/npm/node_modules/ansicolors
- [email protected] node_modules/npm/node_modules/ansistyles
- [email protected] node_modules/npm/node_modules/archy
- [email protected] node_modules/npm/node_modules/char-spinner
- [email protected] node_modules/npm/node_modules/child-process-close
- [email protected] node_modules/npm/node_modules/chmodr
- [email protected] node_modules/npm/node_modules/chownr
- [email protected] node_modules/npm/node_modules/columnify/node_modules/strip-ansi/node_modules/ansi-regex
- [email protected] node_modules/npm/node_modules/columnify/node_modules/strip-ansi
- [email protected] node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults/node_modules/clone
- [email protected] node_modules/npm/node_modules/columnify/node_modules/wcwidth/node_modules/defaults
- [email protected] node_modules/npm/node_modules/columnify/node_modules/wcwidth
- [email protected] node_modules/npm/node_modules/columnify
- [email protected] node_modules/npm/node_modules/editor
- [email protected] node_modules/npm/node_modules/github-url-from-git
- [email protected] node_modules/npm/node_modules/github-url-from-username-repo
- [email protected] node_modules/npm/node_modules/graceful-fs
- [email protected] node_modules/npm/node_modules/inherits
- [email protected] node_modules/npm/node_modules/block-stream
- [email protected] node_modules/npm/node_modules/ini
- [email protected] node_modules/npm/node_modules/lockfile
- [email protected] node_modules/npm/node_modules/lru-cache
- [email protected] node_modules/npm/node_modules/minimatch/node_modules/sigmund
- [email protected] node_modules/npm/node_modules/minimatch
- [email protected] node_modules/npm/node_modules/mkdirp/node_modules/minimist
- [email protected] node_modules/npm/node_modules/mkdirp
- [email protected] node_modules/npm/node_modules/cmd-shim
- [email protected] node_modules/npm/node_modules/nopt
- [email protected] node_modules/npm/node_modules/npm-cache-filename
- [email protected] node_modules/npm/node_modules/npm-user-validate
- [email protected] node_modules/npm/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list
- [email protected] node_modules/npm/node_modules/npmconf/node_modules/config-chain
- [email protected] node_modules/npm/node_modules/npmlog
- [email protected] node_modules/npm/node_modules/once
- [email protected] node_modules/npm/node_modules/inflight
- [email protected] node_modules/npm/node_modules/glob
- [email protected] node_modules/npm/node_modules/opener
- [email protected] node_modules/npm/node_modules/osenv
- [email protected] node_modules/npm/node_modules/path-is-inside
- [email protected] node_modules/npm/node_modules/read-installed/node_modules/util-extend
- [email protected] node_modules/npm/node_modules/read/node_modules/mute-stream
- [email protected] node_modules/npm/node_modules/read
- [email protected] node_modules/npm/node_modules/init-package-json/node_modules/promzard
- [email protected] node_modules/npm/node_modules/request/node_modules/aws-sign2
- [email protected] node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is
- [email protected] node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray
- [email protected] node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder
- [email protected] node_modules/npm/node_modules/request/node_modules/bl/node_modules/readable-stream
- [email protected] node_modules/npm/node_modules/request/node_modules/bl
- [email protected] node_modules/npm/node_modules/request/node_modules/caseless
- [email protected] node_modules/npm/node_modules/request/node_modules/forever-agent
- [email protected] node_modules/npm/node_modules/request/node_modules/form-data/node_modules/async
- [email protected] node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream
- [email protected] node_modules/npm/node_modules/request/node_modules/form-data/node_modules/combined-stream
- [email protected] node_modules/npm/node_modules/request/node_modules/form-data/node_modules/mime
- [email protected] node_modules/npm/node_modules/request/node_modules/form-data
- [email protected] node_modules/npm/node_modules/request/node_modules/hawk/node_modules/hoek
- [email protected] node_modules/npm/node_modules/request/node_modules/hawk/node_modules/boom
- [email protected] node_modules/npm/node_modules/request/node_modules/hawk/node_modules/cryptiles
- [email protected] node_modules/npm/node_modules/request/node_modules/hawk/node_modules/sntp
- [email protected] node_modules/npm/node_modules/request/node_modules/hawk
- [email protected] node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/asn1
- [email protected] node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/assert-plus
- [email protected] node_modules/npm/node_modules/request/node_modules/http-signature/node_modules/ctype
- [email protected] node_modules/npm/node_modules/request/node_modules/http-signature
- [email protected] node_modules/npm/node_modules/request/node_modules/json-stringify-safe
- [email protected] node_modules/npm/node_modules/request/node_modules/mime-types
- [email protected] node_modules/npm/node_modules/request/node_modules/node-uuid
- [email protected] node_modules/npm/node_modules/request/node_modules/oauth-sign
- [email protected] node_modules/npm/node_modules/request/node_modules/qs
- [email protected] node_modules/npm/node_modules/request/node_modules/stringstream
- [email protected] node_modules/npm/node_modules/request/node_modules/tough-cookie/node_modules/punycode
- [email protected] node_modules/npm/node_modules/request/node_modules/tough-cookie
- [email protected] node_modules/npm/node_modules/request/node_modules/tunnel-agent
- [email protected] node_modules/npm/node_modules/request
- [email protected] node_modules/npm/node_modules/retry
- [email protected] node_modules/npm/node_modules/rimraf
- [email protected] node_modules/npm/node_modules/fstream
- [email protected] node_modules/npm/node_modules/fstream-npm/node_modules/fstream-ignore
- [email protected] node_modules/npm/node_modules/fstream-npm
- [email protected] node_modules/npm/node_modules/semver
- [email protected] node_modules/npm/node_modules/read-package-json/node_modules/normalize-package-data
- [email protected] node_modules/npm/node_modules/read-package-json
- [email protected] node_modules/npm/node_modules/npm-install-checks
- [email protected] node_modules/npm/node_modules/init-package-json
- [email protected] node_modules/npm/node_modules/sha
- [email protected] node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/core-util-is
- [email protected] node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/isarray
- [email protected] node_modules/npm/node_modules/slide
- [email protected] node_modules/npm/node_modules/read-installed
- [email protected] node_modules/npm/node_modules/npm-registry-client
- [email protected] node_modules/npm/node_modules/sorted-object
- [email protected] node_modules/npm/node_modules/tar
- [email protected] node_modules/npm/node_modules/text-table
- [email protected] node_modules/npm/node_modules/uid-number
- [email protected] node_modules/npm/node_modules/npmconf
- [email protected] node_modules/npm/node_modules/which
- [email protected] node_modules/npm/node_modules/node-gyp
- [email protected] node_modules/npm
- [email protected] node_modules/npm/node_modules/sha/node_modules/readable-stream
- [email protected] node_modules/npm/node_modules/sha/node_modules/readable-stream/node_modules/string_decoder
> [email protected] prepublish /tmp/npm.3706/package
> node bin/npm-cli.js prune --prefix=. --no-global && rimraf test/*/*/node_modules && make -j4 doc
sh: 1: rimraf: not found
/home/forge/.nvm/v0.10.33/bin/npm -> /home/forge/.nvm/v0.10.33/lib/node_modules/npm/bin/npm-cli.js
/home/forge/.nvm/v0.10.33/lib
└─┬ [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └─┬ [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├── [email protected]
└── [email protected]
It worked
forge@starbnb:~/default$ npm -v
3.5.1
forge@starbnb:~/default$ rm -rf node_modules/
npm inforge@starbnb:~/default$ npm install
loadDep:sntp → request ▀ ╢████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
loadDep:sntp → get ▌ ╢████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
loadDep:sntp → network ▀ ╢████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
npm WARN deprecated [email protected]: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^3.0.0
loadDep:ttf2woff2 → 304 ▀ ╢███████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
loadDep:csso → 304 ▄ ╢███████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
extract:parsejson → gunzT ▄ ╢████████████████████████████████████████████████████░░░░░░░░░░░░░░░░░░░░░░╟
FATAL ERROR: Evacuation Allocation failed - process out of memory
Aborted (core dumped)
forge@starbnb:~/default$ Write failed: Broken pipe
●° ~ ssh [email protected]
Welcome to Ubuntu 14.04.3 LTS (GNU/Linux 3.13.0-68-generic x86_64)
* Documentation: https://help.ubuntu.com/
System information as of Sat Dec 5 17:59:48 EST 2015
System load: 0.02 Processes: 89
Usage of /: 10.6% of 29.40GB Users logged in: 1
Memory usage: 59% IP address for eth0: 104.236.51.99
Swap usage: 0% IP address for eth1: 10.132.28.220
Graph this data and manage this system at:
https://landscape.canonical.com/
Last login: Sat Dec 5 17:59:49 2015 from pool-72-66-104-52.washdc.fios.verizon.net
forge@starbnb:~$ ls
default npm-debug.log
forge@starbnb:~$ cat npm-debug.log
0 info it worked if it ends with ok
1 verbose cli [ '/home/forge/.nvm/v0.10.33/bin/node',
1 verbose cli '/home/forge/.nvm/v0.10.33/bin/npm',
1 verbose cli 'run',
1 verbose cli 'production' ]
2 info using [email protected]
3 info using [email protected]
4 verbose config Skipping project config: /home/forge/.npmrc. (matches userconfig)
5 error Error: ENOENT, open '/home/forge/package.json'
6 error If you need help, you may report this *entire* log,
6 error including the npm and node versions, at:
6 error <http://github.com/npm/npm/issues>
7 error System Linux 3.13.0-68-generic
8 error command "/home/forge/.nvm/v0.10.33/bin/node" "/home/forge/.nvm/v0.10.33/bin/npm" "run" "production"
9 error cwd /home/forge
10 error node -v v0.10.33
11 error npm -v 1.4.28
12 error path /home/forge/package.json
13 error code ENOENT
14 error errno 34
15 verbose exit [ 34, true ]
forge@starbnb:~$ rm npm-debug.log
forge@starbnb:~$ cd default/
forge@starbnb:~/default$ npm run production
> [email protected] production /home/forge/default
> gulp production
module.js:338
throw err;
^
Error: Cannot find module 'require-dir'
at Function.Module._resolveFilename (module.js:336:15)
at Function.Module._load (module.js:278:25)
at Module.require (module.js:365:17)
at require (module.js:384:17)
at Object.<anonymous> (/home/forge/default/gulpfile.js/index.js:14:18)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Module.require (module.js:365:17)
npm ERR! Linux 3.13.0-68-generic
npm ERR! argv "node" "/usr/bin/npm" "run" "production"
npm ERR! node v0.12.9
npm ERR! npm v3.5.1
npm ERR! code ELIFECYCLE
npm ERR! [email protected] production: `gulp production`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] production script 'gulp production'.
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 gulp-starter package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! gulp production
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs gulp-starter
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls gulp-starter
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /home/forge/default/npm-debug.log
forge@starbnb:~/default$ rm -rf node_modules/
forge@starbnb:~/default$ git status
On branch production
Your branch is up-to-date with 'origin/production'.
nothing to commit, working directory clean
forge@starbnb:~/default$ nano package.json
forge@starbnb:~/default$ npm install
npm WARN deprecated [email protected]: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^3.0.0
generateActionsToTake → d ▄ ╢███████████████████████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
#
# Fatal error in ../deps/v8/src/heap/store-buffer.cc, line 132
# CHECK(old_virtual_memory_->Commit(reinterpret_cast<void*>(old_limit_), grow * kPointerSize, false)) failed
#
==== C stack trace ===============================
1: V8_Fatal
2: v8::internal::StoreBuffer::EnsureSpace(long)
3: v8::internal::StoreBuffer::Compact()
4: v8::internal::MarkCompactCollector::MigrateObject(v8::internal::HeapObject*, v8::internal::HeapObject*, int, v8::internal::AllocationSpace)
5: v8::internal::MarkCompactCollector::TryPromoteObject(v8::internal::HeapObject*, int)
6: v8::internal::MarkCompactCollector::DiscoverAndEvacuateBlackObjectsOnPage(v8::internal::NewSpace*, v8::internal::NewSpacePage*)
7: v8::internal::MarkCompactCollector::EvacuateNewSpace()
8: v8::internal::MarkCompactCollector::EvacuateNewSpaceAndCandidates()
9: v8::internal::MarkCompactCollector::SweepSpaces()
10: v8::internal::MarkCompactCollector::CollectGarbage()
11: v8::internal::Heap::MarkCompact()
12: v8::internal::Heap::PerformGarbageCollection(v8::internal::GarbageCollector, v8::GCCallbackFlags)
13: v8::internal::Heap::CollectGarbage(v8::internal::GarbageCollector, char const*, char const*, v8::GCCallbackFlags)
14: v8::internal::Factory::NewFillerObject(int, bool, v8::internal::AllocationSpace)
15: v8::internal::Runtime_AllocateInTargetSpace(int, v8::internal::Object**, v8::internal::Isolate*)
16: ??
Illegal instruction (core dumped)
forge@starbnb:~/default$ ls
favicon-16x16.png license.txt wp-activate.php wp-content wp-mail.php
favicon-32x32.png npm-debug.log wp-admin wp-cron.php wp-settings.php
favicon.ico npm-shrinkwrap.json wp-blog-header.php wp-includes wp-signup.php
gulpfile.js package.json wp-comments-post.php wp-links-opml.php wp-trackback.php
index.php readme.html wp-config.php.sample wp-load.php xmlrpc.php
LICENSE README.md wp-config-sample.php wp-login.php
forge@starbnb:~/default$
Broadcast message from root@starbnb
(unknown) at 10:54 ...
The system is going down for reboot NOW!
Connection to 104.236.51.99 closed by remote host.
Connection to 104.236.51.99 closed.
●° ~ ssh [email protected]
Welcome to Ubuntu 14.04.3 LTS (GNU/Linux 3.13.0-68-generic x86_64)
* Documentation: https://help.ubuntu.com/
System information as of Sun Dec 6 10:54:36 EST 2015
System load: 0.0 Memory usage: 5% Processes: 51
Usage of /: 11.3% of 29.40GB Swap usage: 0% Users logged in: 0
Graph this data and manage this system at:
https://landscape.canonical.com/
Last login: Sun Dec 6 10:48:03 2015 from pool-72-66-104-52.washdc.fios.verizon.net
forge@starbnb:~$ cd default/
forge@starbnb:~/default$ ls
favicon-16x16.png license.txt wp-activate.php wp-content wp-mail.php
favicon-32x32.png npm-debug.log wp-admin wp-cron.php wp-settings.php
favicon.ico npm-shrinkwrap.json wp-blog-header.php wp-includes wp-signup.php
gulpfile.js package.json wp-comments-post.php wp-links-opml.php wp-trackback.php
index.php readme.html wp-config.php.sample wp-load.php xmlrpc.php
LICENSE README.md wp-config-sample.php wp-login.php
forge@starbnb:~/default$ rm npm-debug.log
forge@starbnb:~/default$ rm npm-shrinkwrap.json
forge@starbnb:~/default$ npm -v
nod3.5.1
forge@starbnb:~/default$ node -v
v0.12.9
forge@starbnb:~/default$ nvm use v0.10.33
Now using node v0.10.33 (npm v3.5.1)
forge@starbnb:~/default$ git status
On branch production
Your branch is up-to-date with 'origin/production'.
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
deleted: npm-shrinkwrap.json
modified: package.json
no changes added to commit (use "git add" and/or "git commit -a")
forge@starbnb:~/default$ npm install
loadDep:sntp → request ▐ ╢████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
loadDep:sntp → addNamed ▐ ╢████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
loadDep:sntp → resolveWit ▀ ╢████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
npm WARN deprecated [email protected]: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^3.0.0
loadDep:ttf2woff2 → 304 ▀ ╢███████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
loadDep:csso → 304 ▀ ╢███████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟
npm WARN prefer global [email protected] should be installed with -g
npm WARN prefer global [email protected] should be installed with -g
npm WARN prefer global [email protected] should be installed with -g
npm WARN prefer global [email protected] should be installed with -g
> [email protected] install /home/forge/default/node_modules/bufferutil
> node-gyp rebuild
make: Entering directory `/home/forge/default/node_modules/bufferutil/build'
CXX(target) Release/obj.target/bufferutil/src/bufferutil.o
SOLINK_MODULE(target) Release/obj.target/bufferutil.node
COPY Release/bufferutil.node
make: Leaving directory `/home/forge/default/node_modules/bufferutil/build'
> [email protected] install /home/forge/default/node_modules/utf-8-validate
> node-gyp rebuild
make: Entering directory `/home/forge/default/node_modules/utf-8-validate/build'
CXX(target) Release/obj.target/validation/src/validation.o
SOLINK_MODULE(target) Release/obj.target/validation.node
COPY Release/validation.node
make: Leaving directory `/home/forge/default/node_modules/utf-8-validate/build'
> [email protected] install /home/forge/default/node_modules/ttf2woff2
> (node-gyp rebuild > builderror.log) || (exit 0)
../csrc/addon.cc:9:20: error: ‘FunctionCallbackInfo’ does not name a type
void Convert(const FunctionCallbackInfo<Value>& args) {
^
../csrc/addon.cc:9:20: error: ISO C++ forbids declaration of ‘parameter’ with no type [-fpermissive]
../csrc/addon.cc:9:40: error: expected ‘,’ or ‘...’ before ‘<’ token
void Convert(const FunctionCallbackInfo<Value>& args) {
^
../csrc/addon.cc: In function ‘void Convert(int)’:
../csrc/addon.cc:11:28: error: no matching function for call to ‘v8::HandleScope::HandleScope(v8::Isolate*&)’
HandleScope scope(isolate);
^
../csrc/addon.cc:11:28: note: candidates are:
In file included from /home/forge/.node-gyp/0.10.33/src/node.h:62:0,
from ../csrc/addon.cc:1:
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:473:3: note: v8::HandleScope::HandleScope(const v8::HandleScope&)
HandleScope(const HandleScope&);
^
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:473:3: note: no known conversion for argument 1 from ‘v8::Isolate*’ to ‘const v8::HandleScope&’
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:448:3: note: v8::HandleScope::HandleScope()
HandleScope();
^
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:448:3: note: candidate expects 0 arguments, 1 provided
../csrc/addon.cc:13:7: error: ‘args’ was not declared in this scope
if (args.Length() < 1) {
^
../csrc/addon.cc:14:14: error: ‘class v8::Isolate’ has no member named ‘ThrowException’
isolate->ThrowException(Exception::TypeError(
^
../csrc/addon.cc:15:9: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
String::NewFromUtf8(isolate, "Wrong number of arguments")));
^
../csrc/addon.cc:19:8: error: ‘args’ was not declared in this scope
if (!args[0]->IsObject()) {
^
../csrc/addon.cc:20:14: error: ‘class v8::Isolate’ has no member named ‘ThrowException’
isolate->ThrowException(Exception::TypeError(
^
../csrc/addon.cc:21:9: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
String::NewFromUtf8(isolate, "Not an object")));
^
../csrc/addon.cc:25:31: error: ‘args’ was not declared in this scope
Local<Object> inputBuffer = args[0]->ToObject();
^
../csrc/addon.cc:28:14: error: ‘class v8::Isolate’ has no member named ‘ThrowException’
isolate->ThrowException(Exception::TypeError(
^
../csrc/addon.cc:29:9: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
String::NewFromUtf8(isolate, "First arg should be a Buffer")));
^
../csrc/addon.cc:45:14: error: ‘class v8::Isolate’ has no member named ‘ThrowException’
isolate->ThrowException(Exception::TypeError(
^
../csrc/addon.cc:46:9: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
String::NewFromUtf8(isolate, "Could not convert the given font.")));
^
../csrc/addon.cc:49:70: error: no matching function for call to ‘node::Buffer::New(v8::Isolate*&, size_t&)’
Local<Object> slowBuffer = node::Buffer::New(isolate, output_length);
^
../csrc/addon.cc:49:70: note: candidates are:
In file included from ../csrc/addon.cc:2:0:
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:116:33: note: static v8::Handle<v8::Object> node::Buffer::New(v8::Handle<v8::String>)
static v8::Handle<v8::Object> New(v8::Handle<v8::String> string);
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:116:33: note: candidate expects 1 argument, 2 provided
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:121:18: note: static node::Buffer* node::Buffer::New(size_t)
static Buffer* New(size_t length);
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:121:18: note: candidate expects 1 argument, 2 provided
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:123:18: note: static node::Buffer* node::Buffer::New(const char*, size_t)
static Buffer* New(const char *data, size_t len);
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:123:18: note: no known conversion for argument 1 from ‘v8::Isolate*’ to ‘const char*’
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:125:18: note: static node::Buffer* node::Buffer::New(char*, size_t, node::Buffer::free_callback, void*)
static Buffer* New(char *data, size_t length,
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:125:18: note: candidate expects 4 arguments, 2 provided
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:129:32: note: static v8::Handle<v8::Value> node::Buffer::New(const v8::Arguments&)
static v8::Handle<v8::Value> New(const v8::Arguments &args);
^
/home/forge/.node-gyp/0.10.33/src/node_buffer.h:129:32: note: candidate expects 1 argument, 2 provided
../csrc/addon.cc:52:38: error: ‘class v8::Isolate’ has no member named ‘GetCurrentContext’
Local<Object> globalObj = isolate->GetCurrentContext()->Global();
^
../csrc/addon.cc:54:42: error: ‘NewFromUtf8’ is not a member of ‘v8::String’
Local<Function>::Cast(globalObj->Get(String::NewFromUtf8(isolate, "Buffer")));
^
../csrc/addon.cc:57:57: error: no matching function for call to ‘v8::Number::New(v8::Isolate*&, int)’
Number::New(isolate, static_cast<int>(output_length)),
^
../csrc/addon.cc:57:57: note: candidate is:
In file included from /home/forge/.node-gyp/0.10.33/src/node.h:62:0,
from ../csrc/addon.cc:1:
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:1381:33: note: static v8::Local<v8::Number> v8::Number::New(double)
V8EXPORT static Local<Number> New(double value);
^
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:1381:33: note: candidate expects 1 argument, 2 provided
../csrc/addon.cc:58:27: error: no matching function for call to ‘v8::Number::New(v8::Isolate*&, int)’
Number::New(isolate, 0)
^
../csrc/addon.cc:58:27: note: candidate is:
In file included from /home/forge/.node-gyp/0.10.33/src/node.h:62:0,
from ../csrc/addon.cc:1:
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:1381:33: note: static v8::Local<v8::Number> v8::Number::New(double)
V8EXPORT static Local<Number> New(double value);
^
/home/forge/.node-gyp/0.10.33/deps/v8/include/v8.h:1381:33: note: candidate expects 1 argument, 2 provided
../csrc/addon.cc: In function ‘void Init(v8::Handle<v8::Object>)’:
../csrc/addon.cc:65:46: error: no matching function for call to ‘SetMethod(v8::Handle<v8::Object>&, const char [8], void (&)(int))’
NODE_SET_METHOD(exports, "convert", Convert);
^
../csrc/addon.cc:65:46: note: candidate is:
In file included from ../csrc/addon.cc:1:0:
/home/forge/.node-gyp/0.10.33/src/node.h:112:6: note: template<class target_t> void node::SetMethod(target_t, const char*, v8::InvocationCallback)
void SetMethod(target_t obj, const char* name,
^
/home/forge/.node-gyp/0.10.33/src/node.h:112:6: note: template argument deduction/substitution failed:
../csrc/addon.cc:65:46: note: cannot convert ‘Convert’ (type ‘void(int)’) to type ‘v8::InvocationCallback {aka v8::Handle<v8::Value> (*)(const v8::Arguments&)}’
NODE_SET_METHOD(exports, "convert", Convert);
^
make: *** [Release/obj.target/addon/csrc/addon.o] Error 1
gyp ERR! build error
gyp ERR! stack Error: `make` failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/home/forge/.nvm/v0.10.33/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:276:23)
gyp ERR! stack at ChildProcess.emit (events.js:98:17)
gyp ERR! stack at Process.ChildProcess._handle.onexit (child_process.js:810:12)
gyp ERR! System Linux 3.13.0-68-generic
gyp ERR! command "node" "/home/forge/.nvm/v0.10.33/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /home/forge/default/node_modules/ttf2woff2
gyp ERR! node -v v0.10.33
gyp ERR! node-gyp -v v3.2.0
gyp ERR! not ok
> [email protected] postinstall /home/forge/default/node_modules/optipng-bin
> node lib/install.js
✔ optipng pre-build test passed successfully
> [email protected] postinstall /home/forge/default/node_modules/jpegtran-bin
> node lib/install.js
✔ jpegtran pre-build test passed successfully
> [email protected] postinstall /home/forge/default/node_modules/gifsicle
> node lib/install.js
✔ gifsicle pre-build test passed successfully
[email protected] /home/forge/default
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ ├── [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └─┬ [email protected]
│ │ └─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
└─┬ [email protected]
├── [email protected]
├── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
└─┬ [email protected]
├── [email protected]
└── [email protected]
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
npm WARN optional Skipping failed optional dependency /nunjucks/chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
forge@starbnb:~/default$ npm install --save-dev [email protected]
> [email protected] install /home/forge/default/node_modules/node-sass
> node scripts/install.js
Binary downloaded and installed at /home/forge/default/node_modules/node-sass/vendor/linux-x64-11/binding.node
> [email protected] postinstall /home/forge/default/node_modules/spawn-sync
> node postinstall
Installing native dependencies (this may take up to a minute)
> [email protected] postinstall /home/forge/default/node_modules/node-sass
> node scripts/build.js
` /home/forge/default/node_modules/node-sass/vendor/linux-x64-11/binding.node ` exists.
testing binary.
Binary is fine; exiting.
[email protected] /home/forge/default
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └─┬ [email protected]
│ └─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ └── [email protected]
│ │ │ │ └── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ └─┬ [email protected]
│ │ └── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └─┬ [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ ├── [email protected]
│ │ │ └── [email protected]
│ │ ├─┬ [email protected]
│ │ │ ├─┬ [email protected]
│ │ │ │ └── [email protected]
│ │ │ └── [email protected]
│ │ └── [email protected]
│ ├── [email protected]
│ └── [email protected]
└─┬ [email protected]
└── [email protected]
npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
npm WARN optional Skipping failed optional dependency /nunjucks/chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: [email protected]
forge@starbnb:~/default$ npm run production
> [email protected] production /home/forge/default
> gulp production
/home/forge/default/node_modules/ttf2woff2/jssrc/ttf2woff2.js:1
aughtException",(function(ex){if(!(ex instanceof ExitStatus)){throw ex}}));Mod
^
Error: Unable to allocate ArrayBuffer.
at Object.<anonymous> (/home/forge/default/node_modules/ttf2woff2/jssrc/ttf2woff2.js:1:23345)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (/home/forge/default/node_modules/ttf2woff2/jssrc/index.js:3:27)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
npm ERR! Linux 3.13.0-68-generic
npm ERR! argv "node" "/home/forge/.nvm/v0.10.33/bin/npm" "run" "production"
npm ERR! node v0.10.33
npm ERR! npm v3.5.1
npm ERR! code ELIFECYCLE
npm ERR! [email protected] production: `gulp production`
npm ERR! Exit status 7
npm ERR!
npm ERR! Failed at the [email protected] production script 'gulp production'.
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 gulp-starter package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! gulp production
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs gulp-starter
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls gulp-starter
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /home/forge/default/npm-debug.log
forge@starbnb:~/default$ nano package.json
forge@starbnb:~/default$ node -v
v0.10.33
forge@starbnb:~/default$ nvm ist
Node Version Manager
Note: <version> refers to any version-like string nvm understands. This includes:
- full or partial version numbers, starting with an optional "v" (0.10, v0.1.2, v1)
- default (built-in) aliases: node, stable, unstable, iojs, system
- custom aliases you define with `nvm alias foo`
Usage:
nvm help Show this message
nvm --version Print out the latest released version of nvm
nvm install [-s] <version> Download and install a <version>, [-s] from source. Uses .nvmrc if available
--reinstall-packages-from=<version> When installing, reinstall packages installed in <node|iojs|node version number>
nvm uninstall <version> Uninstall a version
nvm use [--silent] <version> Modify PATH to use <version>. Uses .nvmrc if available
nvm exec [--silent] <version> [<command>] Run <command> on <version>. Uses .nvmrc if available
nvm run [--silent] <version> [<args>] Run `node` on <version> with <args> as arguments. Uses .nvmrc if available
nvm current Display currently activated version
nvm ls List installed versions
nvm ls <version> List versions matching a given description
nvm ls-remote List remote versions available for install
nvm version <version> Resolve the given description to a single local version
nvm version-remote <version> Resolve the given description to a single remote version
nvm deactivate Undo effects of `nvm` on current shell
nvm alias [<pattern>] Show all aliases beginning with <pattern>
nvm alias <name> <version> Set an alias named <name> pointing to <version>
nvm unalias <name> Deletes the alias named <name>
nvm reinstall-packages <version> Reinstall global `npm` packages contained in <version> to current version
nvm unload Unload `nvm` from shell
nvm which [<version>] Display path to installed node version. Uses .nvmrc if available
Example:
nvm install v0.10.32 Install a specific version number
nvm use 0.10 Use the latest available 0.10.x release
nvm run 0.10.32 app.js Run app.js using node v0.10.32
nvm exec 0.10.32 node app.js Run `node app.js` with the PATH pointing to node v0.10.32
nvm alias default 0.10.32 Set default node version on a shell
Note:
to remove, delete, or uninstall nvm - just remove the `$NVM_DIR` folder (usually `~/.nvm`)
forge@starbnb:~/default$ nvm ls
-> v0.10.33
system
node -> stable (-> v0.10.33) (default)
stable -> 0.10 (-> v0.10.33) (default)
iojs -> N/A (default)
forge@starbnb:~/default$ nvm use system
Now using system version of node: v0.12.9 (npm v3.5.1)
forge@starbnb:~/default$ node -v
v0.12.9
forge@starbnb:~/default$ nvm install 4
Downloading https://nodejs.org/dist/v4.2.3/node-v4.2.3-linux-x64.tar.xz...
######################################################################## 100.0%
WARNING: checksums are currently disabled for node.js v4.0 and later
Now using node v4.2.3 (npm v2.14.7)
forge@starbnb:~/default$ nvm ls
v0.10.33
-> v4.2.3
system
node -> stable (-> v4.2.3) (default)
stable -> 4.2 (-> v4.2.3) (default)
iojs -> N/A (default)
forge@starbnb:~/default$ node -v
v4.2.3
forge@starbnb:~/default$ rm -rf node_modules/
forge@starbnb:~/default$ npm install
npm WARN optional dep failed, continuing [email protected]
npm WARN engine [email protected]: wanted: {"node":">=0.12.0 <1"} (current: {"node":"4.2.3","npm":"2.14.7"})
-
<--- Last few GCs --->
52151 ms: Scavenge 218.6 (287.0) -> 205.4 (287.0) MB, 17.6 / 0 ms [allocation failure].
52873 ms: Scavenge 220.3 (288.0) -> 207.7 (288.0) MB, 32.9 / 1 ms [allocation failure].
53125 ms: Scavenge 223.6 (290.0) -> 211.6 (291.0) MB, 16.8 / 0 ms [allocation failure].
56852 ms: Scavenge 225.6 (291.0) -> 213.0 (291.0) MB, 47.0 / 0 ms [allocation failure].
57099 ms: Scavenge 227.4 (291.0) -> 214.4 (292.0) MB, 12.8 / 0 ms [allocation failure].
<--- JS stacktrace --->
==== JS stack trace =========================================
Security context: 0x70a26737399 <JS Object>
1: parse [native json.js:~40] [pc=0x72d958f9760] (this=0x70a267381b1 <a JSON with map 0x355e9ab10969>,r=0x233c2b1aeca9 <an Uint8Array with map 0x355e9ab1d389>,l=0x70a26704131 <undefined>)
2: arguments adaptor frame: 1->2
3: /* anonymous */ [/home/forge/.nvm/versions/node/v4.2.3/lib/node_modules/npm/lib/cache/caching-client.js:82] [pc=0x72d957703e2] (this=0x70a267b7909 <JS Global Obje...
FATAL ERROR: Malloced operator new Allocation failed - process out of memory
Aborted (core dumped)
forge@starbnb:~/default$ rm -rf node_modules/
forge@starbnb:~/default$
Broadcast message from root@starbnb
(unknown) at 11:07 ...
The system is going down for reboot NOW!
Connection to 104.236.51.99 closed by remote host.
Connection to 104.236.51.99 closed.
●° ~ ssh [email protected]
Welcome to Ubuntu 14.04.3 LTS (GNU/Linux 3.13.0-68-generic x86_64)
* Documentation: https://help.ubuntu.com/
System information as of Sun Dec 6 11:08:02 EST 2015
System load: 0.0 Memory usage: 5% Processes: 51
Usage of /: 11.4% of 29.40GB Swap usage: 0% Users logged in: 0
Graph this data and manage this system at:
https://landscape.canonical.com/
Last login: Sun Dec 6 10:54:56 2015 from pool-72-66-104-52.washdc.fios.verizon.net
forge@starbnb:~$ cd default/
forge@starbnb:~/default$ npm install
npm WARN deprecated [email protected]: lodash@<3.0.0 is no longer maintained. Upgrade to lodash@^3.0.0
npm WARN prefer global [email protected] should be installed with -g
npm WARN prefer global [email protected] should be installed with -g
npm WARN prefer global [email protected] should be installed with -g
npm WARN prefer global [email protected] should be installed with -g
> [email protected] install /home/forge/default/node_modules/bufferutil
> node-gyp rebuild
forge@starbnb:~/default$ npm run^C
forge@starbnb:~/default$ npm -v
3.5.1
forge@starbnb:~/default$ node -v
v0.12.9
forge@starbnb:~/default$ npm run sass
npm ERR! Linux 3.13.0-68-generic
npm ERR! argv "node" "/usr/bin/npm" "run" "sass"
npm ERR! node v0.12.9
npm ERR! npm v3.5.1
npm ERR! missing script: sass
npm ERR!
npm ERR! If you need help, you may report this error at:
npm ERR! <https://github.com/npm/npm/issues>
npm ERR! Please include the following file with any support request:
npm ERR! /home/forge/default/npm-debug.log
forge@starbnb:~/default$ gulp sass
/home/forge/default/node_modules/node-sass/lib/extensions.js:158
throw new Error([
^
Error: The `libsass` binding was not found in /home/forge/default/node_modules/node-sass/vendor/linux-x64-14/binding.node
This usually happens because your node version has changed.
Run `npm rebuild node-sass` to build the binding for your current node version.
at Object.sass.getBinaryPath (/home/forge/default/node_modules/node-sass/lib/extensions.js:158:11)
at Object.<anonymous> (/home/forge/default/node_modules/node-sass/lib/index.js:16:36)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Module.require (module.js:365:17)
at require (module.js:384:17)
at Object.<anonymous> (/home/forge/default/node_modules/gulp-sass/index.js:176:21)
at Module._compile (module.js:460:26)
forge@starbnb:~/default$ npm rebuild node-sass
> [email protected] install /home/forge/default/node_modules/node-sass
> node scripts/install.js
Binary downloaded and installed at /home/forge/default/node_modules/node-sass/vendor/linux-x64-14/binding.node
> [email protected] postinstall /home/forge/default/node_modules/node-sass
> node scripts/build.js
` /home/forge/default/node_modules/node-sass/vendor/linux-x64-14/binding.node ` exists.
testing binary.
Binary is fine; exiting.
[email protected] /home/forge/default/node_modules/node-sass
forge@starbnb:~/default$ gulp sass
[11:13:32] Using gulpfile ~/default/gulpfile.js
[11:13:32] Task 'sass' is not in your gulpfile
[11:13:32] Please check the documentation for proper gulpfile formatting
forge@starbnb:~/default$ npm run production
> [email protected] production /home/forge/default
> gulp production
[11:13:48] Using gulpfile ~/default/gulpfile.js
[11:13:48] Starting 'production'...
[11:13:48] Starting 'clean'...
[11:13:48] Finished 'clean' after 7.54 ms
[11:13:48] Starting 'fonts'...
[11:13:48] Starting 'iconFont'...
[11:13:48] Starting 'images'...
[11:13:49] gulp-svgicons2svgfont: Font created
[11:13:49] Generating wp-content/themes/starbnb/src/stylesheets/generated/_icons.sass
[11:13:49] + adding facebook glyph
[11:13:49] + adding instagram glyph
[11:13:49] + adding twitter glyph
[11:13:49] + adding galactic-credits glyph
events.js:85
throw er; // Unhandled 'error' event
^
Error: spawn /home/forge/default/node_modules/optipng-bin/vendor/optipng ENOENT
at exports._errnoException (util.js:746:11)
at Process.ChildProcess._handle.onexit (child_process.js:1054:32)
at child_process.js:1145:20
at process._tickCallback (node.js:355:11)
npm ERR! Linux 3.13.0-68-generic
npm ERR! argv "node" "/usr/bin/npm" "run" "production"
npm ERR! node v0.12.9
npm ERR! npm v3.5.1
npm ERR! code ELIFECYCLE
npm ERR! [email protected] production: `gulp production`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] production script 'gulp production'.
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 gulp-starter package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! gulp production
npm ERR! You can get information on how to open an issue for this project with:
npm ERR! npm bugs gulp-starter
npm ERR! Or if that isn't available, you can get their info via:
npm ERR! npm owner ls gulp-starter
npm ERR! There is likely additional logging output above.
npm ERR! Please include the following file with any support request:
npm ERR! /home/forge/default/npm-debug.log
forge@starbnb:~/default$ npm rebuild optipng-bin
> [email protected] postinstall /home/forge/default/node_modules/optipng-bin
> node lib/install.js
✔ optipng pre-build test passed successfully
[email protected] /home/forge/default/node_modules/optipng-bin
forge@starbnb:~/default$ npm run production
> [email protected] production /home/forge/default
> gulp production
[11:15:46] Using gulpfile ~/default/gulpfile.js
[11:15:46] Starting 'production'...
[11:15:46] Starting 'clean'...
[11:15:46] Finished 'clean' after 23 ms
[11:15:46] Starting 'fonts'...
[11:15:46] Starting 'iconFont'...
[11:15:46] Starting 'images'...
[11:15:47] gulp-svgicons2svgfont: Font created
[11:15:47] Generating wp-content/themes/starbnb/src/stylesheets/generated/_icons.sass
[11:15:47] + adding facebook glyph
[11:15:47] + adding instagram glyph
[11:15:47] + adding twitter glyph
[11:15:47] + adding galactic-credits glyph
[11:15:48] Finished 'iconFont' after 1.91 s
[11:15:48] gulp-imagemin: Minified 13 images (saved 29.92 kB - 26.3%)
[11:15:48] Finished 'fonts' after 2.1 s
[11:15:48] Finished 'images' after 2.07 s
[11:15:48] Starting 'css'...
[11:15:48] Starting 'webpack:production'...
[11:15:51] Hash: 7556df9fefd3a8e4747b
Version: webpack 1.12.9
Time: 2423ms
Asset Size Chunks Chunk Names
app-7556df9fefd3a8e4747b.js 13 kB 0 [emitted] app
chunk {0} app-7556df9fefd3a8e4747b.js (app) 11.9 kB [rendered]
[0] multi app 28 bytes {0} [built]
[1] ./wp-content/themes/starbnb/src/javascripts/app.js 11.8 kB {0} [built]
[11:15:51] Compiled with webpack in 2.42 s
[11:15:51] Finished 'webpack:production' after 2.52 s
[11:15:51] Finished 'css' after 2.56 s
[11:15:51] Starting 'rev'...
[11:15:51] Starting 'rev-assets'...
[11:15:51] Finished 'rev-assets' after 98 ms
[11:15:51] Starting 'rev-update-references'...
[11:15:51] Finished 'rev-update-references' after 36 ms
[11:15:51] Starting 'rev-css'...
[11:15:51] Finished 'rev-css' after 290 ms
[11:15:51] Starting 'size-report'...
┌─────────────────────────────────────────────┬───────────┬───────────┐
│ File │ Original │ Gzipped │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ rev-manifest.json │ 2.18 kB │ 627 B │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_300-webfont-31259986f1.ttf │ 43.6 kB │ 21.79 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_300-webfont-95b19605e3.svg │ 82.15 kB │ 17.42 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_300-webfont-e426545c12.woff │ 21.87 kB │ 21.85 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_300-webfont-eec684f16a.eot │ 19.05 kB │ 19.03 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_500-webfont-0e80079d7c.eot │ 19.72 kB │ 19.7 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_500-webfont-30733f4aa4.woff │ 22.37 kB │ 22.35 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_500-webfont-3a8fa20752.svg │ 80.66 kB │ 17.29 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_500-webfont-5a724c91ba.ttf │ 45.29 kB │ 22.27 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_700-webfont-155e084a5a.ttf │ 45.98 kB │ 22.66 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_700-webfont-1c0796a0ca.svg │ 82.09 kB │ 17.52 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_700-webfont-b469bc0808.eot │ 20.04 kB │ 20.02 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/MuseoSans_700-webfont-d59159846a.woff │ 22.76 kB │ 22.73 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/icons-31e629c929.ttf │ 2.13 kB │ 1.22 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/icons-6bac2722c4.woff2 │ 1.06 kB │ 1.09 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/icons-b00b5f62d2.svg │ 5.67 kB │ 2.1 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/icons-bb42beab20.eot │ 2.29 kB │ 1.27 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ fonts/icons-e0a4cbf9bf.woff │ 1.47 kB │ 1.45 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/alliance-c7ed6af8b9.svg │ 4.23 kB │ 1.65 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/eco-friendly-1044ce22c8.svg │ 4.5 kB │ 1.73 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/entire-home-e0d4df85b9.svg │ 3.99 kB │ 1.46 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/imperial-57e51f0676.svg │ 7.16 kB │ 2.6 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/logo-039be60a66.png │ 6.94 kB │ 6.87 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/logo-77de04ab59.svg │ 5.61 kB │ 2.47 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/logo-white-f18b60b059.svg │ 5.6 kB │ 2.47 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/organic-89383a20e4.svg │ 14.31 kB │ 4.61 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/pointless-f021944c68.svg │ 7.01 kB │ 3.28 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/private-room-dfa2fce51e.svg │ 3.23 kB │ 1.14 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/security-7dde08545f.svg │ 4.95 kB │ 1.78 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/shared-room-bd167259f9.svg │ 8.01 kB │ 3.03 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ images/starship-d7cd3bd425.svg │ 8.29 kB │ 2.59 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ javascripts/app-7556df9fefd3a8e4747b.js │ 12.98 kB │ 6.39 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ stylesheets/global-cafb16982d.css │ 14.14 kB │ 3.62 kB │
├─────────────────────────────────────────────┼───────────┼───────────┤
│ │ 631.32 kB │ 298.04 kB │
└─────────────────────────────────────────────┴───────────┴───────────┘
[11:15:51] Finished 'size-report' after 163 ms
[11:15:51] Finished 'rev' after 593 ms
[11:15:51] Finished 'production' after 5.28 s
forge@starbnb:~/default$ ls
favicon-16x16.png license.txt wp-admin wp-cron.php wp-settings.php
favicon-32x32.png node_modules wp-blog-header.php wp-includes wp-signup.php
favicon.ico package.json wp-comments-post.php wp-links-opml.php wp-trackback.php
gulpfile.js readme.html wp-config.php.sample wp-load.php xmlrpc.php
index.php README.md wp-config-sample.php wp-login.php
LICENSE wp-activate.php wp-content wp-mail.php
forge@starbnb:~/default$ cd wp-content/themes/starbnb/
forge@starbnb:~/default/wp-content/themes/starbnb$ ls
assets comments.php functions header.php meta-data.php src video
_card.php footer.php functions.php index.php single.php style.css
forge@starbnb:~/default/wp-content/themes/starbnb$ cd assets/
forge@starbnb:~/default/wp-content/themes/starbnb/assets$ ls
fonts images javascripts rev-manifest.json stylesheets
forge@starbnb:~/default/wp-content/themes/starbnb/assets$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment