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?










share|improve this question



















  • 1




    Related: node.green - trailing commas in function syntax
    – Jonathan Lonowski
    Nov 10 at 23:00














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?










share|improve this question



















  • 1




    Related: node.green - trailing commas in function syntax
    – Jonathan Lonowski
    Nov 10 at 23:00












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?










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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












  • 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












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.






share|improve this answer




















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    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

























    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.






    share|improve this answer
























      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.






      share|improve this answer






















        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.






        share|improve this answer












        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.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 10 at 22:15









        Yangshun Tay

        8,00653464




        8,00653464



























             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            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





















































            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







            這個網誌中的熱門文章

            Barbados

            How to read a connectionString WITH PROVIDER in .NET Core?

            Node.js Script on GitHub Pages or Amazon S3