You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2018. It is now read-only.
events.js:183
throw er; // Unhandled 'error' event
^
TypeError: Cannot set property message of which has only a getter
at Object.pug_rethrow [as rethrow] (/Users/Chris/Repositories/_CLONED/neo/node_modules/pug-runtime/index.js:251:15)
at template (eval at wrap (/Users/Chris/Repositories/_CLONED/neo/node_modules/pug-runtime/wrap.js:6:10), :837:665)
at DestroyableTransform.compilePug [as _transform] (/Users/Chris/Repositories/_CLONED/neo/node_modules/gulp-pug/index.js:36:49)
at DestroyableTransform.Transform._read (/Users/Chris/Repositories/_CLONED/neo/node_modules/readable-stream/lib/_stream_transform.js:184:10)
at DestroyableTransform.Transform._write (/Users/Chris/Repositories/_CLONED/neo/node_modules/readable-stream/lib/_stream_transform.js:172:83)
at doWrite (/Users/Chris/Repositories/_CLONED/neo/node_modules/readable-stream/lib/_stream_writable.js:418:64)
at writeOrBuffer (/Users/Chris/Repositories/_CLONED/neo/node_modules/readable-stream/lib/_stream_writable.js:407:5)
at DestroyableTransform.Writable.write (/Users/Chris/Repositories/_CLONED/neo/node_modules/readable-stream/lib/_stream_writable.js:334:11)
at write (/Users/Chris/Repositories/_CLONED/neo/node_modules/vinyl-fs/node_modules/readable-stream/lib/_stream_readable.js:623:24)
at flow (/Users/Chris/Repositories/_CLONED/neo/node_modules/vinyl-fs/node_modules/readable-stream/lib/_stream_readable.js:632:7)
at DestroyableTransform.pipeOnReadable (/Users/Chris/Repositories/_CLONED/neo/node_modules/vinyl-fs/node_modules/readable-stream/lib/_stream_readable.js:664:5)
at emitNone (events.js:106:13)
at DestroyableTransform.emit (events.js:208:7)
at emitReadable_ (/Users/Chris/Repositories/_CLONED/neo/node_modules/vinyl-fs/node_modules/readable-stream/lib/_stream_readable.js:448:10)
at emitReadable (/Users/Chris/Repositories/_CLONED/neo/node_modules/vinyl-fs/node_modules/readable-stream/lib/_stream_readable.js:444:5)
at readableAddChunk (/Users/Chris/Repositories/_CLONED/neo/node_modules/vinyl-fs/node_modules/readable-stream/lib/_stream_readable.js:187:9)
The text was updated successfully, but these errors were encountered:
pug-runtime/index.js
Line 251 in 8647d82
It appears as if
pug_rethrow
is attempting to set themessage
property of something, wheremessage
is only a getter.Setting
err.message = ..
throws a TypeError, which reads:I’m not sure why, because the
message
property of anyError
object should be settable. It might be the case thaterr
is not actually anError
object.Specs:
[email protected]
[email protected]
[email protected]
[email protected]
Trace:
The text was updated successfully, but these errors were encountered: