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
When running electric run it throws an error for every page around the metal:render:html step.
My environment:
Ubuntu 18.04
Java 10
electric-cli 3.0.4
npm 5.8.0
node 8.11.1
Here is the error stack trace that appears to be coming from lib/pipelines/bundle.js:
[14:15:48] Error when trying to require the "/home/ryan/dev/notes/.temp/task/metal/site/pages/docs/Security/index.js" file
[14:15:48] Details: Unexpected identifier
/home/ryan/dev/notes/node_modules/webpack/lib/webpack.js:19
throw new WebpackOptionsValidationError(webpackOptionsValidationErrors);
^
WebpackOptionsValidationError: Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.
- configuration.entry should be one of these:
object { <key>: non-empty string | [non-empty string] } | non-empty string | [non-empty string] | function
-> The entry point(s) of the compilation.
Details:
* configuration.entry should not be empty.
-> Multiple entry bundles are created. The key is the chunk name. The value can be a string or an array.
* configuration.entry should be a string.
-> An entry point without name. The string is resolved to a module which is loaded upon startup.
* configuration.entry should be an array:
[non-empty string]
* configuration.entry should be an instance of function
-> A Function returning an entry object, an entry string, an entry array or a promise to these things.
at webpack (/home/ryan/dev/notes/node_modules/webpack/lib/webpack.js:19:9)
at DestroyableTransform._flush (/home/ryan/dev/notes/node_modules/electric/lib/pipelines/bundle.js:56:4)
at DestroyableTransform.prefinish (/home/ryan/dev/notes/node_modules/readable-stream/lib/_stream_transform.js:138:10)
at emitNone (events.js:106:13)
at DestroyableTransform.emit (events.js:208:7)
at prefinish (/home/ryan/dev/notes/node_modules/readable-stream/lib/_stream_writable.js:619:14)
at finishMaybe (/home/ryan/dev/notes/node_modules/readable-stream/lib/_stream_writable.js:627:5)
at endWritable (/home/ryan/dev/notes/node_modules/readable-stream/lib/_stream_writable.js:638:3)
at DestroyableTransform.Writable.end (/home/ryan/dev/notes/node_modules/readable-stream/lib/_stream_writable.js:594:41)
at DestroyableTransform.onend (/home/ryan/dev/notes/node_modules/gulp/node_modules/readable-stream/lib/_stream_readable.js:523:10)
When running
electric runit throws an error for every page around themetal:render:htmlstep.My environment:
Here is the error stack trace that appears to be coming from
lib/pipelines/bundle.js: