brunch / brunch-guide

A comprehensive guide to Brunch
http://brunch.io
MIT License
558 stars 62 forks source link

Error during node_modules dependency compilation #56

Closed thiagomajesk closed 7 years ago

thiagomajesk commented 7 years ago

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 _nodemodules 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
thiagomajesk commented 7 years ago

Moved Issue to the right repository: brunch/brunch#1718