Syntax error: Unexpected token ) when building Docusaurus on Node 6
up vote
1
down vote
favorite
I am encountering an error when running docusaurus build
on docusaurus@1.5.1 and Node 6:
$ docusaurus-build
/home/website/node_modules/docusaurus/lib/build-files.js:31
);
^
SyntaxError: Unexpected token )
at createScript (vm.js:56:10)
at Object.runInThisContext (vm.js:97:10)
at Module._compile (module.js:542:28)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:383:7)
at startup (bootstrap_node.js:149:9)
Basically there is code like this currently in Docusaurus:
console.log(
chalk.red('hello world'),
);
How do I fix it?
javascript node.js docusaurus
add a comment |
up vote
1
down vote
favorite
I am encountering an error when running docusaurus build
on docusaurus@1.5.1 and Node 6:
$ docusaurus-build
/home/website/node_modules/docusaurus/lib/build-files.js:31
);
^
SyntaxError: Unexpected token )
at createScript (vm.js:56:10)
at Object.runInThisContext (vm.js:97:10)
at Module._compile (module.js:542:28)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:383:7)
at startup (bootstrap_node.js:149:9)
Basically there is code like this currently in Docusaurus:
console.log(
chalk.red('hello world'),
);
How do I fix it?
javascript node.js docusaurus
1
Related: node.green - trailing commas in function syntax
– Jonathan Lonowski
Nov 10 at 23:00
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am encountering an error when running docusaurus build
on docusaurus@1.5.1 and Node 6:
$ docusaurus-build
/home/website/node_modules/docusaurus/lib/build-files.js:31
);
^
SyntaxError: Unexpected token )
at createScript (vm.js:56:10)
at Object.runInThisContext (vm.js:97:10)
at Module._compile (module.js:542:28)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:383:7)
at startup (bootstrap_node.js:149:9)
Basically there is code like this currently in Docusaurus:
console.log(
chalk.red('hello world'),
);
How do I fix it?
javascript node.js docusaurus
I am encountering an error when running docusaurus build
on docusaurus@1.5.1 and Node 6:
$ docusaurus-build
/home/website/node_modules/docusaurus/lib/build-files.js:31
);
^
SyntaxError: Unexpected token )
at createScript (vm.js:56:10)
at Object.runInThisContext (vm.js:97:10)
at Module._compile (module.js:542:28)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:383:7)
at startup (bootstrap_node.js:149:9)
Basically there is code like this currently in Docusaurus:
console.log(
chalk.red('hello world'),
);
How do I fix it?
javascript node.js docusaurus
javascript node.js docusaurus
edited Nov 10 at 22:54
asked Nov 10 at 22:15
Yangshun Tay
8,00653464
8,00653464
1
Related: node.green - trailing commas in function syntax
– Jonathan Lonowski
Nov 10 at 23:00
add a comment |
1
Related: node.green - trailing commas in function syntax
– Jonathan Lonowski
Nov 10 at 23:00
1
1
Related: node.green - trailing commas in function syntax
– Jonathan Lonowski
Nov 10 at 23:00
Related: node.green - trailing commas in function syntax
– Jonathan Lonowski
Nov 10 at 23:00
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
That error occurs because trailing commas in function calls are not supported in older versions of Node. Ensure that you are using a Node version that is 8 and above. As of Docusaurus 1.2.0, Node 6 is not supported anymore and the minimum supported version is Node 8. As stated in the documentation:
You have to be on Node >= 8.x and Yarn >= 1.5.
You could use a tool like nvm to manage your Node versions.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
That error occurs because trailing commas in function calls are not supported in older versions of Node. Ensure that you are using a Node version that is 8 and above. As of Docusaurus 1.2.0, Node 6 is not supported anymore and the minimum supported version is Node 8. As stated in the documentation:
You have to be on Node >= 8.x and Yarn >= 1.5.
You could use a tool like nvm to manage your Node versions.
add a comment |
up vote
2
down vote
accepted
That error occurs because trailing commas in function calls are not supported in older versions of Node. Ensure that you are using a Node version that is 8 and above. As of Docusaurus 1.2.0, Node 6 is not supported anymore and the minimum supported version is Node 8. As stated in the documentation:
You have to be on Node >= 8.x and Yarn >= 1.5.
You could use a tool like nvm to manage your Node versions.
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
That error occurs because trailing commas in function calls are not supported in older versions of Node. Ensure that you are using a Node version that is 8 and above. As of Docusaurus 1.2.0, Node 6 is not supported anymore and the minimum supported version is Node 8. As stated in the documentation:
You have to be on Node >= 8.x and Yarn >= 1.5.
You could use a tool like nvm to manage your Node versions.
That error occurs because trailing commas in function calls are not supported in older versions of Node. Ensure that you are using a Node version that is 8 and above. As of Docusaurus 1.2.0, Node 6 is not supported anymore and the minimum supported version is Node 8. As stated in the documentation:
You have to be on Node >= 8.x and Yarn >= 1.5.
You could use a tool like nvm to manage your Node versions.
answered Nov 10 at 22:15
Yangshun Tay
8,00653464
8,00653464
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53243967%2fsyntax-error-unexpected-token-when-building-docusaurus-on-node-6%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Related: node.green - trailing commas in function syntax
– Jonathan Lonowski
Nov 10 at 23:00