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 Feb 19, 2019. It is now read-only.
Describe the bug
When trying npm run app, I got an error about the webpack config file. I fixed those errors by editing the file; this is what it is now:
Now all the webpack errors have stopped, but I am getting an error about babel:
ERROR in ./src/index.js
Module build failed (from ./node_modules/babel-loader/lib/index.js):
Error: Cannot find module '@babel/core'
babel-loader@8 requires Babel 7.x (the package '@babel/core'). If you'd like to use Babel 6.x ('babel-core'), you should install 'babel-loader@7'.
at Function.Module._resolveFilename (module.js:542:15)
at Function.Module._load (module.js:472:25)
at Module.require (module.js:585:17)
at require (internal/module.js:11:18)
at Object.<anonymous> (/home/caleb/Downloads/octo-turbo-master/node_modules/babel-loader/lib/index.js:10:11)
at Module._compile (module.js:641:30)
at Module._extensions..js (module.js:652:10)
at Object.require.extensions.(anonymous function) [as .js] (/home/caleb/Downloads/octo-turbo-master/node_modules/babel-register/lib/node.js:152:7)
at Module.load (module.js:560:32)
at tryModuleLoad (module.js:503:12)
@ multi ./src/index main[0]
It seems that the package @babel/core needs to be installed...
npm install @babel/core
However, this gives an error about not finding property 'bindings'.
To Reproduce
Steps to reproduce the behavior:
Download and extract the zip file, and follow the instructions on the docs page.
I am using npm version 5.5.1, node version 9.0.0, and nodejs version 4.2.6
Expected behavior
I would expect to see the index.js file compile and print to the terminal.
Desktop (please complete the following information):
OS: GalliumOS Braswell
The text was updated successfully, but these errors were encountered:
Describe the bug
When trying
npm run app
, I got an error about the webpack config file. I fixed those errors by editing the file; this is what it is now:Now all the webpack errors have stopped, but I am getting an error about babel:
It seems that the package @babel/core needs to be installed...
npm install @babel/core
However, this gives an error about not finding property 'bindings'.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I would expect to see the index.js file compile and print to the terminal.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: