Coder Social home page Coder Social logo

brunch-guide's Introduction

The Brunch.io Guide

This is an attempt at a comprehensive guide to Brunch, an excellent builder for browser apps that gives Grunt, Gulp, Broccoli et al. a run for their money. I adapted this from my (French language) article from early March 2015.

Is your English reading not so good? Check out our translations.

For a short 8-minute version that allows to learn 90% of Brunch features take a look at Brunches official micro guide.

Table of Contents

  1. Brunch?! What’s Brunch?
  1. Getting started with Brunch
  1. Conventions and defaults
  1. Starting from scratch
  1. Using third-party module registries
  2. A shot at templating
  3. Using Brunch on a legacy codebase
  4. Production builds
  5. Watcher
  6. Web server: built-in or custom
  1. Plugins for all your build needs
  1. Writing a Brunch plugin
  2. Conclusion

Translations

This guide is also available in the following languages:

To contribute translations, check out our guidelines.

Brunch version

This guide was written against Brunch 2.5. Most of it works in earlier versions, though; still, you should upgrade!

License

This work is © 2015 Christophe Porteneuve, licensed under the MIT license.

Contributing

I welcome all useful contributions: typos, bug fixes, rephrasings, better explanations or examples, extra information and demos, translations, etc.

Be sure to check our contribution guidelines!

Acknowledgments

The Brunch team deserves enormous applause and thanks for their amazing work on this tool. I write this as Brunch turns 4 already, and it's made my life easier (and that of hundreds of my JS trainees) for all that time! You guys rule!

brunch-guide's People

Contributors

alp82 avatar beznosd avatar collingreen avatar daiyi avatar davidbgk avatar denysdovhan avatar dhoko avatar es128 avatar goshacmd avatar khmseu avatar ojacquemart avatar paulmillr avatar pb82 avatar pcgrenier avatar samihda avatar sethbergman avatar shvaikalesh avatar spetroll avatar tdd avatar toraritte avatar trungly avatar vitaliel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

brunch-guide's Issues

Error during node_modules dependency compilation

Hi, I'm trying to get brunch to work in an ASP.NET Core project with bootstrap, typescript and vuejs.
If I don't include de node_modules folder, my javascripts and stylesheets are compiled and bundled just fine. But when I include it I get lots of errors.

packages.json

{
  "name": "nebula.web",
  "version": "1.0.0",
  "devDependencies": {
    "brunch": "^2.10.9",
    "typescript-brunch": "^2.3.0"
  },
  "dependencies": {
    "bootstrap": "^4.0.0-alpha.6",
    "font-awesome": "^4.7.0",
    "jquery": "^3.2.1",
    "jquery-validation": "^1.16.0",
    "jquery-validation-unobtrusive": "^3.2.6",
    "tether": "^1.4.0",
    "vue": "^2.3.4"
  },
  "scripts": {
    "bundle": "brunch build"
  },
  "false": {}
}

brunch-config.js

module.exports = {
    paths: {
        public: "wwwroot/dist",
        watched: ["wwwroot", "node_modules"]
    },
    modules: {
        wrapper: "commonjs",
        definition: "commonjs"
    },
    plugins: {
        brunchTypescript: {
            removeComments: true
        }
    },
    npm: {
        styles: {
            bootstrap: ["dist/bootstrap.css"]
        }
    },
    files: {
        javascripts: {
            joinTo: {
                "site.js": /^(wwwroot\/javascripts)/,
                "vendor.js": /^node_modules/
            }
        },
        stylesheets: {
            joinTo: {
                "site.css": /^(wwwroot\/stylesheets)/,
                "vendor.css": /^node_modules/
            }
        }
    }
}

My folder structure

-/
--/node_modules
--/wwwroot
----/dist
----/javascripts
----/stylesheets
--packages.json
--brunch-config.json

Stack trace

15:14:16 - info: compiled in 844 ms
15:14:20 - info: compiling
09 Jun 15:14:22 - warn: not including 'node_modules/typescript-brunch/node_modules/typescript/lib/typescript.js' as a module because it comes from a Brunch plugin
15:14:25 - info: compiling.
15:14:28 - error: Processing of wwwroot/dist/site.js failed. Error: Could not load module '___globals___' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/wwwroot/dist'. Possible solution: add '___globals___' to package.json and `npm install`.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - warn: wwwroot/dist/site.css compiled, but not written. Check your stylesheets.joinTo config
15:14:28 - warn: wwwroot/dist/vendor.css compiled, but not written. Check your stylesheets.joinTo config
15:14:28 - error: Processing of node_modules/asn1.js/test.js failed. SyntaxError: Unexpected token (10:2)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/browserify-aes/populateFixtures.js failed. Error: Could not load module './EVP_BytesToKey' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/browserify-aes'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/micro-promisify/test.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/mime/cli.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/sha.js/bin.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/skemata/test.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of wwwroot/dist/vendor.js failed. SyntaxError: Unexpected token (256871:10)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/acorn/dist/walk.es.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (346:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/acorn/dist/acorn_loose.es.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/acorn/dist/acorn.es.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (3405:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/acorn/src/expression.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (23:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/acorn/src/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (26:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/acorn/src/identifier.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:28 - error: Processing of node_modules/acorn/src/location.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/locutil.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/lval.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/node.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/options.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/state.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/tokencontext.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/statement.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/parseutil.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/tokentype.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (28:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/tokenize.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/whitespace.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/grunt/change-version.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/buffer/bin/download-node-tests.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/buffer/bin/test.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/chokidar/lib/fsevents-handler.js failed. Error: Could not load module 'fsevents' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/chokidar/lib'. Possible solution: add 'fsevents' to package.json and `npm install`.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/check-dependencies/bin/cli.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/crypto-browserify/example/bundle.js failed. Error: Could not load module './sha' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/crypto-browserify/example'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/detective/bench/ddetect.js failed. Error: Could not load module '../faster.js' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/detective/bench'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/mkdirp/bin/cmd.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/object-keys/test/index.js failed. Error: Could not load module './isArguments' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/object-keys/test'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/bool.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/boolean_single.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/boolean_double.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/default_singles.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/default_hash.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/divide.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/line_count_options.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/line_count.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/line_count_wrap.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/reflect.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/string.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/nonopt.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/short.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/example/xup.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/qs/dist/qs.js failed. Error: Could not load module './formats' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/qs/dist'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/dist/vue.esm.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9693:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/dist/vue.runtime.esm.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7140:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/bin/acorn.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/loose/state.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/loose/parseutil.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/loose/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (36:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/loose/tokenize.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/loose/expression.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/loose/statement.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/acorn/src/walk/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (23:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/alert.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/carousel.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/button.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (180:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/dropdown.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/collapse.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/modal.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/popover.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/scrollspy.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (165:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/tab.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/bootstrap/js/src/tooltip.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/brunch/lib/utils/config.js failed. SyntaxError: Assigning to rvalue (535:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/detective/test/files/es6-module.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/detective/test/files/shebang.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/detective/test/files/sparse-array.js failed. Error: Could not load module './foo' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/detective/test/files'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/test/_/bin.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/optimist/test/_/argv.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/resolve/test/precedence/bbb.js failed. SyntaxError: Unexpected token (5:19)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/error-detector.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/optimizer.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/helpers.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/config.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/sfc/parser.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/server/render-stream.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (17:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/server/create-renderer.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/server/render-context.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/server/render.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/server/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/server/write.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/shared/constants.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/shared/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/typescript-brunch/node_modules/typescript/lib/lib.dom.d.ts failed. SyntaxError: Unexpected token (26:10)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/typescript-brunch/node_modules/typescript/lib/lib.d.ts failed. SyntaxError: Unexpected token (25:8)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/typescript-brunch/node_modules/typescript/lib/lib.es6.d.ts failed. SyntaxError: Unexpected token (25:8)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/codegen/events.js failed. SyntaxError: Unexpected token (11:14)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/codegen/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/directives/model.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/global-api/extend.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/global-api/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/directives/bind.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/global-api/use.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/global-api/assets.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/global-api/mixin.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/components/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/components/keep-alive.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/instance/events.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/instance/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/instance/init.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/instance/inject.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/instance/lifecycle.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/instance/render.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/instance/proxy.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/parser/entity-decoder.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/instance/state.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/parser/html-parser.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (16:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/parser/text-parser.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/parser/filter-parser.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/compiler/parser/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/observer/dep.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/observer/array.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/observer/watcher.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/observer/scheduler.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/observer/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/platforms/web/compiler.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/platforms/web/runtime.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/platforms/web/server-renderer.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/platforms/web/runtime-with-compiler.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/vdom/create-component.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/vdom/create-element.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/vdom/create-functional-component.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/vdom/vnode.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/vdom/patch.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (19:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/util/debug.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/util/env.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/util/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/util/error.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/util/options.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:29 - error: Processing of node_modules/vue/src/core/util/lang.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/util/perf.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/util/props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/bundle-renderer/create-bundle-runner.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/bundle-renderer/create-bundle-renderer.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/bundle-renderer/source-map-support.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (11:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/template-renderer/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/framework.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime-factory.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/template-renderer/create-async-file-mapper.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (13:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/template-renderer/parse-template.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (13:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/template-renderer/template-stream.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/webpack-plugin/server.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/webpack-plugin/client.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/server/webpack-plugin/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (11:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/instance/render-helpers/bind-object-props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/instance/render-helpers/check-keycodes.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/instance/render-helpers/render-list.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/instance/render-helpers/render-static.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/instance/render-helpers/resolve-slots.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/instance/render-helpers/resolve-filter.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/instance/render-helpers/render-slot.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/class-util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (11:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/patch.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/node-ops.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/transition-util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/util/attrs.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/util/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/util/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/util/element.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/util/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/util/compat.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/modules/directives.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/server/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/modules/ref.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/helpers/extract-props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/helpers/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/helpers/get-first-component-child.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/helpers/normalize-children.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/helpers/merge-hook.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/helpers/resolve-async-component.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/core/vdom/helpers/update-listeners.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/node-ops.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/patch.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/text-node.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/util/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/resolve/test/resolver/bar/node_modules/foo/index.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/bar/node_modules/foo/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/resolve/test/resolver/biz/node_modules/grux/index.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/biz/node_modules/grux/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/biz/node_modules/tiv/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/punycode/node_modules/punycode/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/directives/html.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/directives/model.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/directives/text.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/compiler/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/components/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/components/transition.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/components/transition-group.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (18:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/directives/model.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/attrs.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/directives/show.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/dom-props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/events.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/transition.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/server/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/server/modules/dom-props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/server/directives/show.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/server/modules/attrs.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/server/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/server/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/web/server/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/append.js failed. SyntaxError: Unexpected token (7:29)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/compiler/directives/model.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/components/transition-group.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/components/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/components/transition.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (6:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/attrs.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:30 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/events.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:31 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/transition.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:31 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:42 - info: compiling..
15:14:42 - info: compiled 913 files into 4 files in 26.7 sec
15:14:46 - error: Processing of wwwroot/dist/site.js failed. Error: Could not load module '___globals___' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/wwwroot/dist'. Possible solution: add '___globals___' to package.json and `npm install`.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - warn: wwwroot/dist/site.css compiled, but not written. Check your stylesheets.joinTo config
15:14:46 - warn: wwwroot/dist/vendor.css compiled, but not written. Check your stylesheets.joinTo config
15:14:46 - error: Processing of node_modules/asn1.js/test.js failed. SyntaxError: Unexpected token (10:2)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/browserify-aes/populateFixtures.js failed. Error: Could not load module './EVP_BytesToKey' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/browserify-aes'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/micro-promisify/test.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/mime/cli.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/sha.js/bin.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/skemata/test.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of wwwroot/dist/vendor.js failed. SyntaxError: Unexpected token (290720:10)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/dist/walk.es.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (346:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/dist/acorn_loose.es.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/dist/acorn.es.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (3405:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/expression.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (23:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (26:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/identifier.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/location.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/locutil.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/lval.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/node.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/options.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/state.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/tokencontext.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/statement.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/parseutil.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/tokentype.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (28:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/tokenize.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/whitespace.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/grunt/change-version.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/buffer/bin/download-node-tests.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/buffer/bin/test.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/chokidar/lib/fsevents-handler.js failed. Error: Could not load module 'fsevents' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/chokidar/lib'. Possible solution: add 'fsevents' to package.json and `npm install`.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/check-dependencies/bin/cli.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/crypto-browserify/example/bundle.js failed. Error: Could not load module './sha' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/crypto-browserify/example'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/detective/bench/ddetect.js failed. Error: Could not load module '../faster.js' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/detective/bench'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/mkdirp/bin/cmd.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/object-keys/test/index.js failed. Error: Could not load module './isArguments' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/object-keys/test'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/bool.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/boolean_single.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/boolean_double.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/default_singles.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/default_hash.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/divide.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/line_count_options.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/line_count.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/line_count_wrap.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/reflect.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/string.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/nonopt.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/short.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/example/xup.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/qs/dist/qs.js failed. Error: Could not load module './formats' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/qs/dist'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/dist/vue.esm.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9693:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/dist/vue.runtime.esm.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7140:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/bin/acorn.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/loose/state.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/loose/parseutil.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/loose/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (36:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/loose/tokenize.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/loose/expression.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/loose/statement.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/acorn/src/walk/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (23:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/alert.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/carousel.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/button.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (180:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/dropdown.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/collapse.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/modal.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/popover.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/scrollspy.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (165:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/tab.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/bootstrap/js/src/tooltip.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/brunch/lib/utils/config.js failed. SyntaxError: Assigning to rvalue (535:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/detective/test/files/es6-module.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/detective/test/files/shebang.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/detective/test/files/sparse-array.js failed. Error: Could not load module './foo' from 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/detective/test/files'. Make sure the file actually exists.
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/test/_/bin.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/optimist/test/_/argv.js failed. SyntaxError: Unexpected character '#' (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/resolve/test/precedence/bbb.js failed. SyntaxError: Unexpected token (5:19)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/compiler/error-detector.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/compiler/optimizer.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/compiler/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/compiler/helpers.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/core/config.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/core/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/sfc/parser.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/server/render-stream.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (17:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/server/create-renderer.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/server/render-context.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/server/render.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:46 - error: Processing of node_modules/vue/src/server/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/write.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/shared/constants.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/shared/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/typescript-brunch/node_modules/typescript/lib/lib.dom.d.ts failed. SyntaxError: Unexpected token (26:10)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/typescript-brunch/node_modules/typescript/lib/lib.d.ts failed. SyntaxError: Unexpected token (25:8)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/typescript-brunch/node_modules/typescript/lib/lib.es6.d.ts failed. SyntaxError: Unexpected token (25:8)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/codegen/events.js failed. SyntaxError: Unexpected token (11:14)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/codegen/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/directives/model.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/global-api/extend.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/global-api/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/directives/bind.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/global-api/use.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/global-api/assets.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/global-api/mixin.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/components/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/components/keep-alive.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/events.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/init.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/inject.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/lifecycle.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/render.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/proxy.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/parser/entity-decoder.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/state.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/parser/html-parser.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (16:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/parser/text-parser.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/parser/filter-parser.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/compiler/parser/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/observer/dep.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/observer/array.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/observer/watcher.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/observer/scheduler.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/observer/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server-renderer.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (9:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime-with-compiler.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/create-component.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/create-element.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/create-functional-component.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/vnode.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/patch.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (19:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/util/debug.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/util/env.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/util/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/util/error.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/util/options.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/util/lang.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/util/perf.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/util/props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/bundle-renderer/create-bundle-runner.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/bundle-renderer/create-bundle-renderer.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/bundle-renderer/source-map-support.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (11:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/template-renderer/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/framework.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime-factory.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/template-renderer/create-async-file-mapper.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (13:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/template-renderer/parse-template.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (13:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/template-renderer/template-stream.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/webpack-plugin/server.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/webpack-plugin/client.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/server/webpack-plugin/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (11:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/without_basedir/node_modules/mymodule.js/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/render-helpers/bind-object-props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/render-helpers/check-keycodes.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/render-helpers/render-list.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/render-helpers/render-static.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/render-helpers/resolve-slots.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/render-helpers/resolve-filter.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/instance/render-helpers/render-slot.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/class-util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (11:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/patch.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/node-ops.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/transition-util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/util/attrs.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/util/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/util/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/util/element.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/util/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/util/compat.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/modules/directives.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server/util.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/modules/ref.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/helpers/extract-props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/helpers/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/helpers/get-first-component-child.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/helpers/normalize-children.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/helpers/merge-hook.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/helpers/resolve-async-component.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/core/vdom/helpers/update-listeners.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/node-ops.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (8:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/patch.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/text-node.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/util/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/resolve/test/resolver/bar/node_modules/foo/index.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/bar/node_modules/foo/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/resolve/test/resolver/biz/node_modules/grux/index.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/biz/node_modules/grux/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/resolve/test/resolver/biz/node_modules/tiv/index.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/biz/node_modules/tiv/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/resolve/test/resolver/punycode/node_modules/punycode/index.js failed. Error: Cannot find module 'C:/Users/thiag/Source/Repos/Nebula/Nebula.Web/node_modules/resolve/test/resolver/punycode/node_modules/punycode/package.json'
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/directives/html.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/directives/model.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/directives/text.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/compiler/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/components/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/components/transition.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/components/transition-group.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (18:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/directives/model.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (10:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/attrs.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/directives/show.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/dom-props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/events.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/runtime/modules/transition.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server/modules/dom-props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server/directives/show.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server/modules/attrs.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/web/server/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/append.js failed. SyntaxError: Unexpected token (7:29)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/props.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/compiler/directives/model.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/components/transition-group.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/components/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/directives/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/components/transition.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (6:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/attrs.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/class.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/style.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/events.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (7:0)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/transition.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - error: Processing of node_modules/vue/src/platforms/weex/runtime/modules/index.js failed. SyntaxError: 'import' and 'export' may only appear at the top level (5:4)
Stack trace was suppressed. Run with `LOGGY_STACKS=1` to see the trace.
15:14:47 - info: compiled in 5.1 sec

add comments on using ES6 modules with babel

firstly let me say what excellent documentation this is. Almost all questions I had were clearly answered and I could easily figure how to apply to my existing code.

If only webpack docs were as good. I literally spent several days getting a pretty basic build and dev server setup. And my requirements were similar to brunch conventions with several html files and HMR.

So the one unanswered question is that like I suspect many these days I use Es6 modules via babel. It's not clear how I should configue brunch in this case. I quess we turn modules off but as babel transpiles to commonJS I'm not sure.

Jade in Chapter6

Hi, having trouble completing Chapter 6.

First jquery is missing in your code snippets, either by using the npm global or requiring it in application.js.

After I added it, there seems to be a problem with jade:

Uncaught Error: Cannot find module 'jade/runtime' from '___globals___' in jquery.js:9848
Uncaught Error: Cannot find module 'jade/runtime' from '___globals___' in list.jade:1
Uncaught ReferenceError: jade is not defined in list.jade:15

After fixing a few errors before, I'm not sure what exactly the problem is and how it can be resolved.

Furthermore, jade is being renamed to pug..

Apply #20 change to the French guide

Can someone who is fluent in French please help us out and provide the matching change to what was just provided in #20 reflecting that there is an eslint plugin now?

Thanks in advance.

Documentation doesn't mention non-watch incremental build

I'm currently evaluating replacing the Rails Asset Pipeline with a better resources build system and took some quick experiments with webpack to have an idea on how the new tool would work for us.

Since moving from Sprockets to another tool will require a lot of time, I'm taking some time to investigate alternative build systems and Brunch is one of them. I've read the comparison with Grunt and Gulp but it doesn't mention webpack which seems to have the same abilities as Brunch from what is stated in that document.

Something I don't like in Webpack, and the reason I'm still researching for other alternatives, is that I'm interested in faster deploy times, which means I'm interested in incremental builds, not just for watch mode. Webpack doesn't support persistent caching so it only builds incrementally in watch mode.

I was curious to understand how caching works in Brunch for non watch mode. Is it the same as webpack?

Sprockets has several disadvantages when compared to webpack, but at least it does support incremental builds by allowing the compile steps caching to be stored in disk or in a Redis store.

There are other features supported by webpack which are essential to my application and I don't know whether they are supported in Brunch:

  • able to extract common modules in a separate bundle for libraries that don't often change so that user's caching wouldn't be completely invalidated on each deploy by using a single minified JS;
  • able to extract the required CSS rules for the initial load in CSS files I can load from the main page;
  • able to load the bundled scripts async so that do not block the initial "loading..." state for the initial page;
  • able to transparently download any missing bundles as they are needed. This is very important to reduce the load time for the application so that it could load the minimal amount of code to render the initial page and once the user starts interacting (or we could start loading the remaining of the application after the initial rendered is finished) the remaining of the code would be downloaded and loaded as well as any associated stylesheet rule;
  • able to load additional CSS from downloaded JS bundles dynamically by adding it to style tags (or link tags with encoded rules) and at the same time support IE8 by bundling all rules in a single style element to not risk creating too many style elements;
  • support for sync and async requires;
  • support for source maps and minifying resources;

I was able to get all of this working on webpack through some custom plugins and loaders but the deploy time will still take several seconds because it doesn't support incremental build in non-watch mode.

Also, it would be awesome if I was able to specify some dynamic rules in the watch mode so that my test runner would be able to detect new test files and build their bundled with dependencies and possibly run each test file in an isolated iframe. I couldn't set this with webpack yet.

Missing comparison with Webpack

It's easy to kick the old dog like Grunt or Gulp. But I wonder how Brunch compares with something really powerful like Webpack. It was not even mentioned in the Guide. And Webpack is much more popular and it is used by almost every React developer. It has also hot reload modules replacement. http://gaearon.github.io/react-hot-loader/ Is it also possible for Brunch?

My review

I think the live reloading itself is worth a small chapter.

Chapter 1

  1. Is there any point in mentioning glou at all? It was downloaded just 222 times within one month. No one knows about it.

Chapter 2

  1. Maybe add a link to Node + NPM itself for those who didn't heard about it (there may be someone)
  2. Should we promote default names for skeletons? @es128 i've started adding those in recent init-skeleton update. E.g. brunch new angular instead of gh repo.

Chapter 3

  1. Any value in adding link to brunch docs chapter for each convention?

    Customizing: source paths can be changed through an array of names/paths in the paths.watched setting. The target folder is set by paths.public. Special-treatment folders are defined through conventions.assets and conventions.vendor (which can be regexes or functions). Ignored files (not processed standalone, that is) are specified in conventions.ignored.

  2. Let's review the statement once 1.8 is released

    Do note that watching is not always 100% reliable, though, usually on Windows, more rarely on Linux or OSX (this is true as of 1.7.20; the next release should have improved things in this regard). A couple settings can help reduce what rare faux-pas you could see, we’ll explore these later.

  3. "By the way, you can also get notified" — how? We should probably add the install command.
  4. For webserver, we should probably just treat brunch-server.coffee as default server file that would be auto-consumed.

Chapter 5

  1. bower install --save jquery#1.* — a bit too cryptic maybe
  2. /^bower_components/ — this won't include auto-reload which may confuse future user, maybe just /^(?!app)/

Chapter 9

So yeah, for JS and CSS builds, we went “overboard” to an average 200ms, but that’s mostly because we embed heavy JS libs (jQuery 1.11, etc.) and heavy CSS (all of Bootstrap 3), so even with an incremental build, we write “fat” files:

JS libs are not the reason of "200ms slowness". Rather, it's jade compiler. We may say that we are doing some work in this direction to speed-up all compilers to work best  with brunch. (fcache)

Plugins

It's worth noting that plugin order matters (in package.json). For plugins that do stuff to same files.

The chapter feels too long when compared to others — worth splitting it into two?

[Chapter 5] JoinTo specific npm packages only

The guide shows that if you match against /^(?!app\/)/, you can get all npm modules, but that's because you get everything. It should show how to get only npm modules, or only a single npm module (e.g., a react specific bundle that has react and react-dom, but no other npm modules). Because currently I cannot actually tell by looking at your documentation.

Thanx a million !

Sorry for creating an Issue to communicate

am a newbie to webdev and was getting bored of continuous saving+refreshing thing ! So started to look for automation and found gulp , it took away 3-4 days of my productive time but didnt gain much , I found your page referenced in CSS-Tricks and thought of looking what you can offer and Damn , in 5 minutes i had the live reload thing up and running !

Cheers Guys great job !

Wrong regexp in chapter 5

In the guide,
brunch-guide/content/en/chapter05-using-third-party-registries.md
brunch-config.coffee code block

  ....
    javascripts: joinTo:
      'libraries.js': /^(?!app\/)/
      'app.js': /^app\//
  ....

produces one unique file: 'libraries.js' (with application.js and jquery.js)
... app.js is missing :(

Windows 7, 32bits, brunch v1.8

too much bold?

Just read through the HN comments. They may have a point about the quantity of bold phrases on that page. Perhaps we should tone it down a bit.

Review some stuff on 1.8

  • Do note that watching is not always 100% reliable, though, usually on Windows, more rarely on Linux or OSX (this is true as of 1.7.20; the next release should have improved things in this regard). A couple settings can help reduce what rare faux-pas you could see, we’ll explore these later.
  • brunch-server

Add examples of conversion from other build tool(s)

This is feedback with the best intentions. Needless to say it's my opinion, ymmv.

I just read the brunch-guide for the first time and boy does this project like to pat its own back.
I get it, you like brunch. It's your favourite thing in the world, which explains why you bothered to write a (otherwise great!) guide for it. But literally the entire first chapter is dedicated to emphasizing how much better brunch is than all those other crummy tools. In bold. Plus numerous remarks throughout the guide. I feel like some overly motivated sales rep is trying to sell me the brand new DishWasher3000™ which is just so much better than anything the competition has to offer and how could a smart handsome man like myself ever think that it's not?
IMHO you should try to make it sound more like an objective set of instructions and a little less like a misunderstood hipster tool still trying to prove itself. Keep the benchmarks for the about page or a blog post.

I understand you want to make sure people see the advantages. Maybe they are true. You got me hooked, right now I'm trying to get the configuration running. It is much less work than various other tools although its heavy reliance on predefined structures can be a bit of a pain. My existing project isn't structured that way. I don't have an app/ directory, period. "Well you could've used brunch from the start and structured it that way, we've been around for 6 years…" Yeah, yeah, whatever.

Get to the point. Tell me how I can adjust the tool to my project, not my project to the tool. Give me an example that has a deviating setup. Your lack in market share isn't because of bad marketing, it's because you scare away anyone who already has an existing project. Nobody goes looking for a compilation tool before writing any code. And nobody just happens to write their code in the exact setup you consider ideal.

Anyway, that's my two cents, take it as you will. Otherwise this is a great guide. I wish other tools had one that is this concise and up-to-date. Thanks!

PS: #13!

Brunch ?! seems to not work

Hello,

Maybe I have a mistake but this configuration does not work...
app.js contains tests/unit/spec.js and tests/func/spec.js and I don't understand why !

  files:
    javascripts:
      joinTo:
        'app.js': /(?!tests)/
        'test-unit.js': /\/tests\/unit\//
        'test-func.js': /\/tests\/func\//

Thanks !!!

chapter04-starting-from-scratch.md > Split targets

@tdd : Hi Christophe, I can't seem to be able to have this to work properly:

'libraries.js': /^app\/jquery\.js/
'app.js': /^(?!app\/jquery\.js)/

Running the example code, it creates the app.js but not the libraries.js. The jQuery just gets into app.js. If I replace the libraries' regex by a plain string, then the file gets created. Anything possibly wrong with the regex?

Thanks,

Antoine

Linking to this guide from site/docs

Hey guys, so what should we do before the official announcement of this guide, to make sure it's easily discoverable?

Links from the site

  • Main navbar?
  • Replace/complement README link in the home's Getting started section?
  • Complement the contents of the home's Documentation section?
  • Link to chapter 1 from the bottom of the home's "Why Brunch and not…" section?

Links from the docs

  • Link from the top of docs/README.md?
  • What else?

chapter04-starting-from-scratch.md > Split targets

When I copy/paste your brunch-config.js:

module.exports = {
  files: {
    javascripts: {
      joinTo: {
        'libraries.js': /^app\/jquery\.js/,
        'app.js': /^(?!app\/jquery\.js)/
      }
    },
    stylesheets: {joinTo: 'app.css'}
  }
}

The build is successful, but I get a js error on the page.

Uncaught Error: Cannot find module 'process' from '/'
    at require (libraries.js:61)
    at jquery.js:1
    at jquery.js:1
require @ libraries.js:61
(anonymous) @ jquery.js:1
(anonymous) @ jquery.js:1

The problem is that this code is added to the generated js:

require.alias("process/browser.js", "process");process = require('process');require.register("___globals___", function(exports, require, module) {

If I remove the code before the globals require, it works.

What I can't figure out, is why I can't change the brunch config to:

module.exports = {
  files: {
    javascripts: {
      joinTo: {
        'libraries.js': "app/jquery.js",
        'app.js': "app/application.js"
      }
    },
    stylesheets: {joinTo: 'app.css'}
  }
}

as a workaround to the problem. I still wind up with the process code, only now the node_module isn't in my app.js or libraries.js.

Remarques sur le guide français

Quelques remarques notées en lisant le guide français.

Aparté : bon style d'écriture, un peu familier, mais vivant. Peut-être un peu d'abus du gras, on croirait lire un comic ! 😉

  • J'ai téléchargé Growl for Windows, puis growlnotify, avant de m'apercevoir que ce dernier est inclus dans le premier (v.2.0.9 de mars 2012). Pas bien grave (le fichier est petit, la page donne les paramètres) mais peut valoir le coup d'être mentionné.

(À suivre, sauf si la suite est parfaite...)

Bower package recognition not working

The compilation fails with a message

error: Resolving deps of app/initialize.js failed. Could not load module 'angular-jsonapi' from '/home/cygnus/Projects/home_accounting_front/app'. Possible solution: add 'angular-jsonapi' to package.json and npm install.

I went through the steps described in the FAQ to use bower packages: Run a bower init to get my bower.json, added the deps, installed, etc.

The package I'm trying to use angular-jsonapi has a valid bower.json file with a main property.

I saw in this SO question that brunch gives a very descriptive error message when a bower package does not have a main property, so this probably is not the problem.

captura de pantalla de 2016-04-30 22 20 03

have to change http://brunch.io/docs/getting-started

on the step where we
$ echo 'console.log([1, 2, 3].reduce((s, n) => s + n ** 2))' > app/index.js
one must

<script>require('index');</script>

in /assets/index.html

or one must
require('./index');
in app/initialize.js

or one must perhaps do something else not mentioned in the tutorial.

my point is that it is a mistake to not mention "that 'something'" in the initial tutorial about this step, though it is mentioned in various SO questions and what not.

follow the tutorial on the getting started link and let me know if i'm missing something.

Review before announcement

Calling all of "Brunch Core" on deck: @paulmillr, @es128, @nikgraf, @tosh!

Hey guys,

Paul had noticed my FR article in early March, and tweeted about it ("It's like a book on Brunch!"). I got numerous requests to make it more widely available and less intimidating to read (not a single page, that is). So I bit the bullet and turned it into a bona-fide guide on GitHub, using 12 "chapters". And I made it available in English, too.

Before announcing it more widely (and I do hope you'll like it enough that you'll announce it through Brunch channels, perhaps even link to it from relevant places in Brunch's docs/site), I'd really like you guys to comb through it and make sure I didn't say something horribly incorrect.

Feel free to fork and PR, or just to comment on this issue, to materialize your feedback.

Looking forward to hearing from you!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.