Giter Site home page Giter Site logo

cypress-io / netlify-plugin-cypress Goto Github PK

View Code? Open in Web Editor NEW
88.0 25.0 35.0 23.26 MB

Runs Cypress end-to-end tests after Netlify builds the site but before it is deployed

Home Page: https://www.cypress.io/blog/2020/03/30/run-cypress-tests-on-netlify-using-a-single-line/

License: MIT License

JavaScript 94.79% HTML 4.33% CSS 0.88%
cypress netlify netlify-plugin

netlify-plugin-cypress's Introduction

netlify-plugin-cypress

CircleCI renovate-app badge netlify-plugin-cypress Netlify Status

Runs Cypress end-to-end tests on Netlify Build

Install and use

You can install this plugin in the Netlify UI from this direct in-app installation link or from the Plugins directory.

For file based installation, add netlify-plugin-cypress NPM package as a dev dependency to your repository.

npm install --save-dev netlify-plugin-cypress
# or
yarn add -D netlify-plugin-cypress

And then add the plugin's name to the list of build plugins in netlify.toml file as shown in the examples below.

note: this plugin assumes you have already installed Cypress as a dev NPM dependency.

Chromium install

This plugin installs via Puppeteer Chromium browser, which is also cached inside ./node_modules folder.

How does it work

Build steps

When Netlify Build system runs it performs 2 steps essentially:

  1. builds the site
  2. deploys the site

Every plugin that wants to perform some actions can do so before the build, after the build (but before the deploy), and after the deploy. The Netlify uses the following names for these events

"preBuild"
1. builds the site
"postBuild"
2. deploys the site
"onSuccess"
"onFailure"

Thus every plugin can register itself to be executed before a site is built using "preBuild" event, or after a successful deploy using "onSuccess" event name, etc.

This plugin

This plugin netlify-plugin-cypress by default runs during the "onSuccess" event, testing the deployed site. The Netlify Build system gives the URL to the plugin and it runs Cypress against that URL using the Cypress NPM module API.

Optionally, you can also run tests during "preBuild" and "postBuild" steps. This is useful if you want to ensure the site is working even before deploying it to Netlify servers. Finally, this plugin does not use "onFailure" event which happens only if Netlify fails to deploy the site.

Failing the deploy

Running Cypress tests by default uses the "onSuccess" step of the build pipeline. By this point Netlify has already deployed the site. Even if the tests fail now, the Netlify shows the successful deployment - the site is live! To really prevent the broken deploys, we suggest using Cypress GitHub / GitLab / Bitbucket integration to fail the status checks on a pull request.

We also suggest running tests during the "preBuild" and/or "postBuild" steps. If the tests fail during these steps, the Netlify fails the entire build and does not deploy the broken site.

Finally, you can set up Slack notifications on failed tests against the deployed site. At least you will quickly find out if the deployed site fails the E2E tests and would be able to roll back the deploy.

Examples

basic

Here is the most basic Netlify config file netlify.toml with just the Cypress plugin

[[plugins]]
  # runs Cypress tests against the deployed URL
  package = "netlify-plugin-cypress"

The example file above should be enough to run Cypress tests in any existing Netlify project.

recommended

We strongly recommend setting CYPRESS_CACHE_FOLDER to place the Cypress binary inside the node_modules folder to cache it between builds

# explicit commands for building the site
# and the folder to publish
[build]
command = "npm run build"
publish = "build"

[build.environment]
# cache Cypress binary in local "node_modules" folder
# so Netlify caches it
CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
# set TERM variable for terminal output
TERM = "xterm"

[[plugins]]
# runs Cypress tests against the deployed URL
package = "netlify-plugin-cypress"

See netlify-plugin-cypress-example repo.

Typescript users may need to add a install before the build command. For a yarn user with a typescript app, the build section of the Netlify configuration might look like this:

[build]
command = "yarn install && yarn build"
publish = "build"

# ...remaining configuration...

tutorial

Read the full tutorial at Test Sites Deployed To Netlify Using netlify-plugin-cypress.

Note: if any tests against the deployed URL fail, the Netlify build still considers it a success. Thus if you want to have a test check against the deploy, install Cypress GitHub App. The app will provide its own failing status check in this case.

options

You can control the browser, the specs to run, record tests on Cypress Dashboard, etc, see manifest.yml file.

recording

To record test results and artifacts on Cypress Dashboard, set record: true plugin input and set CYPRESS_RECORD_KEY as an environment variable via Netlify Deploy settings.

[build]
command = "npm run build"
publish = "build"
  [build.environment]
  # cache Cypress binary in local "node_modules" folder
  # so Netlify caches it
  CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
  # set TERM variable for terminal output
  TERM = "xterm"

[[plugins]]
# runs Cypress tests against the deployed URL
package = "netlify-plugin-cypress"
  [plugins.inputs]
  record = true

See cypress-example-kitchensink and recorded results at Cypress Dashboard netlify-plugin-cypress

Security note ๐Ÿ”: you should keep your CYPRESS_RECORD_KEY secret. You can control how Netlify builds external pull requests, see the doc - you never want to expose sensitive environment variables to outside builds.

status checks

If you are recording test results to Cypress Dashboard, you should also install Cypress GitHub Integration App to see status checks from individual groups or from individual specs per commit. See netlify-plugin-prebuild-example PR #8 pull request for an example.

Netlify to Cypress Dashboard to GH Integration checks

group

You can change the group name for the recorded run using group parameter

[[plugins]]
# runs Cypress tests against the deployed URL
package = "netlify-plugin-cypress"
  [plugins.inputs]
  record = true
  group = "built site"

tag

You can give recorded run tags using a comma-separated string. If the tag is not specified, Netlify context will be used (production, deploy-preview or branch-deploy)

[[plugins]]
# runs Cypress tests against the deployed URL
package = "netlify-plugin-cypress"
  [plugins.inputs]
  record = true
  group = "built site"
  tag = "nightly,production"

spec

Run only a single spec or specs matching a wildcard

[build]
command = "npm run build"
publish = "build"
  [build.environment]
  # cache Cypress binary in local "node_modules" folder
  # so Netlify caches it
  CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
  # set TERM variable for terminal output
  TERM = "xterm"

[[plugins]]
# runs Cypress tests against the deployed URL
package = "netlify-plugin-cypress"
  [plugins.inputs]
  spec = "cypress/integration/smoke*.js"

See cypress-example-kitchensink for instance.

browser

By default all tests run using the Chromium browser. If you want to use Electron:

[build]
command = "npm run build"
publish = "build"
  [build.environment]
  # cache Cypress binary in local "node_modules" folder
  # so Netlify caches it
  CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
  # set TERM variable for terminal output
  TERM = "xterm"

[[plugins]]
package = "netlify-plugin-cypress"
  [plugins.inputs]
  # allowed values: electron, chromium
  browser = "electron"

configFile

If you would like to use a different Cypress config file instead of cypress.json, specify it using the configFile option

[build]
command = "npm run build"
publish = "build"
  [build.environment]
  # cache Cypress binary in local "node_modules" folder
  # so Netlify caches it
  CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
  # set TERM variable for terminal output
  TERM = "xterm"

[[plugins]]
package = "netlify-plugin-cypress"
  [plugins.inputs]
  configFile = "cypress.netlify.config.js"

testing SPA routes

SPAs need catch-all redirect setup to make non-root paths accessible by tests. You can enable this with spa parameter.

[[plugins]]
# local Cypress plugin will test our site after it is built
package = "netlify-plugin-cypress"
  [plugins.inputs]
  # can also use "spa = true" to use "index.html" by default
  spa = "index.html"

See lws-spa for more options and tests/routing example.

testing the site before build

By default this plugin tests static site after deploy. But maybe you want to run end-to-end tests against the local development server. You can start the local server, wait for it to respond and then run Cypress tests by passing parameters to this plugin. Here is a sample config file

[[plugins]]
  package = "netlify-plugin-cypress"
  # let's run tests against development server
  # before building it (and testing the built site)
  [plugins.inputs.preBuild]
    enable = true
    start = 'npm start'
    wait-on = 'http://localhost:3000'
    wait-on-timeout = '30' # seconds

Parameters you can place into preBuild inputs: start, wait-on, wait-on-timeout, spec, record, group, and tag.

See netlify-plugin-prebuild-example repo

testing the site after build

By default this plugin tests static site after deploy. But maybe you want to run end-to-end tests locally after building the static site. Cypress includes a local static server for this case but you can specify your own command if needed by using the start argument. Here is a sample config file

[[plugins]]
  package = "netlify-plugin-cypress"
  # let's run tests against the built site
  [plugins.inputs.postBuild]
    enable = true

Parameters you can place into postBuild inputs: spec, record, group, tag, start and spa.

The SPA parameter

If your site requires all unknown URLs to redirect back to the index page, use the spa parameter

[[plugins]]
  package = "netlify-plugin-cypress"
  # let's run tests against the built site
  [plugins.inputs.postBuild]
    enable = true
    # must allow our test server to redirect unknown routes to "/"
    # so that client-side routing can correctly route them
    # can be set to true or "index.html" (or similar fallback filename in the built folder)
    spa = true
    start = 'npm start'

See the routing example.

using Netlify CLI

Even better when testing the prebuilt site is to run the Netlify CLI to make sure the local API redirects and Netlify functions work in addition to the web site. Add netlify-cli as a dev dependency and start it during testing.

$ npm i -D netlify-cli
[[plugins]]
  package = "netlify-plugin-cypress"
  # start Netlify server
  [plugins.inputs.preBuild]
    start = 'npx netlify dev'
    wait-on = 'http://localhost:8888'

For more, see tests/test-netlify-dev example and read Testing Netlify Function section.

skipping tests

If you are testing the site before building it and want to skip testing the deployed URL

[[plugins]]
  package = "netlify-plugin-cypress"
  # do not test the deployed URL
  [plugins.inputs]
    enable = false
  # test the local site
  [plugins.inputs.preBuild]
    enable = true

parallelization

Running tests in parallel is not supported because Netlify plugin system runs on a single machine. Thus you can record the tests on Cypress Dashboard, but not run tests in parallel. If Netlify expands its build offering by allowing multiple build machines, we could take advantage of it and run tests in parallel.

HTML files

When serving the built folder, we automatically serve .html files. For example, if your folder has the following structure:

public/
  index.html
  pages/
    about.html

The public folder is served automatically and the following test successfully visits both the root and the about.html pages:

cy.visit('/')
cy.visit('/pages/about') // visits the about.html

Example repos

Name Description
netlify-plugin-cypress-example Runs Cypress tests on Netlify and records their results to Cypress Dashboard
netlify-plugin-prebuild-example Runs tests twice, first using the development version of the site, then after Netlify builds the production bundles, runs the tests again
cypress-example-kitchensink Runs only a subset of all tests before publishing the folder to Netlify
bahmutov/eleventyone Example used in Test Sites Deployed To Netlify Using netlify-plugin-cypress tutorial
gatsby-starter-portfolio-cara A Gatsby site example

Major upgrades

v1 to v2

  • The default browser has been switched to Chromium. If you want to use the built-in Electron use an explicit option browser
  • We have changed the default testing phase. In v1 the tests executed after building the site by default. In v2 the tests run against the deployed URL by default, and you need to enable the testing during preBuild or postBuild steps.

Debugging

Set environment variable DEBUG=netlify-plugin-cypress to see the debug logs. To see even more information, set DEBUG=netlify-plugin-cypress,netlify-plugin-cypress:verbose

Warning: be careful with verbose logging, since it can print all environment variables passed to the plugin, including tokens, API keys, and other secrets.

Common problems

Too many progress messages while installing Cypress If you see A LOT of progress messages during "npm install" step, set an environment variable during build CI = 1 to remove them.
Cypress binary is installed on every build By default Cypress binary is installed in the home folder, see caching. Netlify build does NOT cache this folder, but it DOES cache the local "node_modules" folder. Tell Cypress to install its binary in the "node_modules" folder by setting build environment variable CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary".
Several versions of Cypress are installed according to the build logs From the Netlify UI under Deploys, pick "Trigger Deploy" and select "Clear cache and deploy site". This should cleanly install new "node_modules" and remove old Cypress versions.
Term message warnings in the Cypress output If you see messages like tput: No value for $TERM and no -T specified during Cypress run, add an environment variable TERM = xterm.
Electron browser crashes while running tests Switch to using Chromium browser that seems to be a bit more reliable. Use browser = "chromium" setting.
You want to skip Puppeteer download If you do not plan on using Chromium to run the tests, if you want to use the built-in Electron browser, you can save time by skipping the Puppeteer download. Set the environment variable PUPPETEER_SKIP_DOWNLOAD = 1 on your CI.

License

This project is licensed under the terms of the MIT license.

Contributing

Read the contributing guide

netlify-plugin-cypress's People

Contributors

admah avatar atofstryker avatar bahmutov avatar cypresschris avatar cypressjoseph avatar ehmicky avatar erquhart avatar jaffrepaul avatar jennifer-shehane avatar martinliptak avatar mikemcc399 avatar mjhenkes avatar renovate-bot avatar renovate[bot] avatar rstavchansky avatar

Stargazers

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

Watchers

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

netlify-plugin-cypress's Issues

Possibility to define browser

Is your feature request related to a problem? Please describe.
Electron is not a near-real-world browser environment for my tests to run.

Describe the solution you'd like
I would like to be able to define which browser to use when running tests. Headless Chrome would be the possible easiest option.

Describe alternatives you've considered
I've considered using GitHub Actions due to this limitation :)

Internal error while loading the plugin

I was trying the plugin for the first time, I'm using the version 1.3.7 along with cypress 4.4.0 and get the following error log while building in netlify:

2:51:10 PM: + @netlify/[email protected]
2:51:10 PM: added 584 packages from 324 contributors in 19.062s
2:51:11 PM: Starting Netlify Build...
2:51:12 PM: โ€‹
2:51:12 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:51:12 PM: โ”‚        Netlify Build        โ”‚
2:51:12 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:51:12 PM: โ€‹
2:51:12 PM: โฏ Version
2:51:12 PM:   @netlify/build 0.3.4
2:51:12 PM: โ€‹
2:51:12 PM: โฏ Flags
2:51:12 PM:   mode: buildbot
2:51:12 PM: โ€‹
2:51:12 PM: โฏ Current directory
2:51:12 PM:   /opt/build/repo
2:51:12 PM: โ€‹
2:51:12 PM: โฏ Config file
2:51:12 PM:   /opt/build/repo/netlify.toml
2:51:12 PM: โ€‹
2:51:12 PM: โฏ Context
2:51:12 PM:   production
2:51:13 PM: โ€‹
2:51:13 PM: โฏ Loading plugins
2:51:13 PM: โ€‹
2:51:13 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:51:13 PM: โ”‚ Plugin "netlify-plugin-cypress" internal error โ”‚
2:51:13 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:51:13 PM: โ€‹
2:51:13 PM:   Error message
2:51:13 PM:   /opt/build/repo/node_modules/got/dist/source/create.js:101
2:51:13 PM:       got.paginate = async function* (url, options) {
2:51:13 PM:                                    ^
2:51:13 PM: โ€‹
2:51:13 PM:   SyntaxError: Unexpected token *
2:51:13 PM: โ€‹
2:51:13 PM:   Plugin details
2:51:13 PM:   ID:             netlify-plugin-cypress
2:51:13 PM:   Version:        1.3.7
2:51:13 PM:   Repository:     git+https://github.com/cypress-io/netlify-plugin-cypress.git
2:51:13 PM:   npm link:       https://www.npmjs.com/package/netlify-plugin-cypress
2:51:13 PM:   Report issues:  https://github.com/cypress-io/netlify-plugin-cypress/issues
2:51:13 PM: โ€‹
2:51:13 PM:   Error location
2:51:13 PM:   While loading npm package "netlify-plugin-cypress"
2:51:13 PM:       at createScript (vm.js:80:10)
2:51:13 PM:       at Object.runInThisContext (vm.js:139:10)
2:51:13 PM:       at Module._compile (module.js:617:28)
2:51:13 PM:       at Object.Module._extensions..js (module.js:664:10)
2:51:13 PM:       at Module.load (module.js:566:32)
2:51:13 PM:       at tryModuleLoad (module.js:506:12)
2:51:13 PM:       at Function.Module._load (module.js:498:3)
2:51:13 PM:       at Module.require (module.js:597:17)
2:51:13 PM:       at require (internal/module.js:11:18)
2:51:13 PM:       at Object.<anonymous> (/opt/build/repo/node_modules/got/dist/source/index.js:7:18)

Small update: Tried again with the plugin version 1.3.1 and is working fine

Netlify functions are not available during test execution

Versions

  • What is this plugin's version? latest
  • What is Cypress version? latest
  • What Netlify build image are you using? Ubuntu Xenial 16.04
  • What is the Node version if you know it? 12.18.0
  • What is the NPM version if you know it? 6.14.4

Describe the bug
When executing tests only static assets are being taken into account. Netlify functions are not provided. This means that all calls to ./functions fail. Locally I'm running netlify dev command to have functions ready.

Solution
Not sure on how to solve this. Perhaps cypress plugin could fire up a netlify server? Or I switch to testing the deployed site for now. But this is also not possible out of the box as baseUrl is set to localhost:8080.

Cypress already running

Versions

  • What is this plugin's version? 1.3.11
  • What is Cypress version? 4.7.0
  • What Netlify build image are you using? This setting is available under "Deploy settings / Build image selection". Probably either "Ubuntu Trusty 14.04" or "Ubuntu Xenial 16.04". Build image 3.3.14
  • What is the Node version if you know it? 10.20.1
  • What is the NPM version if you know it? 6.14.4

Describe the bug
The following line:

return http.createServer(server).listen(port)

Sometimes fail with:

Error: listen EADDRINUSE: address already in use :::8080 
    net.js:1313:16 Server.setupListenHandle [as _listen2]
    net.js:1361:12 listenInCluster
    net.js:1449:7 Server.listen
    /opt/buildhome/.netlify-build-plugins/node_modules/netlify-plugin-cypress/src/index.js:12:36 serveFolder
    /opt/buildhome/.netlify-build-plugins/node_modules/netlify-plugin-cypress/src/index.js:139:18 postBuild
    /opt/buildhome/.netlify-build-plugins/node_modules/netlify-plugin-cypress/src/index.js:226:13 onPostBuild
    src/plugins/child/run.js:18:9 Object.run
    src/plugins/child/main.js:38:61 handleEvent
    src/plugins/child/main.js:32:61 
    src/plugins/ipc.js:97:15 process.<anonymous>
    events.js:310:20 process.emit
    internal/child_process.js:876:12 emit
    internal/process/task_queues.js:85:21 processTicksAndRejections

This probably indicates that, somehow, Cypress is already running. Or that the user is using that port for other purpose. Either way, it might be a user error, i.e. listening to the port might need to be wrapped in try/catch and utils.build.failBuild().

Logs and screenshots

2:07:13 PM: Build ready to start
2:07:15 PM: build-image version: 30f629161c0736b1a3ecd8b418e5eeffab5c0faf
2:07:15 PM: build-image tag: v3.3.14
2:07:15 PM: buildbot version: 578c7628507b646d2c2478c57933187c689f36ec
2:07:15 PM: Fetching cached dependencies
2:07:15 PM: Starting to download cache of 260.5MB
2:07:16 PM: Finished downloading cache in 1.1998577s
2:07:16 PM: Starting to extract cache
2:07:26 PM: Finished extracting cache in 9.826306889s
2:07:26 PM: Finished fetching cache in 11.089392161s
2:07:26 PM: Starting to prepare the repo for build
2:07:27 PM: Preparing Git Reference refs/heads/master
2:07:31 PM: Different publish path detected, going to use the one specified in the Netlify configuration file: 'dist' versus '/dist' in the Netlify UI
2:07:31 PM: Different functions path detected, going to use the one specified in the Netlify configuration file: 'functions' versus '' in the Netlify UI
2:07:31 PM: Creating functions prep folder
2:07:31 PM: Starting build script
2:07:31 PM: Installing dependencies
2:07:32 PM: Started restoring cached node version
2:07:35 PM: Finished restoring cached node version
2:07:36 PM: v10.20.1 is already installed.
2:07:36 PM: Now using node v10.20.1 (npm v6.14.4)
2:07:36 PM: Started restoring cached build plugins
2:07:36 PM: Finished restoring cached build plugins
2:07:36 PM: Attempting ruby version 2.6.2, read from environment
2:07:38 PM: Using ruby version 2.6.2
2:07:38 PM: Using PHP version 5.6
2:07:38 PM: 5.2 is already installed.
2:07:38 PM: Using Swift version 5.2
2:07:38 PM: Started restoring cached node modules
2:07:38 PM: Finished restoring cached node modules
2:07:38 PM: Installing NPM modules using NPM version 6.14.4
2:07:53 PM: > [email protected] postinstall /opt/build/repo/node_modules/@vue/cli-plugin-e2e-cypress/node_modules/cypress
2:07:53 PM: > node index.js --exec install
2:07:54 PM: Note: Overriding Cypress cache directory to: ./node_modules/CypressBinary
2:07:54 PM:       Previous installs of Cypress may not be found.
2:07:54 PM: Installing Cypress (version: 3.8.3)
2:07:54 PM: 
2:07:54 PM: [12:07:54]  Downloading Cypress     [started]
2:07:54 PM: [12:07:54]  Downloading Cypress      0% 0s [title changed]
2:07:54 PM: [12:07:54]  Downloading Cypress      1% 10s [title changed]
2:07:54 PM: [12:07:54]  Downloading Cypress      6% 3s [title changed]
2:07:54 PM: [12:07:54]  Downloading Cypress      14% 2s [title changed]
2:07:54 PM: [12:07:54]  Downloading Cypress      20% 2s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      27% 1s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      35% 1s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      40% 1s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      49% 1s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      58% 1s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      63% 1s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      72% 0s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      80% 0s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      90% 0s [title changed]
2:07:55 PM: [12:07:55]  Downloading Cypress      98% 0s [title changed]
2:07:56 PM: [12:07:56]  Downloaded Cypress      [title changed]
2:07:56 PM: [12:07:56]  Downloaded Cypress      [completed]
2:07:56 PM: [12:07:56]  Unzipping Cypress       [started]
2:07:56 PM: [12:07:56]  Unzipping Cypress        0% 0s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        1% 221s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        1% 222s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        1% 223s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        1% 224s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        1% 225s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        1% 226s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        1% 227s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        2% 112s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        2% 113s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        2% 114s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        2% 115s [title changed]
2:07:58 PM: [12:07:58]  Unzipping Cypress        3% 76s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        3% 77s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        3% 78s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        3% 79s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        4% 58s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        4% 59s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        4% 60s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        5% 47s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        5% 48s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        5% 49s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        6% 40s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        6% 41s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        7% 35s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        7% 36s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        7% 37s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        8% 32s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        9% 29s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        9% 30s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        10% 26s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        10% 27s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        11% 24s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        11% 25s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        12% 22s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        12% 23s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        13% 21s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        14% 19s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        14% 20s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        15% 18s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        15% 19s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        16% 17s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        16% 18s [title changed]
2:07:59 PM: [12:07:59]  Unzipping Cypress        17% 16s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        17% 17s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        18% 16s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        19% 15s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        19% 16s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        20% 15s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        21% 14s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        22% 14s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        23% 13s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        24% 13s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        25% 12s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        26% 12s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        27% 11s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        28% 11s [title changed]
2:08:00 PM: [12:08:00]  Unzipping Cypress        29% 11s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        30% 10s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        31% 10s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        32% 10s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        33% 9s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        34% 9s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        34% 10s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        35% 9s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        36% 9s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        37% 9s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        38% 9s [title changed]
2:08:01 PM: [12:08:01]  Unzipping Cypress        39% 8s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        40% 8s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        41% 8s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        42% 8s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        43% 7s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        43% 8s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        44% 7s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        45% 7s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        46% 7s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        47% 7s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        48% 6s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        48% 7s [title changed]
2:08:02 PM: [12:08:02]  Unzipping Cypress        49% 6s [title changed]
2:08:03 PM: [12:08:03]  Unzipping Cypress        49% 7s [title changed]
2:08:03 PM: [12:08:03]  Unzipping Cypress        50% 7s [title changed]
2:08:03 PM: [12:08:03]  Unzipping Cypress        51% 7s [title changed]
2:08:03 PM: [12:08:03]  Unzipping Cypress        52% 6s [title changed]
2:08:03 PM: [12:08:03]  Unzipping Cypress        53% 6s [title changed]
2:08:03 PM: [12:08:03]  Unzipping Cypress        54% 6s [title changed]
2:08:03 PM: [12:08:03]  Unzipping Cypress        55% 6s [title changed]
2:08:03 PM: [12:08:03]  Unzipping Cypress        56% 6s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        57% 6s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        58% 5s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        59% 5s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        60% 5s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        61% 5s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        62% 5s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        63% 5s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        64% 4s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        65% 4s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        66% 4s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        67% 4s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        68% 4s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        69% 4s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        70% 4s [title changed]
2:08:04 PM: [12:08:04]  Unzipping Cypress        71% 3s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        72% 3s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        73% 3s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        74% 3s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        75% 3s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        76% 3s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        77% 3s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        78% 2s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        78% 3s [title changed]
2:08:05 PM: [12:08:05]  Unzipping Cypress        100% 0s [title changed]
2:08:05 PM: [12:08:05]  Unzipped Cypress        [title changed]
2:08:05 PM: [12:08:05]  Unzipped Cypress        [completed]
2:08:05 PM: [12:08:05]  Finishing Installation  [started]
2:08:05 PM: [12:08:05]  Finished Installation   /opt/build/repo/node_modules/@vue/cli-plugin-e2e-cypress/node_modules/CypressBinary/3.8.3 [title changed]
2:08:05 PM: [12:08:05]  Finished Installation   /opt/build/repo/node_modules/@vue/cli-plugin-e2e-cypress/node_modules/CypressBinary/3.8.3 [completed]
2:08:05 PM: 
2:08:06 PM: You can now open Cypress by running: node_modules/.bin/cypress open
2:08:06 PM: https://on.cypress.io/installing-cypress
2:08:06 PM: 
2:08:06 PM: > [email protected] postinstall /opt/build/repo/node_modules/cypress
2:08:06 PM: > node index.js --exec install
2:08:07 PM: Note: Overriding Cypress cache directory to: ./node_modules/CypressBinary
2:08:07 PM:       Previous installs of Cypress may not be found.
2:08:07 PM: Installing Cypress (version: 4.7.0)
2:08:07 PM: 
2:08:07 PM: [12:08:07]  Downloading Cypress     [started]
2:08:09 PM: [12:08:09]  Downloading Cypress     [completed]
2:08:09 PM: [12:08:09]  Unzipping Cypress       [started]
2:08:18 PM: [12:08:18]  Unzipping Cypress       [completed]
2:08:18 PM: [12:08:18]  Finishing Installation  [started]
2:08:18 PM: [12:08:18]  Finishing Installation  [completed]
2:08:18 PM: 
2:08:19 PM: You can now open Cypress by running: node_modules/.bin/cypress open
2:08:19 PM: https://on.cypress.io/installing-cypress
2:08:19 PM: 
2:08:23 PM: npm WARN [email protected] requires a peer of eslint@>= 3.2.1 but none is installed. You must install peer dependencies yourself.
2:08:23 PM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
2:08:23 PM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
2:08:23 PM: added 68 packages from 45 contributors, removed 34 packages, updated 15 packages and audited 1996 packages in 43.698s
2:08:24 PM: 45 packages are looking for funding
2:08:24 PM:   run `npm fund` for details
2:08:24 PM: found 10 vulnerabilities (8 low, 1 high, 1 critical)
2:08:24 PM:   run `npm audit fix` to fix them, or `npm audit` for details
2:08:24 PM: NPM modules installed
2:08:24 PM: Started restoring cached go cache
2:08:24 PM: Finished restoring cached go cache
2:08:24 PM: go version go1.12 linux/amd64
2:08:24 PM: go version go1.12 linux/amd64
2:08:24 PM: Installing missing commands
2:08:24 PM: Verify run directory
2:08:26 PM: โ€‹
2:08:26 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:08:26 PM: โ”‚        Netlify Build        โ”‚
2:08:26 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:08:26 PM: โ€‹
2:08:26 PM: โฏ Version
2:08:26 PM:   @netlify/build 1.0.11
2:08:26 PM: โ€‹
2:08:26 PM: โฏ Flags
2:08:26 PM:   mode: buildbot
2:08:26 PM: โ€‹
2:08:26 PM: โฏ Current directory
2:08:26 PM:   /opt/build/repo
2:08:26 PM: โ€‹
2:08:26 PM: โฏ Config file
2:08:26 PM:   /opt/build/repo/netlify.toml
2:08:26 PM: โ€‹
2:08:26 PM: โฏ Context
2:08:26 PM:   production
2:08:26 PM: โ€‹
2:08:26 PM: โฏ Loading plugins
2:08:26 PM:    - @netlify/[email protected] from core
2:08:26 PM:    - [email protected] from netlify.toml
2:08:28 PM: โ€‹
2:08:28 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:08:28 PM: โ”‚ 1. onPreBuild command from netlify-plugin-cypress โ”‚
2:08:28 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:08:28 PM: โ€‹
2:08:29 PM: waiting on "http://localhost:8080" with timeout of 30 seconds
2:08:29 PM: > [email protected] serve /opt/build/repo
2:08:29 PM: > vue-cli-service serve
2:08:30 PM:  INFO  Starting development server...
2:08:31 PM: <s> [webpack.Progress] 0% compiling
2:08:31 PM: <s> [webpack.Progress] 10% building 0/0 modules 0 active
2:08:31 PM: <s> [webpack.Progress] 10% building 0/1 modules 1 active multi /opt/build/repo/node_modules/webpack-dev-server/client/index.js /opt/build/repo/node_modules/webpack/hot/dev-server.js ./src/main.js
2:08:31 PM: <s> [webpack.Progress] 10% building 1/1 modules 0 active
2:08:31 PM: <s> [webpack.Progress] 10% building 1/1 modules 0 active
2:08:31 PM: <s> [webpack.Progress] 10% building 1/2 modules 1 active multi /opt/build/repo/node_modules/webpack/hot/dev-server.js /opt/build/repo/node_modules/webpack-dev-server/client/index.js ./src/main.js
2:08:31 PM: <s> [webpack.Progress] 10% building 2/2 modules 0 active
2:08:31 PM: <s> [webpack.Progress] 10% building 2/3 modules 1 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/main.js
2:08:31 PM: <s> [webpack.Progress] 10% building 2/4 modules 2 active /opt/build/repo/node_modules/webpack-dev-server/client/index.js
2:08:31 PM: <s> [webpack.Progress] 10% building 2/5 modules 3 active /opt/build/repo/node_modules/webpack/hot/dev-server.js
2:08:31 PM: <s> [webpack.Progress] 10% building 3/5 modules 2 active /opt/build/repo/node_modules/webpack/hot/dev-server.js
2:08:31 PM: <s> [webpack.Progress] 10% building 4/5 modules 1 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/main.js
2:08:31 PM: <s> [webpack.Progress] 10% building 4/6 modules 2 active /opt/build/repo/node_modules/webpack/hot sync nonrecursive /^\.\/log$/
2:08:31 PM: <s> [webpack.Progress] 10% building 5/6 modules 1 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/main.js
2:08:31 PM: <s> [webpack.Progress] 10% building 5/7 modules 2 active /opt/build/repo/node_modules/webpack/hot/log.js
2:08:31 PM: <s> [webpack.Progress] 10% building 5/8 modules 3 active /opt/build/repo/node_modules/webpack/hot/log-apply-result.js
2:08:31 PM: <s> [webpack.Progress] 10% building 5/9 modules 4 active /opt/build/repo/node_modules/webpack/hot/emitter.js
2:08:31 PM: <s> [webpack.Progress] 10% building 5/10 modules 5 active /opt/build/repo/node_modules/webpack-dev-server/client/socket.js
2:08:31 PM: <s> [webpack.Progress] 10% building 5/11 modules 6 active /opt/build/repo/node_modules/webpack-dev-server/client/overlay.js
2:08:32 PM: <s> [webpack.Progress] 10% building 5/12 modules 7 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/log.js
2:08:32 PM: <s> [webpack.Progress] 10% building 5/13 modules 8 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/sendMessage.js
2:08:32 PM: <s> [webpack.Progress] 10% building 5/14 modules 9 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/reloadApp.js
2:08:32 PM: <s> [webpack.Progress] 10% building 5/15 modules 10 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 10% building 6/15 modules 9 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 6/15 modules 9 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 7/15 modules 8 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 8/15 modules 7 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 9/15 modules 6 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 10/15 modules 5 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 11/15 modules 4 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 12/15 modules 3 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 13/15 modules 2 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 14/15 modules 1 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/createSocketUrl.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/15 modules 0 active
2:08:32 PM: <s> [webpack.Progress] 40% building 15/16 modules 1 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/installers/installSentry.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/17 modules 2 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/installers/installGTag.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/18 modules 3 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/installers/installFullstory.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/19 modules 4 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/installers/installServiceWorker.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/20 modules 5 active /opt/build/repo/node_modules/webpack-dev-server/client/clients/SockJSClient.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/21 modules 6 active /opt/build/repo/node_modules/events/events.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/22 modules 7 active /opt/build/repo/node_modules/core-js/modules/es.array.iterator.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/23 modules 8 active /opt/build/repo/node_modules/core-js/modules/es.promise.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/24 modules 9 active /opt/build/repo/node_modules/core-js/modules/es.object.assign.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/25 modules 10 active /opt/build/repo/node_modules/core-js/modules/es.promise.finally.js
2:08:32 PM: <s> [webpack.Progress] 40% building 15/26 modules 11 active /opt/build/repo/node_modules/vue/dist/vue.runtime.esm.js
2:08:32 PM: <s> [webpack.Progress] 40% building 16/26 modules 10 active /opt/build/repo/node_modules/vue/dist/vue.runtime.esm.js
2:08:32 PM: <s> [webpack.Progress] 40% building 16/27 modules 11 active /opt/build/repo/node_modules/webpack-dev-server/client/utils/getCurrentScriptSource.js
2:08:32 PM: <s> [webpack.Progress] 40% building 16/28 modules 12 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/App.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 16/29 modules 13 active /opt/build/repo/node_modules/url/url.js
2:08:32 PM: <s> [webpack.Progress] 40% building 16/30 modules 14 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 17/30 modules 13 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 18/30 modules 12 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 19/30 modules 11 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 20/30 modules 10 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 21/30 modules 9 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 22/30 modules 8 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 23/30 modules 7 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 24/30 modules 6 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 25/30 modules 5 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 26/30 modules 4 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 26/31 modules 5 active /opt/build/repo/node_modules/webpack/buildin/global.js
2:08:32 PM: <s> [webpack.Progress] 40% building 27/31 modules 4 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 28/31 modules 3 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 29/31 modules 2 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue
2:08:32 PM: <s> [webpack.Progress] 40% building 29/32 modules 3 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/router/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 29/33 modules 4 active /opt/build/repo/node_modules/webpack-dev-server/client/clients/BaseClient.js
2:08:32 PM: <s> [webpack.Progress] 40% building 29/34 modules 5 active /opt/build/repo/node_modules/webpack-dev-server/node_modules/strip-ansi/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 29/35 modules 6 active /opt/build/repo/node_modules/core-js/modules/es.object.to-string.js
2:08:32 PM: <s> [webpack.Progress] 40% building 30/35 modules 5 active /opt/build/repo/node_modules/core-js/modules/es.object.to-string.js
2:08:32 PM: <s> [webpack.Progress] 40% building 31/35 modules 4 active /opt/build/repo/node_modules/core-js/modules/es.object.to-string.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/35 modules 3 active /opt/build/repo/node_modules/core-js/modules/es.object.to-string.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/36 modules 4 active /opt/build/repo/node_modules/url/util.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/37 modules 5 active /opt/build/repo/node_modules/core-js/internals/to-indexed-object.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/38 modules 6 active /opt/build/repo/node_modules/core-js/internals/add-to-unscopables.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/39 modules 7 active /opt/build/repo/node_modules/core-js/internals/iterators.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/40 modules 8 active /opt/build/repo/node_modules/core-js/internals/internal-state.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/41 modules 9 active /opt/build/repo/node_modules/core-js/internals/define-iterator.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/42 modules 10 active /opt/build/repo/node_modules/core-js/internals/export.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/43 modules 11 active /opt/build/repo/node_modules/core-js/internals/is-pure.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/44 modules 12 active /opt/build/repo/node_modules/core-js/internals/global.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/45 modules 13 active /opt/build/repo/node_modules/core-js/internals/get-built-in.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/46 modules 14 active /opt/build/repo/node_modules/core-js/internals/native-promise-constructor.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/47 modules 15 active /opt/build/repo/node_modules/core-js/internals/redefine.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/48 modules 16 active /opt/build/repo/node_modules/core-js/internals/redefine-all.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/49 modules 17 active /opt/build/repo/node_modules/core-js/internals/set-to-string-tag.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/50 modules 18 active /opt/build/repo/node_modules/core-js/internals/set-species.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/51 modules 19 active /opt/build/repo/node_modules/core-js/internals/a-function.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/52 modules 20 active /opt/build/repo/node_modules/core-js/internals/is-object.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/53 modules 21 active /opt/build/repo/node_modules/core-js/internals/an-instance.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/54 modules 22 active /opt/build/repo/node_modules/core-js/internals/classof-raw.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/55 modules 23 active /opt/build/repo/node_modules/core-js/internals/inspect-source.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/56 modules 24 active /opt/build/repo/node_modules/core-js/internals/iterate.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/57 modules 25 active /opt/build/repo/node_modules/core-js/internals/check-correctness-of-iteration.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/58 modules 26 active /opt/build/repo/node_modules/core-js/internals/species-constructor.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/59 modules 27 active /opt/build/repo/node_modules/core-js/internals/task.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/60 modules 28 active /opt/build/repo/node_modules/core-js/internals/microtask.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/61 modules 29 active /opt/build/repo/node_modules/core-js/internals/promise-resolve.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/62 modules 30 active /opt/build/repo/node_modules/core-js/internals/host-report-errors.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/63 modules 31 active /opt/build/repo/node_modules/core-js/internals/new-promise-capability.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/64 modules 32 active /opt/build/repo/node_modules/core-js/internals/perform.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/65 modules 33 active /opt/build/repo/node_modules/core-js/internals/is-forced.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/66 modules 34 active /opt/build/repo/node_modules/core-js/internals/well-known-symbol.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/67 modules 35 active /opt/build/repo/node_modules/core-js/internals/engine-v8-version.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/68 modules 36 active /opt/build/repo/node_modules/core-js/internals/object-assign.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/69 modules 37 active /opt/build/repo/node_modules/core-js/internals/fails.js
2:08:32 PM: <s> [webpack.Progress] 40% building 32/70 modules 38 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/store/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 33/70 modules 37 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/store/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 33/71 modules 38 active /opt/build/repo/node_modules/ansi-html/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 33/72 modules 39 active /opt/build/repo/node_modules/querystring-es3/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 34/72 modules 38 active /opt/build/repo/node_modules/querystring-es3/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 34/73 modules 39 active /opt/build/repo/node_modules/vue-shortkey/dist/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 34/74 modules 40 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/App.vue?vue&type=template&id=7ba5bd90&
2:08:32 PM: <s> [webpack.Progress] 40% building 35/74 modules 39 active /opt/build/repo/node_modules/vue-shortkey/dist/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 35/75 modules 40 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=template&id=595284dc&
2:08:32 PM: <s> [webpack.Progress] 40% building 36/75 modules 39 active /opt/build/repo/node_modules/vue-shortkey/dist/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 36/76 modules 40 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=script&lang=js&
2:08:32 PM: <s> [webpack.Progress] 40% building 37/76 modules 39 active /opt/build/repo/node_modules/vue-shortkey/dist/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 37/77 modules 40 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=script&lang=js&
2:08:32 PM: <s> [webpack.Progress] 40% building 38/77 modules 39 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=script&lang=js&
2:08:32 PM: <s> [webpack.Progress] 40% building 38/78 modules 40 active /opt/build/repo/node_modules/regenerator-runtime/runtime.js
2:08:32 PM: <s> [webpack.Progress] 40% building 38/79 modules 41 active /opt/build/repo/node_modules/html-entities/lib/index.js
2:08:32 PM: <s> [webpack.Progress] 40% building 38/80 modules 42 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:32 PM: <s> [webpack.Progress] 40% building 39/80 modules 41 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:32 PM: <s> [webpack.Progress] 40% building 40/80 modules 40 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:32 PM: <s> [webpack.Progress] 40% building 41/80 modules 39 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:32 PM: <s> [webpack.Progress] 40% building 42/80 modules 38 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:32 PM: <s> [webpack.Progress] 40% building 43/80 modules 37 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:32 PM: <s> [webpack.Progress] 40% building 44/80 modules 36 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:32 PM: <s> [webpack.Progress] 40% building 45/80 modules 35 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 46/80 modules 34 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 47/80 modules 33 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 48/80 modules 32 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 49/80 modules 31 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 50/80 modules 30 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 51/80 modules 29 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 52/80 modules 28 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 53/80 modules 27 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 54/80 modules 26 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 55/80 modules 25 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 56/80 modules 24 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 57/80 modules 23 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 58/80 modules 22 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 59/80 modules 21 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 60/80 modules 20 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 61/80 modules 19 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 62/80 modules 18 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 63/80 modules 17 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 64/80 modules 16 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 65/80 modules 15 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 66/80 modules 14 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 67/80 modules 13 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 68/80 modules 12 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 69/80 modules 11 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 70/80 modules 10 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 71/80 modules 9 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 72/80 modules 8 active /opt/build/repo/node_modules/node-libs-browser/node_modules/punycode/punycode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 72/81 modules 9 active /opt/build/repo/node_modules/loglevel/lib/loglevel.js
2:08:33 PM: <s> [webpack.Progress] 40% building 73/81 modules 8 active /opt/build/repo/node_modules/loglevel/lib/loglevel.js
2:08:33 PM: <s> [webpack.Progress] 40% building 74/81 modules 7 active /opt/build/repo/node_modules/loglevel/lib/loglevel.js
2:08:33 PM: <s> [webpack.Progress] 40% building 74/82 modules 8 active /opt/build/repo/node_modules/vue-loader/lib/runtime/componentNormalizer.js
2:08:33 PM: <s> [webpack.Progress] 40% building 74/83 modules 9 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/App.vue?vue&type=template&id=7ba5bd90&
2:08:33 PM: <s> [webpack.Progress] 40% building 74/84 modules 10 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=template&id=595284dc&
2:08:33 PM: <s> [webpack.Progress] 40% building 75/84 modules 9 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=template&id=595284dc&
2:08:33 PM: <s> [webpack.Progress] 40% building 75/85 modules 10 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js
2:08:33 PM: <s> [webpack.Progress] 40% building 75/86 modules 11 active /opt/build/repo/node_modules/sockjs-client/dist/sockjs.js
2:08:33 PM: <s> [webpack.Progress] 40% building 76/86 modules 10 active /opt/build/repo/node_modules/sockjs-client/dist/sockjs.js
2:08:33 PM: <s> [webpack.Progress] 40% building 77/86 modules 9 active /opt/build/repo/node_modules/sockjs-client/dist/sockjs.js
2:08:33 PM: <s> [webpack.Progress] 40% building 78/86 modules 8 active /opt/build/repo/node_modules/sockjs-client/dist/sockjs.js
2:08:33 PM: <s> [webpack.Progress] 40% building 78/87 modules 9 active /opt/build/repo/node_modules/webpack/buildin/module.js
2:08:33 PM: <s> [webpack.Progress] 40% building 79/87 modules 8 active /opt/build/repo/node_modules/sockjs-client/dist/sockjs.js
2:08:33 PM: <s> [webpack.Progress] 40% building 79/88 modules 9 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 80/88 modules 8 active /opt/build/repo/node_modules/sockjs-client/dist/sockjs.js
2:08:33 PM: <s> [webpack.Progress] 40% building 80/89 modules 9 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue
2:08:33 PM: <s> [webpack.Progress] 40% building 80/90 modules 10 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/About.vue
2:08:33 PM: <s> [webpack.Progress] 40% building 80/91 modules 11 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue
2:08:33 PM: <s> [webpack.Progress] 40% building 80/92 modules 12 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue
2:08:33 PM: <s> [webpack.Progress] 40% building 80/93 modules 13 active /opt/build/repo/node_modules/vue-hot-reload-api/dist/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 80/94 modules 14 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--6-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--6-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!/opt/build/repo/src/assets/tailwind.css?vue&type=style&index=0&lang=css&
2:08:33 PM: <s> [webpack.Progress] 40% building 81/94 modules 13 active /opt/build/repo/node_modules/vue-hot-reload-api/dist/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 81/95 modules 14 active /opt/build/repo/node_modules/core-js/internals/object-to-string.js
2:08:33 PM: <s> [webpack.Progress] 40% building 82/95 modules 13 active /opt/build/repo/node_modules/core-js/internals/object-to-string.js
2:08:33 PM: <s> [webpack.Progress] 40% building 82/96 modules 14 active /opt/build/repo/node_modules/core-js/internals/to-string-tag-support.js
2:08:33 PM: <s> [webpack.Progress] 40% building 83/96 modules 13 active /opt/build/repo/node_modules/core-js/internals/to-string-tag-support.js
2:08:33 PM: <s> [webpack.Progress] 40% building 84/96 modules 12 active /opt/build/repo/node_modules/core-js/internals/to-string-tag-support.js
2:08:33 PM: <s> [webpack.Progress] 40% building 85/96 modules 11 active /opt/build/repo/node_modules/core-js/internals/to-string-tag-support.js
2:08:33 PM: <s> [webpack.Progress] 40% building 85/97 modules 12 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 86/97 modules 11 active /opt/build/repo/node_modules/core-js/internals/to-string-tag-support.js
2:08:33 PM: <s> [webpack.Progress] 40% building 86/98 modules 12 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--6-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!/opt/build/repo/src/assets/tailwind.css?vue&type=style&index=0&lang=css&
2:08:33 PM: <s> [webpack.Progress] 40% building 87/98 modules 11 active /opt/build/repo/node_modules/core-js/internals/to-string-tag-support.js
2:08:33 PM: <s> [webpack.Progress] 40% building 87/99 modules 12 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DesktopNavLinks.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 87/100 modules 13 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!/opt/build/repo/src/assets/tailwind.css?vue&type=style&index=0&lang=css&
2:08:33 PM: <s> [webpack.Progress] 40% building 88/100 modules 12 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--6-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--6-oneOf-1-2!/opt/build/repo/src/assets/tailwind.css?vue&type=style&index=0&lang=css&
2:08:33 PM: <s> [webpack.Progress] 40% building 88/101 modules 13 active /opt/build/repo/node_modules/core-js/internals/indexed-object.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/102 modules 14 active /opt/build/repo/node_modules/core-js/internals/require-object-coercible.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/103 modules 15 active /opt/build/repo/node_modules/core-js/internals/object-create.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/104 modules 16 active /opt/build/repo/node_modules/core-js/internals/object-define-property.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/105 modules 17 active /opt/build/repo/node_modules/core-js/internals/native-weak-map.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/106 modules 18 active /opt/build/repo/node_modules/core-js/internals/create-non-enumerable-property.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/107 modules 19 active /opt/build/repo/node_modules/core-js/internals/has.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/108 modules 20 active /opt/build/repo/node_modules/core-js/internals/shared-key.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/109 modules 21 active /opt/build/repo/node_modules/core-js/internals/hidden-keys.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/110 modules 22 active /opt/build/repo/node_modules/core-js/internals/create-iterator-constructor.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/111 modules 23 active /opt/build/repo/node_modules/core-js/internals/object-get-prototype-of.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/112 modules 24 active /opt/build/repo/node_modules/core-js/internals/object-set-prototype-of.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/113 modules 25 active /opt/build/repo/node_modules/core-js/internals/iterators-core.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/114 modules 26 active /opt/build/repo/node_modules/core-js/internals/object-get-own-property-descriptor.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/115 modules 27 active /opt/build/repo/node_modules/core-js/internals/set-global.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/116 modules 28 active /opt/build/repo/node_modules/core-js/internals/copy-constructor-properties.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/117 modules 29 active /opt/build/repo/node_modules/core-js/internals/path.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/118 modules 30 active /opt/build/repo/node_modules/core-js/internals/descriptors.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/119 modules 31 active /opt/build/repo/node_modules/core-js/internals/shared-store.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/120 modules 32 active /opt/build/repo/node_modules/core-js/internals/an-object.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/121 modules 33 active /opt/build/repo/node_modules/core-js/internals/is-array-iterator-method.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/122 modules 34 active /opt/build/repo/node_modules/core-js/internals/to-length.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/123 modules 35 active /opt/build/repo/node_modules/core-js/internals/function-bind-context.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/124 modules 36 active /opt/build/repo/node_modules/core-js/internals/get-iterator-method.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/125 modules 37 active /opt/build/repo/node_modules/core-js/internals/call-with-safe-iteration-closing.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/126 modules 38 active /opt/build/repo/node_modules/core-js/internals/engine-is-ios.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/127 modules 39 active /opt/build/repo/node_modules/core-js/internals/html.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/128 modules 40 active /opt/build/repo/node_modules/core-js/internals/document-create-element.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/129 modules 41 active /opt/build/repo/node_modules/core-js/internals/shared.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/130 modules 42 active /opt/build/repo/node_modules/core-js/internals/uid.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/131 modules 43 active /opt/build/repo/node_modules/core-js/internals/native-symbol.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/132 modules 44 active /opt/build/repo/node_modules/core-js/internals/use-symbol-as-uid.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/133 modules 45 active /opt/build/repo/node_modules/core-js/internals/object-keys.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/134 modules 46 active /opt/build/repo/node_modules/core-js/internals/object-get-own-property-symbols.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/135 modules 47 active /opt/build/repo/node_modules/core-js/internals/object-property-is-enumerable.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/136 modules 48 active /opt/build/repo/node_modules/core-js/internals/to-object.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/137 modules 49 active /opt/build/repo/node_modules/core-js/internals/engine-user-agent.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/138 modules 50 active /opt/build/repo/node_modules/querystring-es3/decode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 88/139 modules 51 active /opt/build/repo/node_modules/querystring-es3/encode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 89/139 modules 50 active /opt/build/repo/node_modules/querystring-es3/encode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 90/139 modules 49 active /opt/build/repo/node_modules/querystring-es3/encode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 91/139 modules 48 active /opt/build/repo/node_modules/querystring-es3/encode.js
2:08:33 PM: <s> [webpack.Progress] 40% building 91/140 modules 49 active /opt/build/repo/node_modules/register-service-worker/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 91/141 modules 50 active /opt/build/repo/node_modules/html-entities/lib/xml-entities.js
2:08:33 PM: <s> [webpack.Progress] 40% building 91/142 modules 51 active /opt/build/repo/node_modules/html-entities/lib/html4-entities.js
2:08:33 PM: <s> [webpack.Progress] 40% building 91/143 modules 52 active /opt/build/repo/node_modules/html-entities/lib/html5-entities.js
2:08:33 PM: <s> [webpack.Progress] 40% building 91/144 modules 53 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 92/144 modules 52 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 93/144 modules 51 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 94/144 modules 50 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 95/144 modules 49 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 96/144 modules 48 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 97/144 modules 47 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 98/144 modules 46 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 99/144 modules 45 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 100/144 modules 44 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 101/144 modules 43 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 102/144 modules 42 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 103/144 modules 41 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 104/144 modules 40 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 105/144 modules 39 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 106/144 modules 38 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 107/144 modules 37 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 108/144 modules 36 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 109/144 modules 35 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 110/144 modules 34 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 111/144 modules 33 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 112/144 modules 32 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 113/144 modules 31 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 114/144 modules 30 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 115/144 modules 29 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 116/144 modules 28 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 117/144 modules 27 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 118/144 modules 26 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 119/144 modules 25 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 120/144 modules 24 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 121/144 modules 23 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 122/144 modules 22 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 123/144 modules 21 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 124/144 modules 20 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 125/144 modules 19 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 126/144 modules 18 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 127/144 modules 17 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 128/144 modules 16 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 129/144 modules 15 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 130/144 modules 14 active /opt/build/repo/node_modules/vue-gtag/dist/vue-gtag.esm.js
2:08:33 PM: <s> [webpack.Progress] 40% building 130/145 modules 15 active /opt/build/repo/node_modules/@sentry/browser/esm/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 130/146 modules 16 active /opt/build/repo/node_modules/@sentry/integrations/esm/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 131/146 modules 15 active /opt/build/repo/node_modules/@sentry/integrations/esm/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 131/147 modules 16 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=template&id=65d59982&
2:08:33 PM: <s> [webpack.Progress] 40% building 132/147 modules 15 active /opt/build/repo/node_modules/@sentry/integrations/esm/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 132/148 modules 16 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=script&lang=js&
2:08:33 PM: <s> [webpack.Progress] 40% building 133/148 modules 15 active /opt/build/repo/node_modules/@sentry/integrations/esm/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 133/149 modules 16 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 134/149 modules 15 active /opt/build/repo/node_modules/@sentry/integrations/esm/index.js
2:08:33 PM: <s> [webpack.Progress] 40% building 134/150 modules 16 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=script&lang=js&
2:08:33 PM: <s> [webpack.Progress] 40% building 134/151 modules 17 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=template&id=65d59982&
2:08:33 PM: <s> [webpack.Progress] 40% building 134/152 modules 18 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 135/152 modules 17 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=template&id=65d59982&
2:08:33 PM: <s> [webpack.Progress] 40% building 135/153 modules 18 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 136/153 modules 17 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 136/154 modules 18 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue?vue&type=template&id=46a88b29&
2:08:33 PM: <s> [webpack.Progress] 40% building 137/154 modules 17 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 137/155 modules 18 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue?vue&type=script&lang=js&
2:08:33 PM: <s> [webpack.Progress] 40% building 138/155 modules 17 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Feedback.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 138/156 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue?vue&type=script&lang=js&
2:08:33 PM: <s> [webpack.Progress] 40% building 138/157 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue?vue&type=template&id=46a88b29&
2:08:33 PM: <s> [webpack.Progress] 40% building 139/157 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue?vue&type=template&id=46a88b29&
2:08:33 PM: <s> [webpack.Progress] 40% building 139/158 modules 19 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=template&id=fae5bece&
2:08:33 PM: <s> [webpack.Progress] 40% building 140/158 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue?vue&type=template&id=46a88b29&
2:08:33 PM: <s> [webpack.Progress] 40% building 140/159 modules 19 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=script&lang=js&
2:08:33 PM: <s> [webpack.Progress] 40% building 141/159 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue?vue&type=template&id=46a88b29&
2:08:33 PM: <s> [webpack.Progress] 40% building 141/160 modules 19 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 142/160 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/NotFound.vue?vue&type=template&id=46a88b29&
2:08:33 PM: <s> [webpack.Progress] 40% building 142/161 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=script&lang=js&
2:08:33 PM: <s> [webpack.Progress] 40% building 142/162 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=template&id=fae5bece&
2:08:33 PM: <s> [webpack.Progress] 40% building 142/163 modules 21 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 143/163 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=template&id=fae5bece&
2:08:33 PM: <s> [webpack.Progress] 40% building 143/164 modules 21 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 144/164 modules 20 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 144/165 modules 21 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/About.vue?vue&type=template&id=039c5b43&
2:08:33 PM: <s> [webpack.Progress] 40% building 145/165 modules 20 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 145/166 modules 21 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/About.vue?vue&type=script&lang=js&
2:08:33 PM: <s> [webpack.Progress] 40% building 146/166 modules 20 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=style&index=0&lang=scss&
2:08:33 PM: <s> [webpack.Progress] 40% building 146/167 modules 21 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/About.vue?vue&type=script&lang=js&
2:08:33 PM: <s> [webpack.Progress] 40% building 146/168 modules 22 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/About.vue?vue&type=template&id=039c5b43&
2:08:33 PM: <s> [webpack.Progress] 40% building 147/168 modules 21 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/About.vue?vue&type=template&id=039c5b43&
2:08:33 PM: <s> [webpack.Progress] 40% building 148/168 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/About.vue?vue&type=template&id=039c5b43&
2:08:33 PM: <s> [webpack.Progress] 40% building 148/169 modules 21 active /opt/build/repo/node_modules/vue-style-loader/lib/addStylesClient.js
2:08:33 PM: <s> [webpack.Progress] 40% building 149/169 modules 20 active /opt/build/repo/node_modules/vue-style-loader/lib/addStylesClient.js
2:08:33 PM: <s> [webpack.Progress] 40% building 149/170 modules 21 active /opt/build/repo/node_modules/core-js/modules/es.function.name.js
2:08:33 PM: <s> [webpack.Progress] 40% building 150/170 modules 20 active /opt/build/repo/node_modules/core-js/modules/es.function.name.js
2:08:33 PM: <s> [webpack.Progress] 40% building 151/170 modules 19 active /opt/build/repo/node_modules/core-js/modules/es.function.name.js
2:08:33 PM: <s> [webpack.Progress] 40% building 152/170 modules 18 active /opt/build/repo/node_modules/core-js/modules/es.function.name.js
2:08:33 PM: <s> [webpack.Progress] 40% building 153/170 modules 17 active /opt/build/repo/node_modules/core-js/modules/es.function.name.js
2:08:33 PM: <s> [webpack.Progress] 40% building 154/170 modules 16 active /opt/build/repo/node_modules/core-js/modules/es.function.name.js
2:08:33 PM: <s> [webpack.Progress] 40% building 154/171 modules 17 active /opt/build/repo/node_modules/core-js/internals/classof.js
2:08:33 PM: <s> [webpack.Progress] 40% building 155/171 modules 16 active /opt/build/repo/node_modules/core-js/internals/classof.js
2:08:33 PM: <s> [webpack.Progress] 40% building 156/171 modules 15 active /opt/build/repo/node_modules/core-js/internals/classof.js
2:08:33 PM: <s> [webpack.Progress] 40% building 157/171 modules 14 active /opt/build/repo/node_modules/core-js/internals/classof.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/171 modules 13 active /opt/build/repo/node_modules/core-js/internals/classof.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/172 modules 14 active /opt/build/repo/node_modules/core-js/internals/object-define-properties.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/173 modules 15 active /opt/build/repo/node_modules/core-js/internals/enum-bug-keys.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/174 modules 16 active /opt/build/repo/node_modules/core-js/internals/ie8-dom-define.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/175 modules 17 active /opt/build/repo/node_modules/core-js/internals/to-primitive.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/176 modules 18 active /opt/build/repo/node_modules/core-js/internals/create-property-descriptor.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/177 modules 19 active /opt/build/repo/node_modules/core-js/internals/correct-prototype-getter.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/178 modules 20 active /opt/build/repo/node_modules/core-js/internals/own-keys.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/179 modules 21 active /opt/build/repo/node_modules/core-js/internals/a-possible-prototype.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/180 modules 22 active /opt/build/repo/node_modules/core-js/internals/to-integer.js
2:08:34 PM: <s> [webpack.Progress] 40% building 158/181 modules 23 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 159/181 modules 22 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 160/181 modules 21 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 161/181 modules 20 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 162/181 modules 19 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 163/181 modules 18 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 164/181 modules 17 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 165/181 modules 16 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 166/181 modules 15 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 167/181 modules 14 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 168/181 modules 13 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 169/181 modules 12 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 170/181 modules 11 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 171/181 modules 10 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 172/181 modules 9 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 173/181 modules 8 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 174/181 modules 7 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 175/181 modules 6 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 176/181 modules 5 active /opt/build/repo/node_modules/core-js/internals/object-keys-internal.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/181 modules 4 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/views/Home.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 177/182 modules 5 active /opt/build/repo/node_modules/@sentry/integrations/esm/angular.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/183 modules 6 active /opt/build/repo/node_modules/@sentry/integrations/esm/captureconsole.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/184 modules 7 active /opt/build/repo/node_modules/@sentry/integrations/esm/debug.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/185 modules 8 active /opt/build/repo/node_modules/@sentry/integrations/esm/dedupe.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/186 modules 9 active /opt/build/repo/node_modules/@sentry/integrations/esm/ember.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/187 modules 10 active /opt/build/repo/node_modules/@sentry/integrations/esm/extraerrordata.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/188 modules 11 active /opt/build/repo/node_modules/@sentry/integrations/esm/reportingobserver.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/189 modules 12 active /opt/build/repo/node_modules/@sentry/integrations/esm/rewriteframes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/190 modules 13 active /opt/build/repo/node_modules/@sentry/integrations/esm/sessiontiming.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/191 modules 14 active /opt/build/repo/node_modules/@sentry/integrations/esm/transaction.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/192 modules 15 active /opt/build/repo/node_modules/@sentry/integrations/esm/vue.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/193 modules 16 active /opt/build/repo/node_modules/@sentry/browser/esm/exports.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/194 modules 17 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue
2:08:34 PM: <s> [webpack.Progress] 40% building 177/195 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/globals.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/196 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue
2:08:34 PM: <s> [webpack.Progress] 40% building 177/197 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue
2:08:34 PM: <s> [webpack.Progress] 40% building 177/198 modules 21 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue
2:08:34 PM: <s> [webpack.Progress] 40% building 177/199 modules 22 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue
2:08:34 PM: <s> [webpack.Progress] 40% building 177/200 modules 23 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue
2:08:34 PM: <s> [webpack.Progress] 40% building 177/201 modules 24 active /opt/build/repo/node_modules/vue-router/dist/vue-router.esm.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/202 modules 25 active /opt/build/repo/node_modules/webpack-dev-server/node_modules/ansi-regex/index.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/203 modules 26 active /opt/build/repo/node_modules/vue-style-loader/lib/listToStyles.js
2:08:34 PM: <s> [webpack.Progress] 40% building 177/204 modules 27 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 178/204 modules 26 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 179/204 modules 25 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 180/204 modules 24 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 181/204 modules 23 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 182/204 modules 22 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 183/204 modules 21 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 184/204 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 185/204 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 186/204 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 187/204 modules 17 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 188/204 modules 16 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 189/204 modules 15 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/SearchEngine.js
2:08:34 PM: <s> [webpack.Progress] 40% building 189/205 modules 16 active /opt/build/repo/node_modules/core-js/modules/es.array.concat.js
2:08:34 PM: <s> [webpack.Progress] 40% building 189/206 modules 17 active /opt/build/repo/node_modules/core-js/modules/es.regexp.exec.js
2:08:34 PM: <s> [webpack.Progress] 40% building 189/207 modules 18 active /opt/build/repo/node_modules/core-js/modules/es.string.replace.js
2:08:34 PM: <s> [webpack.Progress] 40% building 189/208 modules 19 active /opt/build/repo/node_modules/core-js/modules/es.string.search.js
2:08:34 PM: <s> [webpack.Progress] 40% building 190/208 modules 18 active /opt/build/repo/node_modules/core-js/modules/es.string.search.js
2:08:34 PM: <s> [webpack.Progress] 40% building 191/208 modules 17 active /opt/build/repo/node_modules/core-js/modules/es.string.search.js
2:08:34 PM: <s> [webpack.Progress] 40% building 192/208 modules 16 active /opt/build/repo/node_modules/core-js/modules/es.string.search.js
2:08:34 PM: <s> [webpack.Progress] 40% building 192/209 modules 17 active /opt/build/repo/node_modules/vuex/dist/vuex.esm.js
2:08:34 PM: <s> [webpack.Progress] 40% building 192/210 modules 18 active /opt/build/repo/node_modules/core-js/internals/object-get-own-property-names.js
2:08:34 PM: <s> [webpack.Progress] 40% building 192/211 modules 19 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 193/211 modules 18 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 194/211 modules 17 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 195/211 modules 16 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 196/211 modules 15 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 197/211 modules 14 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 197/212 modules 15 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=template&id=77d5fc36&
2:08:34 PM: <s> [webpack.Progress] 40% building 198/212 modules 14 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 198/213 modules 15 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 199/213 modules 14 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 199/214 modules 15 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 200/214 modules 14 active /opt/build/repo/node_modules/core-js/internals/array-includes.js
2:08:34 PM: <s> [webpack.Progress] 40% building 200/215 modules 15 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 200/216 modules 16 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=template&id=77d5fc36&
2:08:34 PM: <s> [webpack.Progress] 40% building 200/217 modules 17 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 201/217 modules 16 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=template&id=77d5fc36&
2:08:34 PM: <s> [webpack.Progress] 40% building 201/218 modules 17 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 202/218 modules 16 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 202/219 modules 17 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=template&id=632235c1&
2:08:34 PM: <s> [webpack.Progress] 40% building 203/219 modules 16 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 203/220 modules 17 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 204/220 modules 16 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 204/221 modules 17 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 205/221 modules 16 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/FeedbackCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 205/222 modules 17 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 205/223 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=template&id=632235c1&
2:08:34 PM: <s> [webpack.Progress] 40% building 205/224 modules 19 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 206/224 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=template&id=632235c1&
2:08:34 PM: <s> [webpack.Progress] 40% building 206/225 modules 19 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 207/225 modules 18 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 207/226 modules 19 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=template&id=29ff1f16&
2:08:34 PM: <s> [webpack.Progress] 40% building 208/226 modules 18 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 208/227 modules 19 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 209/227 modules 18 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 209/228 modules 19 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 210/228 modules 18 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/DefectDetailsCard.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 210/229 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 210/230 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=template&id=29ff1f16&
2:08:34 PM: <s> [webpack.Progress] 40% building 210/231 modules 21 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 211/231 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=template&id=29ff1f16&
2:08:34 PM: <s> [webpack.Progress] 40% building 211/232 modules 21 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 212/232 modules 20 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 213/232 modules 19 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 214/232 modules 18 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 214/233 modules 19 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue?vue&type=template&id=c1947d3e&
2:08:34 PM: <s> [webpack.Progress] 40% building 215/233 modules 18 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 215/234 modules 19 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 216/234 modules 18 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NoResults.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 216/235 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 216/236 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue?vue&type=template&id=c1947d3e&
2:08:34 PM: <s> [webpack.Progress] 40% building 217/236 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue?vue&type=template&id=c1947d3e&
2:08:34 PM: <s> [webpack.Progress] 40% building 217/237 modules 20 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=template&id=4418a9f2&
2:08:34 PM: <s> [webpack.Progress] 40% building 218/237 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue?vue&type=template&id=c1947d3e&
2:08:34 PM: <s> [webpack.Progress] 40% building 218/238 modules 20 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 219/238 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue?vue&type=template&id=c1947d3e&
2:08:34 PM: <s> [webpack.Progress] 40% building 219/239 modules 20 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 220/239 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/NewDefectCard.vue?vue&type=template&id=c1947d3e&
2:08:34 PM: <s> [webpack.Progress] 40% building 220/240 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 220/241 modules 21 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=template&id=4418a9f2&
2:08:34 PM: <s> [webpack.Progress] 40% building 220/242 modules 22 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 221/242 modules 21 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=template&id=4418a9f2&
2:08:34 PM: <s> [webpack.Progress] 40% building 221/243 modules 22 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 222/243 modules 21 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 222/244 modules 22 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=template&id=27029d83&
2:08:34 PM: <s> [webpack.Progress] 40% building 223/244 modules 21 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 223/245 modules 22 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 224/245 modules 21 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 224/246 modules 22 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 225/246 modules 21 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionList.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 225/247 modules 22 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=script&lang=js&
2:08:34 PM: <s> [webpack.Progress] 40% building 225/248 modules 23 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=template&id=27029d83&
2:08:34 PM: <s> [webpack.Progress] 40% building 225/249 modules 24 active /opt/build/repo/node_modules/vue-style-loader/index.js??ref--8-oneOf-1-0!/opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 226/249 modules 23 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=template&id=27029d83&
2:08:34 PM: <s> [webpack.Progress] 40% building 226/250 modules 24 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 227/250 modules 23 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 228/250 modules 22 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 229/250 modules 21 active /opt/build/repo/node_modules/css-loader/dist/cjs.js??ref--8-oneOf-1-1!/opt/build/repo/node_modules/vue-loader/lib/loaders/stylePostLoader.js!/opt/build/repo/node_modules/postcss-loader/src/index.js??ref--8-oneOf-1-2!/opt/build/repo/node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SearchBox.vue?vue&type=style&index=0&lang=scss&
2:08:34 PM: <s> [webpack.Progress] 40% building 229/251 modules 22 active /opt/build/repo/node_modules/@sentry/browser/esm/client.js
2:08:34 PM: <s> [webpack.Progress] 40% building 229/252 modules 23 active /opt/build/repo/node_modules/@sentry/browser/esm/version.js
2:08:34 PM: <s> [webpack.Progress] 40% building 229/253 modules 24 active /opt/build/repo/node_modules/@sentry/browser/esm/sdk.js
2:08:35 PM: <s> [webpack.Progress] 40% building 229/254 modules 25 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/GetUniqueArrayByKey.js
2:08:35 PM: <s> [webpack.Progress] 40% building 230/254 modules 24 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/GetUniqueArrayByKey.js
2:08:35 PM: <s> [webpack.Progress] 40% building 231/254 modules 23 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/GetUniqueArrayByKey.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/254 modules 22 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/GetUniqueArrayByKey.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/255 modules 23 active /opt/build/repo/node_modules/tslib/tslib.es6.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/256 modules 24 active /opt/build/repo/node_modules/core-js/internals/is-array.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/257 modules 25 active /opt/build/repo/node_modules/core-js/internals/create-property.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/258 modules 26 active /opt/build/repo/node_modules/core-js/internals/array-species-create.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/259 modules 27 active /opt/build/repo/node_modules/core-js/internals/array-method-has-species-support.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/260 modules 28 active /opt/build/repo/node_modules/core-js/internals/regexp-exec.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/261 modules 29 active /opt/build/repo/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/262 modules 30 active /opt/build/repo/node_modules/core-js/internals/advance-string-index.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/263 modules 31 active /opt/build/repo/node_modules/core-js/internals/regexp-exec-abstract.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/264 modules 32 active /opt/build/repo/node_modules/core-js/internals/same-value.js
2:08:35 PM: <s> [webpack.Progress] 40% building 232/265 modules 33 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/indexBuilders/buildIndex.js
2:08:38 PM: <s> [webpack.Progress] 40% building 233/265 modules 32 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/indexBuilders/buildIndex.js
2:08:38 PM: <s> [webpack.Progress] 40% building 233/266 modules 33 active /opt/build/repo/node_modules/@sentry/browser/esm/integrations/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 233/267 modules 34 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 234/267 modules 33 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 235/267 modules 32 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 236/267 modules 31 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 237/267 modules 30 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 238/267 modules 29 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 239/267 modules 28 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/267 modules 27 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/268 modules 28 active /opt/build/repo/node_modules/@sentry/core/esm/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/269 modules 29 active /opt/build/repo/node_modules/@sentry/utils/esm/index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/270 modules 30 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/objectSpread2.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/271 modules 31 active /opt/build/repo/node_modules/core-js/modules/es.array.for-each.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/272 modules 32 active /opt/build/repo/node_modules/core-js/modules/es.array.map.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/273 modules 33 active /opt/build/repo/node_modules/core-js/modules/es.array.reduce.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/274 modules 34 active /opt/build/repo/node_modules/core-js/modules/es.array.slice.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/275 modules 35 active /opt/build/repo/node_modules/core-js/modules/es.string.match.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/276 modules 36 active /opt/build/repo/node_modules/core-js/modules/es.object.values.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/277 modules 37 active /opt/build/repo/node_modules/core-js/modules/web.dom-collections.for-each.js
2:08:38 PM: <s> [webpack.Progress] 40% building 240/278 modules 38 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 241/278 modules 37 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 242/278 modules 36 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 243/278 modules 35 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 244/278 modules 34 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 245/278 modules 33 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 246/278 modules 32 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 247/278 modules 31 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 248/278 modules 30 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 249/278 modules 29 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 250/278 modules 28 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 251/278 modules 27 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 252/278 modules 26 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 253/278 modules 25 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 254/278 modules 24 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 255/278 modules 23 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 256/278 modules 22 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 257/278 modules 21 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 40% building 258/278 modules 20 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 41% building 259/278 modules 19 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 41% building 260/278 modules 18 active /opt/build/repo/node_modules/core-js/internals/to-absolute-index.js
2:08:38 PM: <s> [webpack.Progress] 41% building 260/279 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/StringHighlighter2.js
2:08:38 PM: <s> [webpack.Progress] 41% building 260/280 modules 20 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 41% building 261/280 modules 19 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 41% building 262/280 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 41% building 263/280 modules 17 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 41% building 264/280 modules 16 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 41% building 265/280 modules 15 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 41% building 266/280 modules 14 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 42% building 267/280 modules 13 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 42% building 268/280 modules 12 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 42% building 269/280 modules 11 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 42% building 270/280 modules 10 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 42% building 271/280 modules 9 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue
2:08:38 PM: <s> [webpack.Progress] 42% building 271/281 modules 10 active /opt/build/repo/node_modules/@sentry/browser/esm/backend.js
2:08:38 PM: <s> [webpack.Progress] 42% building 271/282 modules 11 active /opt/build/repo/node_modules/@sentry/browser/esm/helpers.js
2:08:38 PM: <s> [webpack.Progress] 42% building 271/283 modules 12 active /opt/build/repo/node_modules/css-loader/dist/runtime/api.js
2:08:38 PM: <s> [webpack.Progress] 42% building 271/284 modules 13 active /opt/build/repo/node_modules/lodash.debounce/index.js
2:08:38 PM: <s> [webpack.Progress] 42% building 272/284 modules 12 active /opt/build/repo/node_modules/lodash.debounce/index.js
2:08:38 PM: <s> [webpack.Progress] 42% building 272/285 modules 13 active /opt/build/repo/node_modules/core-js/modules/es.array.includes.js
2:08:38 PM: <s> [webpack.Progress] 42% building 272/286 modules 14 active /opt/build/repo/node_modules/core-js/modules/es.array.join.js
2:08:38 PM: <s> [webpack.Progress] 42% building 272/287 modules 15 active /opt/build/repo/node_modules/core-js/modules/es.string.includes.js
2:08:38 PM: <s> [webpack.Progress] 42% building 273/287 modules 14 active /opt/build/repo/node_modules/core-js/modules/es.string.includes.js
2:08:38 PM: <s> [webpack.Progress] 42% building 274/287 modules 13 active /opt/build/repo/node_modules/core-js/modules/es.string.includes.js
2:08:38 PM: <s> [webpack.Progress] 43% building 275/287 modules 12 active /opt/build/repo/node_modules/core-js/modules/es.string.includes.js
2:08:38 PM: <s> [webpack.Progress] 43% building 275/288 modules 13 active /opt/build/repo/node_modules/core-js/internals/regexp-flags.js
2:08:38 PM: <s> [webpack.Progress] 43% building 275/289 modules 14 active /opt/build/repo/node_modules/core-js/internals/regexp-sticky-helpers.js
2:08:38 PM: <s> [webpack.Progress] 43% building 275/290 modules 15 active /opt/build/repo/node_modules/core-js/internals/string-multibyte.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/290 modules 14 active /opt/build/repo/node_modules/core-js/internals/string-multibyte.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/291 modules 15 active /opt/build/repo/node_modules/@sentry/browser/esm/integrations/globalhandlers.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/292 modules 16 active /opt/build/repo/node_modules/@sentry/browser/esm/integrations/trycatch.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/293 modules 17 active /opt/build/repo/node_modules/@sentry/browser/esm/integrations/breadcrumbs.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/294 modules 18 active /opt/build/repo/node_modules/@sentry/browser/esm/integrations/linkederrors.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/295 modules 19 active /opt/build/repo/node_modules/@sentry/browser/esm/integrations/useragent.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/296 modules 20 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/base.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/297 modules 21 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/fetch.js
2:08:38 PM: <s> [webpack.Progress] 43% building 276/298 modules 22 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/xhr.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/298 modules 21 active /opt/build/repo/node_modules/@sentry/browser/esm/transports/xhr.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/299 modules 22 active /opt/build/repo/node_modules/@sentry/types/esm/index.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/300 modules 23 active /opt/build/repo/node_modules/@sentry/core/esm/api.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/301 modules 24 active /opt/build/repo/node_modules/@sentry/core/esm/baseclient.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/302 modules 25 active /opt/build/repo/node_modules/@sentry/core/esm/basebackend.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/303 modules 26 active /opt/build/repo/node_modules/@sentry/core/esm/sdk.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/304 modules 27 active /opt/build/repo/node_modules/@sentry/utils/esm/async.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/305 modules 28 active /opt/build/repo/node_modules/@sentry/utils/esm/error.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/306 modules 29 active /opt/build/repo/node_modules/@sentry/utils/esm/is.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/307 modules 30 active /opt/build/repo/node_modules/@sentry/utils/esm/logger.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/308 modules 31 active /opt/build/repo/node_modules/@sentry/utils/esm/memo.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/309 modules 32 active /opt/build/repo/node_modules/@sentry/utils/esm/misc.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/310 modules 33 active /opt/build/repo/node_modules/@sentry/utils/esm/object.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/311 modules 34 active /opt/build/repo/node_modules/@sentry/utils/esm/path.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/312 modules 35 active /opt/build/repo/node_modules/@sentry/utils/esm/promisebuffer.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/313 modules 36 active /opt/build/repo/node_modules/@sentry/utils/esm/string.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/314 modules 37 active /opt/build/repo/node_modules/@sentry/utils/esm/syncpromise.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/315 modules 38 active /opt/build/repo/node_modules/@sentry/utils/esm/instrument.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/316 modules 39 active /opt/build/repo/node_modules/@sentry/utils/esm/supports.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/317 modules 40 active /opt/build/repo/node_modules/@sentry/utils/esm/dsn.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/318 modules 41 active /opt/build/repo/node_modules/core-js/internals/array-for-each.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/319 modules 42 active /opt/build/repo/node_modules/core-js/internals/array-iteration.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/320 modules 43 active /opt/build/repo/node_modules/core-js/internals/array-method-uses-to-length.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/321 modules 44 active /opt/build/repo/node_modules/core-js/internals/array-reduce.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/322 modules 45 active /opt/build/repo/node_modules/core-js/internals/array-method-is-strict.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/323 modules 46 active /opt/build/repo/node_modules/core-js/internals/object-to-array.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/324 modules 47 active /opt/build/repo/node_modules/core-js/internals/dom-iterables.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/325 modules 48 active /opt/build/repo/node_modules/core-js/modules/es.array.filter.js
2:08:38 PM: <s> [webpack.Progress] 43% building 277/326 modules 49 active /opt/build/repo/node_modules/core-js/modules/es.array.index-of.js
2:08:38 PM: <s> [webpack.Progress] 43% building 278/326 modules 48 active /opt/build/repo/node_modules/core-js/modules/es.array.index-of.js
2:08:38 PM: <s> [webpack.Progress] 43% building 279/326 modules 47 active /opt/build/repo/node_modules/core-js/modules/es.array.index-of.js
2:08:38 PM: <s> [webpack.Progress] 43% building 280/326 modules 46 active /opt/build/repo/node_modules/core-js/modules/es.array.index-of.js
2:08:38 PM: <s> [webpack.Progress] 43% building 281/326 modules 45 active /opt/build/repo/node_modules/core-js/modules/es.array.index-of.js
2:08:38 PM: <s> [webpack.Progress] 43% building 282/326 modules 44 active /opt/build/repo/node_modules/core-js/modules/es.array.index-of.js
2:08:38 PM: <s> [webpack.Progress] 43% building 282/327 modules 45 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue?vue&type=template&id=535cfb94&
2:08:38 PM: <s> [webpack.Progress] 43% building 283/327 modules 44 active /opt/build/repo/node_modules/core-js/modules/es.array.index-of.js
2:08:38 PM: <s> [webpack.Progress] 43% building 283/328 modules 45 active /opt/build/repo/node_modules/vue-loader/lib/loaders/pitcher.js??ref--4!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue?vue&type=script&lang=js&
2:08:38 PM: <s> [webpack.Progress] 44% building 284/328 modules 44 active /opt/build/repo/node_modules/core-js/modules/es.array.index-of.js
2:08:38 PM: <s> [webpack.Progress] 44% building 284/329 modules 45 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue?vue&type=script&lang=js&
2:08:38 PM: <s> [webpack.Progress] 44% building 284/330 modules 46 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"7ec0cd1a-vue-loader-template"}!/opt/build/repo/node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!/opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--0-0!/opt/build/repo/node_modules/vue-loader/lib/index.js??vue-loader-options!/opt/build/repo/src/components/SuggestionRow.vue?vue&type=template&id=535cfb94&
2:08:38 PM: <s> [webpack.Progress] 44% building 284/331 modules 47 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:38 PM: <s> [webpack.Progress] 44% building 285/331 modules 46 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:38 PM: <s> [webpack.Progress] 44% building 286/331 modules 45 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:38 PM: <s> [webpack.Progress] 44% building 287/331 modules 44 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:38 PM: <s> [webpack.Progress] 44% building 288/331 modules 43 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:38 PM: <s> [webpack.Progress] 44% building 289/331 modules 42 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:38 PM: <s> [webpack.Progress] 44% building 290/331 modules 41 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:38 PM: <s> [webpack.Progress] 44% building 291/331 modules 40 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:38 PM: <s> [webpack.Progress] 45% building 292/331 modules 39 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 45% building 293/331 modules 38 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 45% building 294/331 modules 37 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 45% building 295/331 modules 36 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 45% building 296/331 modules 35 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 45% building 297/331 modules 34 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 45% building 298/331 modules 33 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 45% building 299/331 modules 32 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 300/331 modules 31 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 301/331 modules 30 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 302/331 modules 29 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 303/331 modules 28 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 304/331 modules 27 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 305/331 modules 26 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 306/331 modules 25 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 307/331 modules 24 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 46% building 308/331 modules 23 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 47% building 309/331 modules 22 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 47% building 310/331 modules 21 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 47% building 311/331 modules 20 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 47% building 312/331 modules 19 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 47% building 313/331 modules 18 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 47% building 314/331 modules 17 active /opt/build/repo/node_modules/@sentry/core/esm/transports/noop.js
2:08:39 PM: <s> [webpack.Progress] 47% building 314/332 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/defineProperty.js
2:08:39 PM: <s> [webpack.Progress] 47% building 314/333 modules 19 active /opt/build/repo/node_modules/core-js/modules/es.symbol.js
2:08:39 PM: <s> [webpack.Progress] 47% building 314/334 modules 20 active /opt/build/repo/node_modules/core-js/modules/es.object.get-own-property-descriptor.js
2:08:39 PM: <s> [webpack.Progress] 47% building 314/335 modules 21 active /opt/build/repo/node_modules/core-js/modules/es.object.get-own-property-descriptors.js
2:08:39 PM: <s> [webpack.Progress] 47% building 314/336 modules 22 active /opt/build/repo/node_modules/core-js/modules/es.object.keys.js
2:08:39 PM: <s> [webpack.Progress] 47% building 315/336 modules 21 active /opt/build/repo/node_modules/core-js/modules/es.object.keys.js
2:08:39 PM: <s> [webpack.Progress] 47% building 316/336 modules 20 active /opt/build/repo/node_modules/core-js/modules/es.object.keys.js
2:08:39 PM: <s> [webpack.Progress] 48% building 317/336 modules 19 active /opt/build/repo/node_modules/core-js/modules/es.object.keys.js
2:08:39 PM: <s> [webpack.Progress] 48% building 318/336 modules 18 active /opt/build/repo/node_modules/core-js/modules/es.object.keys.js
2:08:39 PM: <s> [webpack.Progress] 48% building 319/336 modules 17 active /opt/build/repo/node_modules/core-js/modules/es.object.keys.js
2:08:39 PM: <s> [webpack.Progress] 48% building 320/336 modules 16 active /opt/build/repo/node_modules/core-js/modules/es.object.keys.js
2:08:39 PM: <s> [webpack.Progress] 48% building 321/336 modules 15 active /opt/build/repo/node_modules/core-js/modules/es.object.keys.js
2:08:39 PM: <s> [webpack.Progress] 48% building 321/337 modules 16 active /opt/build/repo/node_modules/lunr/lunr.js
2:08:39 PM: <s> [webpack.Progress] 48% building 322/337 modules 15 active /opt/build/repo/node_modules/lunr/lunr.js
2:08:39 PM: <s> [webpack.Progress] 48% building 323/337 modules 14 active /opt/build/repo/node_modules/lunr/lunr.js
2:08:39 PM: <s> [webpack.Progress] 48% building 323/338 modules 15 active /opt/build/repo/node_modules/@sentry/browser/esm/eventbuilder.js
2:08:39 PM: <s> [webpack.Progress] 48% building 324/338 modules 14 active /opt/build/repo/node_modules/@sentry/browser/esm/eventbuilder.js
2:08:39 PM: <s> [webpack.Progress] 48% building 324/339 modules 15 active /opt/build/repo/node_modules/webpack/buildin/harmony-module.js
2:08:39 PM: <s> [webpack.Progress] 48% building 324/340 modules 16 active /opt/build/repo/node_modules/core-js/internals/not-a-regexp.js
2:08:39 PM: <s> [webpack.Progress] 48% building 324/341 modules 17 active /opt/build/repo/node_modules/core-js/internals/correct-is-regexp-logic.js
2:08:39 PM: <s> [webpack.Progress] 48% building 324/342 modules 18 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 325/342 modules 17 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 326/342 modules 16 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 327/342 modules 15 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 328/342 modules 14 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 329/342 modules 13 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 330/342 modules 12 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 331/342 modules 11 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/342 modules 10 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/slicedToArray.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/343 modules 11 active /opt/build/repo/node_modules/@sentry/browser/esm/parsers.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/344 modules 12 active /opt/build/repo/node_modules/@sentry/browser/esm/tracekit.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/345 modules 13 active /opt/build/repo/node_modules/@sentry/types/esm/loglevel.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/346 modules 14 active /opt/build/repo/node_modules/@sentry/types/esm/severity.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/347 modules 15 active /opt/build/repo/node_modules/@sentry/types/esm/span.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/348 modules 16 active /opt/build/repo/node_modules/@sentry/types/esm/status.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/349 modules 17 active /opt/build/repo/node_modules/@sentry/core/esm/integration.js
2:08:39 PM: <s> [webpack.Progress] 49% building 332/350 modules 18 active /opt/build/repo/node_modules/@sentry/utils/esm/polyfill.js
2:08:39 PM: <s> [webpack.Progress] 49% building 333/350 modules 17 active /opt/build/repo/node_modules/@sentry/utils/esm/polyfill.js
2:08:39 PM: <s> [webpack.Progress] 50% building 334/350 modules 16 active /opt/build/repo/node_modules/@sentry/utils/esm/polyfill.js
2:08:39 PM: <s> [webpack.Progress] 50% building 335/350 modules 15 active /opt/build/repo/node_modules/@sentry/utils/esm/polyfill.js
2:08:39 PM: <s> [webpack.Progress] 50% building 335/351 modules 16 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/Pipe.js
2:08:39 PM: <s> [webpack.Progress] 50% building 336/351 modules 15 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/Pipe.js
2:08:39 PM: <s> [webpack.Progress] 50% building 337/351 modules 14 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/Pipe.js
2:08:39 PM: <s> [webpack.Progress] 50% building 338/351 modules 13 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/Pipe.js
2:08:39 PM: <s> [webpack.Progress] 50% building 339/351 modules 12 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/Pipe.js
2:08:39 PM: <s> [webpack.Progress] 50% building 339/352 modules 13 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:39 PM: <s> [webpack.Progress] 50% building 340/352 modules 12 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:39 PM: <s> [webpack.Progress] 50% building 341/352 modules 11 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:39 PM: <s> [webpack.Progress] 51% building 342/352 modules 10 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:40 PM: <s> [webpack.Progress] 51% building 343/352 modules 9 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:40 PM: <s> [webpack.Progress] 51% building 344/352 modules 8 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:40 PM: <s> [webpack.Progress] 51% building 345/352 modules 7 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:40 PM: <s> [webpack.Progress] 51% building 346/352 modules 6 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:40 PM: <s> [webpack.Progress] 51% building 347/352 modules 5 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:40 PM: <s> [webpack.Progress] 51% building 348/352 modules 4 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:40 PM: <s> [webpack.Progress] 51% building 349/352 modules 3 active /opt/build/repo/node_modules/node-libs-browser/mock/process.js
2:08:40 PM: <s> [webpack.Progress] 51% building 349/353 modules 4 active /opt/build/repo/node_modules/core-js/internals/object-get-own-property-names-external.js
2:08:40 PM: <s> [webpack.Progress] 51% building 349/354 modules 5 active /opt/build/repo/node_modules/core-js/internals/well-known-symbol-wrapped.js
2:08:40 PM: <s> [webpack.Progress] 51% building 349/355 modules 6 active /opt/build/repo/node_modules/core-js/internals/define-well-known-symbol.js
2:08:40 PM: <s> [webpack.Progress] 51% building 349/356 modules 7 active /opt/build/repo/node_modules/@sentry/core/esm/integrations/index.js
2:08:40 PM: <s> [webpack.Progress] 51% building 349/357 modules 8 active /opt/build/repo/node_modules/core-js/modules/es.number.constructor.js
2:08:40 PM: <s> [webpack.Progress] 51% building 349/358 modules 9 active /opt/build/repo/node_modules/core-js/modules/es.string.trim.js
2:08:40 PM: <s> [webpack.Progress] 52% building 350/358 modules 8 active /opt/build/repo/node_modules/core-js/modules/es.string.trim.js
2:08:40 PM: <s> [webpack.Progress] 52% building 350/359 modules 9 active /opt/build/repo/node_modules/@sentry/minimal/esm/index.js
2:08:40 PM: <s> [webpack.Progress] 52% building 351/359 modules 8 active /opt/build/repo/node_modules/@sentry/minimal/esm/index.js
2:08:40 PM: <s> [webpack.Progress] 52% building 351/360 modules 9 active /opt/build/repo/node_modules/@sentry/hub/esm/index.js
2:08:40 PM: <s> [webpack.Progress] 52% building 351/361 modules 10 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 52% building 352/361 modules 9 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 52% building 353/361 modules 8 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 52% building 354/361 modules 7 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 52% building 355/361 modules 6 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 52% building 356/361 modules 5 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 52% building 357/361 modules 4 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 52% building 358/361 modules 3 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 53% building 359/361 modules 2 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 53% building 360/361 modules 1 active /opt/build/repo/node_modules/core-js/internals/is-regexp.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/361 modules 0 active
2:08:40 PM: <s> [webpack.Progress] 53% building 361/362 modules 1 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/363 modules 2 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/364 modules 3 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/365 modules 4 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/366 modules 5 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/src/util/Reducers.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/367 modules 6 active /opt/build/repo/node_modules/path-browserify/index.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/368 modules 7 active /opt/build/repo/node_modules/@sentry/core/esm/integrations/functiontostring.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/369 modules 8 active /opt/build/repo/node_modules/@sentry/core/esm/integrations/inboundfilters.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/370 modules 9 active /opt/build/repo/node_modules/core-js/internals/inherit-if-required.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/371 modules 10 active /opt/build/repo/node_modules/core-js/internals/string-trim.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/372 modules 11 active /opt/build/repo/node_modules/core-js/internals/string-trim-forced.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/373 modules 12 active /opt/build/repo/node_modules/core-js/modules/es.array.from.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/374 modules 13 active /opt/build/repo/node_modules/core-js/modules/es.object.entries.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/375 modules 14 active /opt/build/repo/node_modules/core-js/modules/es.object.from-entries.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/376 modules 15 active /opt/build/repo/node_modules/core-js/modules/es.set.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/377 modules 16 active /opt/build/repo/node_modules/core-js/modules/es.string.iterator.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/378 modules 17 active /opt/build/repo/node_modules/core-js/modules/web.dom-collections.iterator.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/379 modules 18 active /opt/build/repo/node_modules/@sentry/hub/esm/scope.js
2:08:40 PM: <s> [webpack.Progress] 53% building 361/380 modules 19 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 53% building 362/380 modules 18 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 53% building 363/380 modules 17 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 53% building 364/380 modules 16 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 53% building 365/380 modules 15 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 53% building 366/380 modules 14 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 367/380 modules 13 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 368/380 modules 12 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 369/380 modules 11 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 370/380 modules 10 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 371/380 modules 9 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 372/380 modules 8 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 373/380 modules 7 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 374/380 modules 6 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 54% building 375/380 modules 5 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 55% building 376/380 modules 4 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 55% building 377/380 modules 3 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 55% building 378/380 modules 2 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 55% building 379/380 modules 1 active /opt/build/repo/node_modules/@sentry/hub/esm/hub.js
2:08:40 PM: <s> [webpack.Progress] 55% building 380/380 modules 0 active
2:08:40 PM: <s> [webpack.Progress] 55% building 380/381 modules 1 active /opt/build/repo/node_modules/core-js/internals/whitespaces.js
2:08:40 PM: <s> [webpack.Progress] 55% building 380/382 modules 2 active /opt/build/repo/node_modules/core-js/modules/es.symbol.iterator.js
2:08:40 PM: <s> [webpack.Progress] 55% building 380/383 modules 3 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
2:08:40 PM: <s> [webpack.Progress] 55% building 380/384 modules 4 active /opt/build/repo/node_modules/core-js/modules/es.regexp.to-string.js
2:08:40 PM: <s> [webpack.Progress] 55% building 380/385 modules 5 active /opt/build/repo/node_modules/core-js/modules/es.symbol.description.js
2:08:40 PM: <s> [webpack.Progress] 55% building 380/386 modules 6 active /opt/build/repo/node_modules/core-js/internals/array-from.js
2:08:40 PM: <s> [webpack.Progress] 55% building 380/387 modules 7 active /opt/build/repo/node_modules/core-js/internals/collection.js
2:08:40 PM: <s> [webpack.Progress] 55% building 380/388 modules 8 active /opt/build/repo/node_modules/core-js/internals/collection-strong.js
2:08:40 PM: <s> [webpack.Progress] 55% building 381/388 modules 7 active /opt/build/repo/node_modules/core-js/internals/collection-strong.js
2:08:40 PM: <s> [webpack.Progress] 55% building 382/388 modules 6 active /opt/build/repo/node_modules/core-js/internals/collection-strong.js
2:08:40 PM: <s> [webpack.Progress] 55% building 383/388 modules 5 active /opt/build/repo/node_modules/core-js/internals/collection-strong.js
2:08:40 PM: <s> [webpack.Progress] 56% building 384/388 modules 4 active /opt/build/repo/node_modules/core-js/internals/collection-strong.js
2:08:40 PM: <s> [webpack.Progress] 56% building 385/388 modules 3 active /opt/build/repo/node_modules/core-js/internals/collection-strong.js
2:08:40 PM: <s> [webpack.Progress] 56% building 386/388 modules 2 active /opt/build/repo/node_modules/core-js/internals/collection-strong.js
2:08:40 PM: <s> [webpack.Progress] 56% building 387/388 modules 1 active /opt/build/repo/node_modules/cache-loader/dist/cjs.js??ref--12-0!/opt/build/repo/node_modules/babel-loader/lib/index.js!/opt/build/repo/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js
2:08:40 PM: <s> [webpack.Progress] 56% building 388/388 modules 0 active
2:08:40 PM: <s> [webpack.Progress] 56% building 388/389 modules 1 active /opt/build/repo/node_modules/core-js/internals/internal-metadata.js
2:08:40 PM: <s> [webpack.Progress] 56% building 389/389 modules 0 active
2:08:40 PM: <s> [webpack.Progress] 56% building 389/390 modules 1 active /opt/build/repo/node_modules/core-js/internals/freezing.js
2:08:40 PM: <s> [webpack.Progress] 56% building 390/390 modules 0 active
2:08:40 PM: <s> [webpack.Progress] 70% building 390/390 modules 0 active
2:08:40 PM: <s> [webpack.Progress] 70% finish module graph
2:08:40 PM: <s> [webpack.Progress] 70% finish module graph FlagDependencyExportsPlugin
2:08:40 PM: <s> [webpack.Progress] 70% sealing
2:08:40 PM: <s> [webpack.Progress] 70% sealing WarnCaseSensitiveModulesPlugin
2:08:40 PM: <s> [webpack.Progress] 72% basic dependencies optimization
2:08:40 PM: <s> [webpack.Progress] 72% dependencies optimization
2:08:40 PM: <s> [webpack.Progress] 73% advanced dependencies optimization
2:08:40 PM: <s> [webpack.Progress] 73% after dependencies optimization
2:08:40 PM: <s> [webpack.Progress] 71% chunk graph
2:08:40 PM: <s> [webpack.Progress] 71% after chunk graph
2:08:40 PM: <s> [webpack.Progress] 71% after chunk graph WebAssemblyModulesPlugin
2:08:40 PM: <s> [webpack.Progress] 74% optimizing
2:08:40 PM: <s> [webpack.Progress] 74% basic module optimization
2:08:40 PM: <s> [webpack.Progress] 75% module optimization
2:08:40 PM: <s> [webpack.Progress] 75% advanced module optimization
2:08:40 PM: <s> [webpack.Progress] 76% after module optimization
2:08:40 PM: <s> [webpack.Progress] 76% basic chunk optimization
2:08:40 PM: <s> [webpack.Progress] 76% basic chunk optimization EnsureChunkConditionsPlugin
2:08:40 PM: <s> [webpack.Progress] 76% basic chunk optimization RemoveEmptyChunksPlugin
2:08:40 PM: <s> [webpack.Progress] 76% basic chunk optimization MergeDuplicateChunksPlugin
2:08:40 PM: <s> [webpack.Progress] 77% chunk optimization
2:08:40 PM: <s> [webpack.Progress] 77% advanced chunk optimization
2:08:40 PM: <s> [webpack.Progress] 77% advanced chunk optimization SplitChunksPlugin
2:08:40 PM: <s> [webpack.Progress] 77% advanced chunk optimization RemoveEmptyChunksPlugin
2:08:40 PM: <s> [webpack.Progress] 77% after chunk optimization
2:08:40 PM: <s> [webpack.Progress] 78% module and chunk tree optimization
2:08:40 PM: <s> [webpack.Progress] 78% after module and chunk tree optimization
2:08:40 PM: <s> [webpack.Progress] 79% basic chunk modules optimization
2:08:40 PM: <s> [webpack.Progress] 80% chunk modules optimization
2:08:40 PM: <s> [webpack.Progress] 80% advanced chunk modules optimization
2:08:40 PM: <s> [webpack.Progress] 81% after chunk modules optimization
2:08:40 PM: <s> [webpack.Progress] 81% module reviving
2:08:40 PM: <s> [webpack.Progress] 81% module reviving RecordIdsPlugin
2:08:40 PM: <s> [webpack.Progress] 82% module order optimization
2:08:40 PM: <s> [webpack.Progress] 82% advanced module order optimization
2:08:40 PM: <s> [webpack.Progress] 83% before module ids
2:08:40 PM: <s> [webpack.Progress] 83% before module ids NamedModulesPlugin
2:08:40 PM: <s> [webpack.Progress] 83% module ids
2:08:40 PM: <s> [webpack.Progress] 84% module id optimization
2:08:40 PM: <s> [webpack.Progress] 84% module id optimization
2:08:40 PM: <s> [webpack.Progress] 85% chunk reviving
2:08:40 PM: <s> [webpack.Progress] 85% chunk reviving RecordIdsPlugin
2:08:40 PM: <s> [webpack.Progress] 85% chunk order optimization
2:08:40 PM: <s> [webpack.Progress] 85% chunk order optimization OccurrenceOrderChunkIdsPlugin
2:08:40 PM: <s> [webpack.Progress] 86% before chunk ids
2:08:40 PM: <s> [webpack.Progress] 86% before chunk ids NamedChunksPlugin
2:08:40 PM: <s> [webpack.Progress] 86% chunk id optimization
2:08:40 PM: <s> [webpack.Progress] 87% after chunk id optimization
2:08:40 PM: <s> [webpack.Progress] 87% record modules
2:08:40 PM: <s> [webpack.Progress] 87% record modules RecordIdsPlugin
2:08:40 PM: <s> [webpack.Progress] 87% record chunks
2:08:40 PM: <s> [webpack.Progress] 87% record chunks RecordIdsPlugin
2:08:40 PM: <s> [webpack.Progress] 88% hashing
2:08:40 PM: <s> [webpack.Progress] 88% after hashing
2:08:40 PM: <s> [webpack.Progress] 88% after hashing HotModuleReplacementPlugin
2:08:40 PM: <s> [webpack.Progress] 89% record hash
2:08:40 PM: <s> [webpack.Progress] 89% module assets processing
2:08:40 PM: <s> [webpack.Progress] 90% chunk assets processing
2:08:40 PM: <s> [webpack.Progress] 90% additional chunk assets processing
2:08:40 PM: <s> [webpack.Progress] 90% additional chunk assets processing HotModuleReplacementPlugin
2:08:40 PM: <s> [webpack.Progress] 91% recording
2:08:40 PM: <s> [webpack.Progress] 91% recording HotModuleReplacementPlugin
2:08:40 PM: <s> [webpack.Progress] 92% additional asset processing
2:08:40 PM: <s> [webpack.Progress] 92% chunk asset optimization
2:08:40 PM: <s> [webpack.Progress] 93% after chunk asset optimization
2:08:40 PM: <s> [webpack.Progress] 93% asset optimization
2:08:40 PM: <s> [webpack.Progress] 94% after asset optimization
2:08:40 PM: <s> [webpack.Progress] 94% after seal
2:08:40 PM: <s> [webpack.Progress] 95% emitting
2:08:40 PM: <s> [webpack.Progress] 95% emitting HtmlWebpackPlugin
2:08:40 PM: <s> [webpack.Progress] 95% emitting vue-cli:pwa-html-plugin
2:08:40 PM: <s> [webpack.Progress] 95% emitting CopyPlugin
2:08:40 PM: <s> [webpack.Progress] 98% after emitting
2:08:40 PM: <s> [webpack.Progress] 98% after emitting CopyPlugin
2:08:40 PM:  DONE  Compiled successfully in 9347ms12:08:40 PM
2:08:40 PM: Webpack Bundle Analyzer is started at http://127.0.0.1:8888
2:08:40 PM: Use Ctrl+C to close it
2:08:40 PM: <s> [webpack.Progress] 100%
2:08:40 PM:   App running at:
2:08:40 PM:   - Local:   http://localhost:8080/
2:08:40 PM:   It seems you are running Vue CLI inside a container.
2:08:40 PM:   Access the dev server via http://localhost:<your container's external mapped port>/
2:08:40 PM:   Note that the development build is not optimized.
2:08:40 PM:   To create a production build, run npm run build.
2:08:43 PM: It looks like this is your first time using Cypress: 4.7.0
2:08:43 PM: 
2:08:43 PM: [12:08:43]  Verifying Cypress can run /opt/build/repo/node_modules/CypressBinary/4.7.0/Cypress [started]
2:08:48 PM: [12:08:48]  Verifying Cypress can run /opt/build/repo/node_modules/CypressBinary/4.7.0/Cypress [completed]
2:08:48 PM: 
2:08:48 PM: Opening Cypress...
2:08:53 PM: ================================================================================
2:08:53 PM:   (Run Starting)
2:08:53 PM:   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:08:53 PM:   โ”‚ Cypress:    4.7.0                                                                              โ”‚
2:08:53 PM:   โ”‚ Browser:    Electron 80 (headless)                                                             โ”‚
2:08:53 PM:   โ”‚ Specs:      1 found (basic_search.js)                                                          โ”‚
2:08:53 PM:   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:08:53 PM: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
2:08:53 PM:   Running:  basic_search.js                                                                 (1 of 1)
2:08:56 PM: 
2:08:56 PM:   Home
2:08:56 PM:     basic
2:08:59 PM:       โœ“ Search from home (3251ms)
2:09:01 PM:       โœ“ Search from results page (1837ms)
2:09:01 PM:       clear button
2:09:03 PM:         โœ“ should clear the text field (1427ms)
2:09:03 PM:     defect details page
2:09:05 PM:       โœ“ Search (1929ms)
2:09:08 PM:       โœ“ Cancel search (3113ms)
2:09:08 PM:     deeplinking
2:09:10 PM:       โœ“ Deeplink to search query (2010ms)
2:09:12 PM:       โœ“ Deeplink to a valid result (2261ms)
2:09:12 PM:   7 passing (16s)
2:09:13 PM:   (Results)
2:09:13 PM:   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:09:13 PM:   โ”‚ Tests:        7                                                                                โ”‚
2:09:13 PM:   โ”‚ Passing:      7                                                                                โ”‚
2:09:13 PM:   โ”‚ Failing:      0                                                                                โ”‚
2:09:13 PM:   โ”‚ Pending:      0                                                                                โ”‚
2:09:13 PM:   โ”‚ Skipped:      0                                                                                โ”‚
2:09:13 PM:   โ”‚ Screenshots:  0                                                                                โ”‚
2:09:13 PM:   โ”‚ Video:        true                                                                             โ”‚
2:09:13 PM:   โ”‚ Duration:     16 seconds                                                                       โ”‚
2:09:13 PM:   โ”‚ Spec Ran:     basic_search.js                                                                  โ”‚
2:09:13 PM:   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:09:13 PM:   (Video)
2:09:13 PM:   -  Started processing:  Compressing to 32 CRF
2:09:20 PM:   -  Finished processing: tests/e2e/videos/basic_search.js.mp4                           (6 seconds)
2:09:20 PM: ================================================================================
2:09:20 PM:   (Run Finished)
2:09:20 PM:        Spec                                              Tests  Passing  Failing  Pending  Skipped  
2:09:20 PM:   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:09:20 PM:   โ”‚ โœ”  basic_search.js                          00:16        7        7        -        -        - โ”‚
2:09:20 PM:   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:09:20 PM:     โœ”  All specs passed!                        00:16        7        7        -        -        -  
2:09:20 PM: stopping server process opened with: npm run serve
2:09:20 PM: โ€‹
2:09:20 PM: (netlify-plugin-cypress onPreBuild completed in 51.8s)
2:09:20 PM: โ€‹
2:09:20 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:09:20 PM: โ”‚ 2. build.command from netlify.toml โ”‚
2:09:20 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:09:20 PM: โ€‹
2:09:20 PM: $ npm run build
2:09:20 PM: > [email protected] build /opt/build/repo
2:09:20 PM: > vue-cli-service build && node swEnvBuild.js
2:09:22 PM: -  Building for production...
2:09:44 PM:  WARNING  Compiled with 1 warnings12:09:44 PM
2:09:44 PM:  warning 
2:09:44 PM: entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
2:09:44 PM: Entrypoints:
2:09:44 PM:   app (257 KiB)
2:09:44 PM:       js/chunk-vendors.16065901.js
2:09:44 PM:       css/app.8367db1e.css
2:09:44 PM:       js/app.ca0d2c83.js
2:09:45 PM: Webpack Bundle Analyzer saved report to /opt/build/repo/dist/report.html
2:09:45 PM:   File                                      Size             Gzipped
2:09:45 PM:   dist/js/chunk-vendors.16065901.js         206.00 KiB       69.51 KiB
2:09:45 PM:   dist/js/sentry.d5408bd6.js                80.38 KiB        23.14 KiB
2:09:45 PM:   dist/js/app.ca0d2c83.js                   39.42 KiB        11.08 KiB
2:09:45 PM:   dist/precache-manifest.a29eaa21a773025    3.47 KiB         1.11 KiB
2:09:45 PM:   d1df9a054037f3d6a.js
2:09:45 PM:   dist/service-worker.js                    1.55 KiB         0.66 KiB
2:09:45 PM:   dist/css/app.8367db1e.css                 11.49 KiB        3.36 KiB
2:09:45 PM:   Images and other types of assets omitted.
2:09:45 PM:  DONE  Build complete. The dist directory is ready to be deployed.
2:09:45 PM:  INFO  Check out deployment instructions at https://cli.vuejs.org/guide/deployment.html
2:09:45 PM: Built env var file to './dist/swenv.js'
2:09:46 PM: โ€‹
2:09:46 PM: (build.command completed in 25.5s)
2:09:46 PM: โ€‹
2:09:46 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:09:46 PM: โ”‚ 3. onPostBuild command from @netlify/plugin-functions-core โ”‚
2:09:46 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:09:46 PM: โ€‹
2:09:46 PM: Packaging functions from functions
2:09:49 PM: Functions packaged in /tmp/zisi-5ed4ef7171a5570007dd6479
2:09:49 PM:  - appendToSheet.zip
2:09:49 PM:  - regenerateIndex.zip
2:09:49 PM:  - sendEmail.zip
2:09:49 PM: โ€‹
2:09:49 PM: (@netlify/plugin-functions-core onPostBuild completed in 3.7s)
2:09:49 PM: โ€‹
2:09:49 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:09:49 PM: โ”‚ 4. onPostBuild command from netlify-plugin-cypress โ”‚
2:09:49 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:09:49 PM: โ€‹
2:09:49 PM: โ€‹
2:09:49 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
2:09:49 PM: โ”‚ Plugin "netlify-plugin-cypress" internal error โ”‚
2:09:49 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
2:09:49 PM: โ€‹
2:09:49 PM:   Error message
2:09:49 PM:   UncaughtException: an exception was thrown but not caught: Error: listen EADDRINUSE: address already in use :::8080
2:09:49 PM: โ€‹
2:09:49 PM:   Plugin details
2:09:49 PM:   Package:        netlify-plugin-cypress
2:09:49 PM:   Version:        1.3.11
2:09:49 PM:   Repository:     git+https://github.com/cypress-io/netlify-plugin-cypress.git
2:09:49 PM:   npm link:       https://www.npmjs.com/package/netlify-plugin-cypress
2:09:49 PM:   Report issues:  https://github.com/cypress-io/netlify-plugin-cypress/issues
2:09:49 PM: โ€‹
2:09:49 PM:   Error location
2:09:49 PM:   In "onPostBuild" event in "netlify-plugin-cypress" from netlify.toml
2:09:49 PM:       at Server.setupListenHandle [as _listen2] (net.js:1313:16)
2:09:49 PM:       at listenInCluster (net.js:1361:12)
2:09:49 PM:       at Server.listen (net.js:1449:7)
2:09:49 PM:       at serveFolder (/opt/buildhome/.netlify-build-plugins/node_modules/netlify-plugin-cypress/src/index.js:12:36)
2:09:49 PM:       at postBuild (/opt/buildhome/.netlify-build-plugins/node_modules/netlify-plugin-cypress/src/index.js:139:18)
2:09:49 PM:       at onPostBuild (/opt/buildhome/.netlify-build-plugins/node_modules/netlify-plugin-cypress/src/index.js:226:13)
2:09:49 PM:       at Object.run (/opt/buildhome/.netlify-build-nvm/versions/node/v12.16.3/lib/node_modules/@netlify/build/src/plugins/child/run.js:18:9)
2:09:49 PM:       at handleEvent (/opt/buildhome/.netlify-build-nvm/versions/node/v12.16.3/lib/node_modules/@netlify/build/src/plugins/child/main.js:38:61)
2:09:49 PM:       at /opt/buildhome/.netlify-build-nvm/versions/node/v12.16.3/lib/node_modules/@netlify/build/src/plugins/child/main.js:32:61
2:09:49 PM:       at process.<anonymous> (/opt/buildhome/.netlify-build-nvm/versions/node/v12.16.3/lib/node_modules/@netlify/build/src/plugins/ipc.js:97:15)
2:09:49 PM:       at process.emit (events.js:310:20)
2:09:49 PM:       at emit (internal/child_process.js:876:12)
2:09:49 PM:       at processTicksAndRejections (internal/process/task_queues.js:85:21)
2:09:49 PM: โ€‹
2:09:49 PM:   Error properties
2:09:49 PM:   {
2:09:49 PM:     code: 'EADDRINUSE',
2:09:49 PM:     errno: 'EADDRINUSE',
2:09:49 PM:     syscall: 'listen',
2:09:49 PM:     address: '::',
2:09:49 PM:     port: 8080
2:09:49 PM:   }
2:09:49 PM: โ€‹
2:09:49 PM:   Resolved config
2:09:49 PM:   build:
2:09:49 PM:     command: npm run build
2:09:49 PM:     functions: /opt/build/repo/functions
2:09:49 PM:     publish: /opt/build/repo/dist
2:09:49 PM:   plugins:
2:09:49 PM:     - inputs:
2:09:49 PM:         record: true
2:09:49 PM:       origin: config
2:09:49 PM:       package: netlify-plugin-cypress
2:09:49 PM: Caching artifacts
2:09:49 PM: Started saving node modules
2:09:49 PM: Finished saving node modules
2:09:49 PM: Started saving build plugins
2:09:49 PM: Finished saving build plugins
2:09:49 PM: Started saving pip cache
2:09:50 PM: Finished saving pip cache
2:09:50 PM: Started saving emacs cask dependencies
2:09:50 PM: Finished saving emacs cask dependencies
2:09:50 PM: Started saving maven dependencies
2:09:50 PM: Finished saving maven dependencies
2:09:50 PM: Started saving boot dependencies
2:09:50 PM: Finished saving boot dependencies
2:09:50 PM: Started saving go dependencies
2:09:50 PM: Finished saving go dependencies
2:09:50 PM: 
2:09:50 PM: ** WARNING **
2:09:50 PM: There are some lingering processes even after the build process finished:
2:09:50 PM: USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
2:09:50 PM: buildbot    1372  0.3  0.1 736804 39568 ?        Sl   12:08   0:00 npm
2:09:50 PM: buildbot    1387  0.0  0.0   4516   708 ?        S    12:08   0:00 sh -c vue-cli-service serve
2:09:50 PM: buildbot    1388 23.1  0.6 1043020 210072 ?      Sl   12:08   0:18 node /opt/build/repo/node_modules/.bin/vue-cli-service serve
2:09:50 PM: Our builds do not kill your processes automatically, so please make sure
2:09:50 PM: that nothing is running after your build finishes, or it will be marked as
2:09:50 PM: failed since something is still running.
2:09:50 PM: 
2:09:50 PM: Error running command: Build script returned non-zero exit code: 1
2:09:50 PM: Failing build: Failed to build site
2:09:50 PM: Failed during stage 'building site': Build script returned non-zero exit code: 1
2:09:50 PM: Finished processing build request in 2m34.788274319s

Link to the repo
Private repository.

Add actual Netlify deploy

We do have CircleCI local tests using Netlify CLI BUT nothing replaces actual testing on pull requests.

Ability to control when the build plugin should be run e.g. only on deploy preview

Is your feature request related to a problem? Please describe.
At the moment the test suite will always run whenever a new deploy is made. This raises to problems:

  1. The test suite will run on the Pull Request AND when the code is merged (essentially running the same tests twice without changes)
  2. The build plugin has to be removed in case a hotfix has to be performed regardless of test status

Describe the solution you'd like
Ability to control when the build plugin will be run. I suppose this could work with the tags that netlify injects: production, deploy-preview or branch-deploy. Then it would be possible to specify the [plugins.inputs] to something like, only-run-on = "deploy-preview" (as an example). Maybe there is a better way to figure out what type of build it is, but I don't know that much about the build plugins.

Describe alternatives you've considered
I know it's a bit limited what Netlify provides to the build plugins, which makes certain solution impossible at the moment.

I'd like to contribute to this if you want, just want to discuss if this is something that would be wanted, and in that case, how it should work ๐Ÿ˜Š

Cypress dependency error

Versions

  • What is this plugin's version? 1.3.11
  • What is Cypress version? 4,7.0
  • What Netlify build image are you using? build-image 3.3.14
  • What is the Node version if you know it? 10.21.0
  • What is the NPM version if you know it? Yarn 1.17.0

Describe the bug
Some users are experiencing the following build error:

Cypress failed to start.

This is usually caused by a missing library or dependency.

The error below should indicate which dependency is missing.

https://on.cypress.io/required-dependencies

If you are using Docker, we provide containers with all required dependencies installed.

----------

[1551:0608/113857.112439:ERROR:bus.cc(393)] Failed to connect to the bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory
[1551:0608/113857.112962:ERROR:edid_parser.cc(102)] Too short EDID data: manufacturer id
[1580:0608/113857.159219:WARNING:discardable_shared_memory_manager.cc(199)] Less than 64MB of free space in temporary directory for shared memory files: 63
[1596:0608/113857.256502:ERROR:viz_main_impl.cc(161)] Exiting GPU process due to errors during initialization
[1580:0608/113858.232547:ERROR:edid_parser.cc(102)] Too short EDID data: manufacturer id
[1580:0608/113858.237719:ERROR:bus.cc(393)] Failed to connect to the bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory
Inconsistency detected by ld.so: dl-tls.c: 493: _dl_allocate_tls_init: Assertion `listp->slotinfo[cnt].gen <= GL(dl_tls_generation)' failed!
[1770:0608/113858.307990:ERROR:broker_posix.cc(43)] Invalid node channel message
[1770:0608/113913.323854:INFO:child_thread_impl.cc(831)] ChildThreadImpl::EnsureConnected()

----------

Platform: linux (Ubuntu Linux - 16.04)
Cypress Version: 4.7.0 
    /opt/build/repo/frontend/node_modules/cypress/lib/errors.js:373:15 
    /opt/build/repo/frontend/node_modules/bluebird/js/release/util.js:16:23 tryCatcher
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:547:31 Promise._settlePromiseFromHandler
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:604:18 Promise._settlePromise
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:649:10 Promise._settlePromise0
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:729:18 Promise._settlePromises
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:673:18 Promise._fulfill
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:466:57 Promise._resolveCallback
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:559:17 Promise._settlePromiseFromHandler
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:604:18 Promise._settlePromise
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:649:10 Promise._settlePromise0
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:729:18 Promise._settlePromises
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:673:18 Promise._fulfill
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:466:57 Promise._resolveCallback
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:559:17 Promise._settlePromiseFromHandler
    /opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:604:18 Promise._settlePromise

Logs and screenshots

1:37:37 PM: Build ready to start
1:37:39 PM: build-image version: 30f629161c0736b1a3ecd8b418e5eeffab5c0faf
1:37:39 PM: build-image tag: v3.3.14
1:37:39 PM: buildbot version: 960d989224ecbd0e01be03c5f7dffe3d8f543e02
1:37:39 PM: Fetching cached dependencies
1:37:39 PM: Starting to download cache of 341.0MB
1:37:42 PM: Finished downloading cache in 2.457979224s
1:37:42 PM: Starting to extract cache
1:38:00 PM: Finished extracting cache in 18.261837144s
1:38:01 PM: Finished fetching cache in 21.708018972s
1:38:01 PM: Starting to prepare the repo for build
1:38:01 PM: Preparing Git Reference refs/heads/master
1:38:03 PM: Different build dir detected, going to use the one specified in the Netlify configuration file: 'frontend' versus '' in the Netlify UI
1:38:03 PM: Starting build script
1:38:03 PM: Installing dependencies
1:38:04 PM: Started restoring cached node version
1:38:07 PM: Finished restoring cached node version
1:38:09 PM: v10.21.0 is already installed.
1:38:10 PM: Now using node v10.21.0 (npm v6.14.4)
1:38:10 PM: Started restoring cached build plugins
1:38:10 PM: Finished restoring cached build plugins
1:38:10 PM: Attempting ruby version 2.6.2, read from environment
1:38:12 PM: Using ruby version 2.6.2
1:38:12 PM: Using PHP version 5.6
1:38:12 PM: 5.2 is already installed.
1:38:12 PM: Using Swift version 5.2
1:38:12 PM: Started restoring cached node modules
1:38:12 PM: Finished restoring cached node modules
1:38:12 PM: Started restoring cached yarn cache
1:38:12 PM: Finished restoring cached yarn cache
1:38:13 PM: Installing NPM modules using Yarn version 1.17.0
1:38:14 PM: yarn install v1.17.0
1:38:14 PM: [1/4] Resolving packages...
1:38:15 PM: success Already up-to-date.
1:38:15 PM: Done in 1.23s.
1:38:15 PM: NPM modules installed using Yarn
1:38:15 PM: Started restoring cached go cache
1:38:15 PM: Finished restoring cached go cache
1:38:15 PM: go version go1.12 linux/amd64
1:38:15 PM: go version go1.12 linux/amd64
1:38:15 PM: Installing missing commands
1:38:15 PM: Verify run directory
1:38:17 PM: โ€‹
1:38:17 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
1:38:17 PM: โ”‚        Netlify Build        โ”‚
1:38:17 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
1:38:17 PM: โ€‹
1:38:17 PM: โฏ Version
1:38:17 PM:   @netlify/build 1.0.14
1:38:17 PM: โ€‹
1:38:17 PM: โฏ Flags
1:38:17 PM:   mode: buildbot
1:38:17 PM: โ€‹
1:38:17 PM: โฏ Current directory
1:38:17 PM:   /opt/build/repo/frontend
1:38:17 PM: โ€‹
1:38:17 PM: โฏ Config file
1:38:17 PM:   /opt/build/repo/netlify.toml
1:38:17 PM: โ€‹
1:38:17 PM: โฏ Context
1:38:17 PM:   production
1:38:17 PM: โ€‹
1:38:17 PM: โฏ Loading plugins
1:38:17 PM:    - [email protected] from netlify.toml
1:38:17 PM:    - [email protected] from netlify.toml and package.json
1:38:17 PM:    - [email protected] from netlify.toml
1:38:20 PM: โ€‹
1:38:20 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
1:38:20 PM: โ”‚ 1. onPreBuild command from netlify-plugin-gatsby-cache โ”‚
1:38:20 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
1:38:20 PM: โ€‹
1:38:20 PM: Found a Gatsby cache. Weโ€™re about to go FAST. โšก๏ธ
1:38:20 PM: โ€‹
1:38:20 PM: (netlify-plugin-gatsby-cache onPreBuild completed in 297ms)
1:38:20 PM: โ€‹
1:38:20 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
1:38:20 PM: โ”‚ 2. onPreBuild command from netlify-plugin-cypress โ”‚
1:38:20 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
1:38:20 PM: โ€‹
1:38:35 PM: โ€‹
1:38:35 PM: (netlify-plugin-cypress onPreBuild completed in 15s)
1:38:35 PM: โ€‹
1:38:35 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
1:38:35 PM: โ”‚ 3. build.command from netlify.toml โ”‚
1:38:35 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
1:38:35 PM: โ€‹
1:38:35 PM: $ npm run build
1:38:36 PM: > [email protected] build /opt/build/repo/frontend
1:38:36 PM: > GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages
1:38:40 PM: success open and validate gatsby-configs - 0.030s
1:38:41 PM: 
1:38:41 PM: success load plugins - 0.907s
1:38:41 PM: success onPreInit - 0.029s
1:38:41 PM: success initialize cache - 0.085s
1:38:41 PM: success copy gatsby files - 0.058s
1:38:41 PM: 
1:38:41 PM: warning [sanity] Using `watchMode` when not in develop mode might prevent your build from completing
1:38:41 PM: 
1:38:41 PM: info [sanity] Fetching remote GraphQL schema
1:38:41 PM: 
1:38:41 PM: info [sanity] Transforming to Gatsby-compatible GraphQL SDL
1:38:41 PM: 
1:38:41 PM: warning [sanity] Type `SanityAssetSourceData` has field with name `id`, which conflicts with Gatsby's internal properties. Renaming to `sanityId`
1:38:41 PM: 
1:38:41 PM: info [sanity] Stitching GraphQL schemas from SDL
1:38:41 PM: 
1:38:41 PM: success onPreBootstrap - 0.287s
1:38:41 PM: success createSchemaCustomization - 0.004s
1:38:41 PM: 
1:38:41 PM: info [sanity] Fetching export stream for dataset
1:38:42 PM: 
1:38:42 PM: info [sanity] Watch mode enabled, starting a listener
1:38:42 PM: info [sanity] Done exporting!
1:38:42 PM: success source and transform nodes - 1.010s
1:38:43 PM: 
1:38:43 PM: warning The type `SanityImageAsset` does not explicitly define the field `childImageSharp`.
1:38:43 PM: On types with the `@dontInfer` directive, or with the `infer` extension set to `false`, automatically adding fields for children types is deprecated.
1:38:43 PM: In Gatsby v3, only children fields explicitly set with the `childOf` extension will be added.
1:38:43 PM: success building schema - 0.469s
1:38:43 PM: 
1:38:43 PM: success createPages - 0.109s
1:38:43 PM: success createPagesStatefully - 0.073s
1:38:43 PM: success onPreExtractQueries - 0.002s
1:38:43 PM: success update schema - 0.030s
1:38:43 PM: 
1:38:43 PM: warning Using the global `graphql` tag is deprecated, and will not be supported in v3.
1:38:43 PM: Import it instead like:  import { graphql } from 'gatsby' in file:
1:38:43 PM: /opt/build/repo/frontend/src/templates/movie.js
1:38:44 PM: 
1:38:44 PM: success extract queries from components - 0.757s
1:38:44 PM: 
1:38:44 PM: success write out requires - 0.005s
1:38:44 PM: 
1:38:44 PM: success write out redirect data - 0.001s
1:38:44 PM: 
1:38:44 PM: success Build manifest and related icons - 0.300s
1:38:44 PM: success onPostBootstrap - 0.302s
1:38:44 PM: 
1:38:44 PM: 
1:38:44 PM: โ €
1:38:44 PM: 
1:38:44 PM: 
1:38:44 PM: info bootstrap finished - 8.220s
1:38:44 PM: 
1:38:44 PM: โ €
1:38:50 PM: 
1:38:50 PM: success Building production JavaScript and CSS bundles - 6.371s
1:38:51 PM: 
1:38:51 PM: success Rewriting compilation hashes - 0.019s
1:38:51 PM: 
1:38:51 PM: success run queries - 6.519s - 3/3 0.46/s
1:38:52 PM: success Building static HTML for pages - 0.953s - 18/18 18.88/s
1:38:52 PM: success Delete previous page data - 0.000s
1:38:52 PM: success onPostBuild - 0.001s
1:38:52 PM: info Done building in 15.813 sec
1:38:52 PM: info Built pages:
1:38:52 PM: Updated page: /movies/alien-covenant
1:38:52 PM: Updated page: /movies/walle
1:38:52 PM: Updated page: /movies/guardians-of-the-galaxy
1:38:52 PM: Updated page: /movies/interstellar
1:38:52 PM: Updated page: /movies/district-9
1:38:52 PM: Updated page: /movies/the-martian
1:38:52 PM: Updated page: /movies/blade-runner-2049
1:38:52 PM: Updated page: /movies/alien
1:38:52 PM: Updated page: /movies/the-dark-tower
1:38:52 PM: Updated page: /movies/aliens
1:38:52 PM: Updated page: /movies/elysium
1:38:52 PM: Updated page: /movies/prometheus
1:38:52 PM: Updated page: /movies/blade-runner
1:38:52 PM: Updated page: /movies/galaxy-quest
1:38:52 PM: Updated page: /404/
1:38:52 PM: Updated page: /about/
1:38:52 PM: Updated page: /
1:38:52 PM: Updated page: /404.html
1:38:52 PM: โ€‹
1:38:52 PM: (build.command completed in 16.6s)
1:38:52 PM: โ€‹
1:38:52 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
1:38:52 PM: โ”‚ 4. onPostBuild command from netlify-plugin-gatsby-cache โ”‚
1:38:52 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
1:38:52 PM: โ€‹
1:38:52 PM: Stored the Gatsby cache to speed up future builds.
1:38:52 PM: โ€‹
1:38:52 PM: (netlify-plugin-gatsby-cache onPostBuild completed in 270ms)
1:38:52 PM: โ€‹
1:38:52 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
1:38:52 PM: โ”‚ 5. onPostBuild command from netlify-plugin-cypress โ”‚
1:38:52 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
1:38:52 PM: โ€‹
1:38:53 PM: It looks like this is your first time using Cypress: 4.7.0
1:38:53 PM: 
1:38:53 PM: [11:38:53]  Verifying Cypress can run /opt/buildhome/.cache/Cypress/4.7.0/Cypress [started]
1:39:13 PM: [11:39:13]  Verifying Cypress can run /opt/buildhome/.cache/Cypress/4.7.0/Cypress [failed]
1:39:13 PM: 
1:39:13 PM: โ€‹
1:39:13 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
1:39:13 PM: โ”‚ Plugin "netlify-plugin-cypress" internal error โ”‚
1:39:13 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
1:39:13 PM: โ€‹
1:39:13 PM:   Error message
1:39:13 PM:   Error: Cypress failed to start.
1:39:13 PM: โ€‹
1:39:13 PM:   This is usually caused by a missing library or dependency.
1:39:13 PM: โ€‹
1:39:13 PM:   The error below should indicate which dependency is missing.
1:39:13 PM: โ€‹
1:39:13 PM:   https://on.cypress.io/required-dependencies
1:39:13 PM: โ€‹
1:39:13 PM:   If you are using Docker, we provide containers with all required dependencies installed.
1:39:13 PM: โ€‹
1:39:13 PM:   ----------
1:39:13 PM: โ€‹
1:39:13 PM:   [1551:0608/113857.112439:ERROR:bus.cc(393)] Failed to connect to the bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory
1:39:13 PM:   [1551:0608/113857.112962:ERROR:edid_parser.cc(102)] Too short EDID data: manufacturer id
1:39:13 PM:   [1580:0608/113857.159219:WARNING:discardable_shared_memory_manager.cc(199)] Less than 64MB of free space in temporary directory for shared memory files: 63
1:39:13 PM:   [1596:0608/113857.256502:ERROR:viz_main_impl.cc(161)] Exiting GPU process due to errors during initialization
1:39:13 PM:   [1580:0608/113858.232547:ERROR:edid_parser.cc(102)] Too short EDID data: manufacturer id
1:39:13 PM:   [1580:0608/113858.237719:ERROR:bus.cc(393)] Failed to connect to the bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory
1:39:13 PM:   Inconsistency detected by ld.so: dl-tls.c: 493: _dl_allocate_tls_init: Assertion `listp->slotinfo[cnt].gen <= GL(dl_tls_generation)' failed!
1:39:13 PM:   [1770:0608/113858.307990:ERROR:broker_posix.cc(43)] Invalid node channel message
1:39:13 PM:   [1770:0608/113913.323854:INFO:child_thread_impl.cc(831)] ChildThreadImpl::EnsureConnected()
1:39:13 PM: โ€‹
1:39:13 PM:   ----------
1:39:13 PM: โ€‹
1:39:13 PM:   Platform: linux (Ubuntu Linux - 16.04)
1:39:13 PM:   Cypress Version: 4.7.0
1:39:13 PM: โ€‹
1:39:13 PM:   Plugin details
1:39:13 PM:   Package:        netlify-plugin-cypress
1:39:13 PM:   Version:        1.3.11
1:39:13 PM:   Repository:     git+https://github.com/cypress-io/netlify-plugin-cypress.git
1:39:13 PM:   npm link:       https://www.npmjs.com/package/netlify-plugin-cypress
1:39:13 PM:   Report issues:  https://github.com/cypress-io/netlify-plugin-cypress/issues
1:39:13 PM: โ€‹
1:39:13 PM:   Error location
1:39:13 PM:   In "onPostBuild" event in "netlify-plugin-cypress" from netlify.toml and package.json
1:39:13 PM:       at /opt/build/repo/frontend/node_modules/cypress/lib/errors.js:373:15
1:39:13 PM:       at tryCatcher (/opt/build/repo/frontend/node_modules/bluebird/js/release/util.js:16:23)
1:39:13 PM:       at Promise._settlePromiseFromHandler (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:547:31)
1:39:13 PM:       at Promise._settlePromise (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:604:18)
1:39:13 PM:       at Promise._settlePromise0 (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:649:10)
1:39:13 PM:       at Promise._settlePromises (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:729:18)
1:39:13 PM:       at Promise._fulfill (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:673:18)
1:39:13 PM:       at Promise._resolveCallback (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:466:57)
1:39:13 PM:       at Promise._settlePromiseFromHandler (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:559:17)
1:39:13 PM:       at Promise._settlePromise (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:604:18)
1:39:13 PM:       at Promise._settlePromise0 (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:649:10)
1:39:13 PM:       at Promise._settlePromises (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:729:18)
1:39:13 PM:       at Promise._fulfill (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:673:18)
1:39:13 PM:       at Promise._resolveCallback (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:466:57)
1:39:13 PM:       at Promise._settlePromiseFromHandler (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:559:17)
1:39:13 PM:       at Promise._settlePromise (/opt/build/repo/frontend/node_modules/bluebird/js/release/promise.js:604:18)
1:39:13 PM: โ€‹
1:39:13 PM:   Error properties
1:39:13 PM:   { known: true, context: {} }
1:39:13 PM: โ€‹
1:39:13 PM:   Resolved config
1:39:13 PM:   build:
1:39:13 PM:     base: /opt/build/repo/frontend
1:39:13 PM:     command: npm run build
1:39:13 PM:     publish: /opt/build/repo/frontend/public
1:39:13 PM:   plugins:
1:39:13 PM:     - inputs: {}
1:39:13 PM:       origin: config
1:39:13 PM:       package: netlify-plugin-gatsby-cache
1:39:13 PM:     - inputs: {}
1:39:13 PM:       origin: config
1:39:13 PM:       package: netlify-plugin-cypress
1:39:13 PM:     - inputs: {}
1:39:13 PM:       origin: config
1:39:13 PM:       package: netlify-plugin-a11y
1:39:13 PM: Caching artifacts
1:39:13 PM: Started saving node modules
1:39:13 PM: Finished saving node modules
1:39:13 PM: Started saving build plugins
1:39:13 PM: Finished saving build plugins
1:39:13 PM: Started saving yarn cache
1:39:13 PM: Finished saving yarn cache
1:39:13 PM: Started saving pip cache
1:39:20 PM: Finished saving pip cache
1:39:20 PM: Started saving emacs cask dependencies
1:39:20 PM: Finished saving emacs cask dependencies
1:39:20 PM: Started saving maven dependencies
1:39:20 PM: Finished saving maven dependencies
1:39:20 PM: Started saving boot dependencies
1:39:20 PM: Finished saving boot dependencies
1:39:20 PM: Started saving go dependencies
1:39:20 PM: Finished saving go dependencies
1:39:20 PM: Error running command: Build script returned non-zero exit code: 1
1:39:20 PM: Failing build: Failed to build site
1:39:20 PM: Failed during stage 'building site': Build script returned non-zero exit code: 1
1:39:20 PM: Finished processing build request in 1m40.956570312s

Link to the repo
This commit created the failure: ClareBee/demo-site@fe68d1d

Can Netify send Deploy event to GitHub action

set up CI and testing

Probably need an example project right in this repo that Netlify would go through

Plugin should use the deployed netlify subdomain to run tests, not localhost

Versions

  • What is this plugin's version? latest
  • What is Cypress version? latest
  • What Netlify build image are you using? Ubuntu Xenial 16.04
  • What is the Node version if you know it? 12
  • What is the NPM version if you know it? 6

Describe the bug
When running a netlify build, the plugin serves the built assets itself to run tests, rather than setting baseUrl to the deployed netlify domain:

async function postBuild({ fullPublishFolder, record, spec, group, tag, buildUtils }) {
const port = 8080
const server = serveFolder(fullPublishFolder, port)
debug('local server listening on port %d', port)
const baseUrl = `http://localhost:${port}`
const results = await runCypressTests(baseUrl, record, spec, group, tag)
await new Promise((resolve, reject) => {
server.close(err => {
if (err) {
return reject(err)
}
debug('closed local server on port %d', port)
resolve()
})
})
processCypressResults(results, buildUtils)
}

It should run tests against the live version because simply serving the built assets is missing any redirects, etc that are relevant to the application and set up in either netlify.toml or the netlify UI.

Context specific settings

Is your feature request related to a problem? Please describe.
It seems currently impossible to skip tests based on Netlify build context.

Describe the solution you'd like
I would like to be able to:

  • Skip e2e tests on specific Netlify contexts
  • Set different settings for different Netlify contexts (smoke tests on production, etc)

Describe alternatives you've considered
none :(

Action Required: Fix Renovate Configuration

There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.

Error type: undefined. Note: this is a nested preset so please contact the preset author if you are unable to fix it yourself.

Improving documentation

Hi,
I tried to use your plugin but faced a major issue:
Documentation is lacking crucial informations for a real world usage.

  • Is parallelization supported ?
  • Can we use a custom config file for the cypress command ? 99% of my projects have different timeouts, fixtures, blacklist ...etc
  • Do we need to run a script or the plugin does it for us ?
  • Also why do we have to run on localhost:5000 ? Isn't better to respect CI's given URL ?

These issues are quite common in a company, I think it would be better to cover them in the documentation

Maybe this plugin should install and verify the binary

Seems Netlify node modules caching is weird, and I could not reliably assume the binary is restored in a subfolder using

CYPRESS_CACHE_FOLDER: "./node_modules/CypressBinary"

As a workaround maybe we could run npx cypress install during plugin's init phase?

Nice, CI=1 is not necessary

Correctly seeing CI output during the install in https://app.netlify.com/sites/netlify-plugin-prebuild-example/deploys/5e75220abe1baf8e5b7b33bc

4:07:21 PM: > node index.js --exec install
4:07:21 PM: Note: Overriding Cypress cache directory to: ./node_modules/CypressBinary
4:07:21 PM:       Previous installs of Cypress may not be found.
4:07:21 PM: Installing Cypress (version: 4.2.0)
4:07:21 PM: 
4:07:21 PM: [20:07:21]  Downloading Cypress     [started]
4:07:24 PM: [20:07:24]  Downloading Cypress     [completed]
4:07:24 PM: [20:07:24]  Unzipping Cypress       [started]
4:07:34 PM: [20:07:34]  Unzipping Cypress       [completed]
4:07:34 PM: [20:07:34]  Finishing Installation  [started]
4:07:35 PM: [20:07:35]  Finishing Installation  [completed]
4:07:35 PM: 
4:07:36 PM: You can now open Cypress by running: node_modules/.bin/cypress open
4:07:36 PM: https://on.cypress.io/installing-cypress
4:07:36 PM: 
4:07:36 PM: > [email protected] postinstall /opt/build/repo/node_modules/gatsby
4:07:36 PM: > node scripts/postinstall.js

Need to remove CI=1 from code examples

Add static site extensions

In https://github.com/cypress-io/cypress-example-kitchensink we have the following page structure

app/
  commands/
    actions.html
    ...
    waiting.html

The spec file has the command cy.visit('/commands/actions') but fails to find it

11:04:07 AM:   Running:  examples/waiting.spec.js                                                        (1 of 2)
11:04:07 AM:   Estimated: 1 second
11:04:11 AM: 
11:04:11 AM:   Waiting
11:04:11 AM:     1) "before each" hook for "cy.wait() - wait for a specific amount of time"
11:04:11 AM:   0 passing (422ms)
11:04:11 AM:   1 failing
11:04:11 AM:   1) Waiting
11:04:11 AM:        "before each" hook for "cy.wait() - wait for a specific amount of time":
11:04:11 AM:      CypressError: `cy.visit()` failed trying to load:
11:04:11 AM: http://localhost:8080/commands/waiting
11:04:11 AM: The response we received from your web server was:
11:04:11 AM:   > 404: Not Found
11:04:11 AM: This was considered a failure because the status code was not `2xx`.
11:04:11 AM: If you do not want status codes to cause failures pass the option: `failOnStatusCode: false`
11:04:11 AM: Because this error occurred during a `before each` hook we are skipping the remaining tests in the current suite: `Waiting`

This is because https://github.com/lwsjs/local-web-server#readme does not serve .html automatically for files that are not index.html.

Proposal

LWS includes https://github.com/lwsjs/static so we can simply start it with

npx ws --directory app --static.extensions html

And then /commands/actions or /commands/waiting URLs work. We could include HTML extension as a courtesy.

Tests never start to run in prebuild (Gatsby dev server)

Versions

{
    "@testing-library/cypress": "^6.0.0",
    "cypress": "^4.11.0",
    "cypress-axe": "^0.8.1",
    "eslint-plugin-cypress": "^2.11.1",
    "netlify-plugin-cypress": "^1.4.1",
}

Build image: Ubuntu Xenial 16.04 (default)
Now using node v14.7.0 (npm v6.14.7)

Describe the bug

I'm deploying a gatsby page and trying to have the prebuild tests running. After the local server is running the test never start until netlify cancels the build: Build exceeded maximum allowed runtime As you can see in the log the local server is started on 11:54:48 AM and finishes on 11:55:23 AM sot the 45 seconds timeout should be enough time.

# netlify.toml
[build]
command = "npm run build"
publish = "public"

[build.environment]
# cache Cypress binary in local "node_modules" folder
# so Netlify caches it
CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
# set TERM variable for terminal output
TERM = "xterm"

[[plugins]]
# local Cypress plugin will test our site after it is built
  package = "netlify-plugin-cypress"
  [plugins.inputs.preBuild]
    start = 'npm run start:mock'
    wait-on = 'http://localhost:8000/'
    wait-on-timeout = '45' # seconds
    record = true

Logs and screenshots

11:52:58 AM: Waiting for other deploys from your team to complete
11:53:13 AM: Build ready to start
11:53:19 AM: build-image version: ca811f47d4c1cbd1812d1eb6ecb0c977e86d1a1d
11:53:19 AM: build-image tag: v3.3.20
11:53:19 AM: buildbot version: 0ee111aa6b75403f01f5d27b0a6736d30a2da28c
11:53:19 AM: Fetching cached dependencies
11:53:19 AM: Starting to download cache of 457.0MB
11:53:21 AM: Finished downloading cache in 2.029026656s
11:53:21 AM: Starting to extract cache
11:53:47 AM: Finished extracting cache in 25.805533849s
11:53:47 AM: Finished fetching cache in 27.983111763s
11:53:47 AM: Starting to prepare the repo for build
11:53:48 AM: Preparing Git Reference refs/heads/develop
11:53:53 AM: Starting build script
11:53:53 AM: Installing dependencies
11:53:53 AM: Python version set to 2.7
11:53:54 AM: Started restoring cached node version
11:53:59 AM: Finished restoring cached node version
11:53:59 AM: Attempting node version 'v14' from .nvmrc
11:53:59 AM: v14.7.0 is already installed.
11:54:00 AM: Now using node v14.7.0 (npm v6.14.7)
11:54:00 AM: Started restoring cached build plugins
11:54:00 AM: Finished restoring cached build plugins
11:54:00 AM: Attempting ruby version 2.6.2, read from environment
11:54:02 AM: Using ruby version 2.6.2
11:54:02 AM: Using PHP version 5.6
11:54:03 AM: 5.2 is already installed.
11:54:03 AM: Using Swift version 5.2
11:54:03 AM: Started restoring cached node modules
11:54:03 AM: Finished restoring cached node modules
11:54:03 AM: Installing NPM modules using NPM version 6.14.7
11:54:28 AM: npm WARN @pmmmwh/[email protected] requires a peer of react-refresh@^0.8.2 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN @testing-library/[email protected] requires a peer of react-test-renderer@>=16.8.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of acorn@^6.0.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of core-js@^3.0.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of eslint@^5.16.0 || ^6.8.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of eslint@^6.1.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN @typescript-eslint/[email protected] requires a peer of eslint@^5.0.0 || ^6.0.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN @typescript-eslint/[email protected] requires a peer of eslint@^5.0.0 || ^6.0.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of eslint@^5.16.0 || ^6.1.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of @typescript-eslint/[email protected] but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of @typescript-eslint/[email protected] but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of [email protected] but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of [email protected] || 2.x but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of eslint@>=1.6.0 <7.0.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN [email protected] requires a peer of react-test-renderer@^16.8.0 but none is installed. You must install peer dependencies yourself.
11:54:28 AM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/chokidar/node_modules/fsevents):
11:54:28 AM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
11:54:28 AM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/jest-haste-map/node_modules/fsevents):
11:54:28 AM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
11:54:28 AM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/watchpack/node_modules/fsevents):
11:54:28 AM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
11:54:28 AM: npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules/fsevents):
11:54:28 AM: npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
11:54:28 AM: added 139 packages from 38 contributors and audited 3801 packages in 24.56s
11:54:31 AM: 181 packages are looking for funding
11:54:31 AM:   run `npm fund` for details
11:54:31 AM: found 364 vulnerabilities (362 low, 2 high)
11:54:31 AM:   run `npm audit fix` to fix them, or `npm audit` for details
11:54:31 AM: NPM modules installed
11:54:31 AM: Started restoring cached go cache
11:54:33 AM: Finished restoring cached go cache
11:54:33 AM: Installing Go version 1.12
11:54:33 AM: unset GOOS;
11:54:33 AM: unset GOARCH;
11:54:33 AM: export GOROOT='/opt/buildhome/.gimme_cache/versions/go1.12.linux.amd64';
11:54:33 AM: export PATH="/opt/buildhome/.gimme_cache/versions/go1.12.linux.amd64/bin:${PATH}";
11:54:33 AM: go version >&2;
11:54:33 AM: export GIMME_ENV='/opt/buildhome/.gimme_cache/env/go1.12.linux.amd64.env';
11:54:33 AM: go version go1.12 linux/amd64
11:54:33 AM: Installing missing commands
11:54:33 AM: Verify run directory
11:54:34 AM: โ€‹
11:54:34 AM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
11:54:34 AM: โ”‚        Netlify Build        โ”‚
11:54:34 AM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
11:54:34 AM: โ€‹
11:54:34 AM: โฏ Version
11:54:34 AM:   @netlify/build 3.1.5
11:54:34 AM: โ€‹
11:54:34 AM: โฏ Flags
11:54:34 AM:   deployId: 5f292ffa0b443100082a6378
11:54:34 AM:   mode: buildbot
11:54:34 AM:   timersFile: /tmp/substage_times.txt
11:54:34 AM: โ€‹
11:54:34 AM: โฏ Current directory
11:54:34 AM:   /opt/build/repo
11:54:34 AM: โ€‹
11:54:34 AM: โฏ Config file
11:54:34 AM:   /opt/build/repo/netlify.toml
11:54:34 AM: โ€‹
11:54:34 AM: โฏ Context
11:54:34 AM:   production
11:54:34 AM: โ€‹
11:54:34 AM: โฏ Loading plugins
11:54:34 AM:    - [email protected] from netlify.toml and package.json
11:54:34 AM: โ€‹
11:54:34 AM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
11:54:34 AM: โ”‚ 1. onPreBuild command from netlify-plugin-cypress โ”‚
11:54:34 AM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
11:54:34 AM: โ€‹
11:54:48 AM: waiting on "http://localhost:8000/" with timeout of 45 seconds
11:54:48 AM: > [email protected] start:mock /opt/build/repo
11:54:48 AM: > npm run fetchAssets && GATSBY_MOCK_ACCOUNTING=true npm run dev
11:54:48 AM: > [email protected] fetchAssets /opt/build/repo
11:54:48 AM: > node scripts/fetch-drupal-assets.mjs
11:54:50 AM: stored ./drupal/de/header.html
11:54:50 AM: stored ./drupal/de/footer.html
11:54:50 AM: stored ./drupal/de/style.html
11:54:50 AM: > [email protected] dev /opt/build/repo
11:54:50 AM: > gatsby develop
11:54:55 AM: Debugger listening on ws://127.0.0.1:9229/b48b6c47-a602-4e73-bec6-e5c5d25cb57a
11:54:55 AM: For help, see: https://nodejs.org/en/docs/inspector
11:54:55 AM: success open and validate gatsby-configs - 0.094s
11:54:56 AM: success load plugins - 1.217s
11:54:56 AM: success onPreInit - 0.003s
11:54:56 AM: success initialize cache - 0.009s
11:54:56 AM: success copy gatsby files - 0.035s
11:54:57 AM: info [sanity] Fetching remote GraphQL schema
11:54:57 AM: info [sanity] Transforming to Gatsby-compatible GraphQL SDL
11:54:57 AM: info [sanity] Stitching GraphQL schemas from SDL
11:54:57 AM: success @wapps: copy redirect component - 0.001s
11:54:57 AM: success onPreBootstrap - 0.373s
11:54:57 AM: success createSchemaCustomization - 0.015s
11:54:57 AM: info [sanity] Fetching export stream for dataset
11:54:58 AM: warning [sanity] Document "0cf5429e-510b-42b0-ae88-487c8a0e22aa" has type mwst (SanityMwst), which is not declared in the GraphQL schema. Make sure you run "graphql deploy". Skipping document.
11:54:58 AM: warning [sanity] Document "bbe86f1b-cd76-4b22-950c-d5b53cd9a03b" has type mwst (SanityMwst), which is not declared in the GraphQL schema. Make sure you run "graphql deploy". Skipping document.
11:54:58 AM: warning [sanity] Document "bc96ebdb-66d8-42e5-989e-33cb4481063b" has type mwst (SanityMwst), which is not declared in the GraphQL schema. Make sure you run "graphql deploy". Skipping document.
11:54:58 AM: info [sanity] Done exporting!
11:54:58 AM: success @wapps: create node: de_messages - 0.032s
11:54:58 AM: success @wapps: create node: en_messages - 0.006s
11:54:58 AM: success @wapps: create node: fr_messages - 0.008s
11:54:58 AM: success Checking for changed pages - 0.001s
11:54:58 AM: success source and transform nodes - 1.184s
11:54:58 AM: warning The type `SanityImageAsset` does not explicitly define the field `childImageSharp`.
11:54:58 AM: On types with the `@dontInfer` directive, or with the `infer` extension set to `false`, automatically adding fields for children types is deprecated.
11:54:58 AM: In Gatsby v3, only children fields explicitly set with the `childOf` extension will be added.
11:54:59 AM: success building schema - 0.563s
11:54:59 AM: success createPages - 0.208s
11:54:59 AM: success Checking for changed pages - 0.000s
11:54:59 AM: success createPagesStatefully - 0.354s
11:54:59 AM: success updating schema - 0.043s
11:54:59 AM: success write out redirect data - 0.006s
11:54:59 AM: success onPreExtractQueries - 0.024s
11:55:01 AM: success extract queries from components - 1.233s
11:55:01 AM: success write out requires - 0.050s
11:55:01 AM: success run static queries - 0.085s - 6/6 70.87/s
11:55:01 AM: success run page queries - 0.254s - 133/133 523.76/s
11:55:10 AM: Using browser-only version of superagent in non-browser environment
11:55:23 AM: โ €
11:55:23 AM: You can now view gcb-shop in the browser.
11:55:23 AM: โ €
11:55:23 AM:   http://localhost:8000/
11:55:23 AM: โ €
11:55:23 AM: View GraphiQL, an in-browser IDE, to explore your site's data and schemaโ €
11:55:23 AM:   http://localhost:8000/___graphql
11:55:23 AM: โ €
11:55:23 AM: Note that the development build is not optimized.
11:55:23 AM: To create a production build, use gatsby build
11:55:23 AM: โ €
11:55:23 AM: success Building development bundle - 12.882s
12:23:13 PM: Build exceeded maximum allowed runtime
12:23:15 PM: success onPreExtractQueries - 0.170s
12:23:19 PM: error There was a problem reading the file: /opt/build/repo/src/templates/package.tsx
12:23:19 PM: 
12:23:19 PM: 
12:23:19 PM:   Error: ENOENT: no such file or directory, open '/opt/build/repo/src/templates/  package.tsx'
12:23:19 PM: 
12:23:19 PM: error There was a problem reading the file: /opt/build/repo/src/templates/category.tsx
...

Missing cypress dependency

Some users are using this plugin and forgetting to install cypress in their Netlify Site. This makes their builds crash
This could be solved either by:

  • adding a try/catch block around cypress install calling utils.build.failBuild() with an error message explaining cypress must be installed by user. Downside: more work for the user and more potential for errors.
  • make cypress a dependencies instead of a devDependencies. Downside: user cannot choose their version of cypress.

What do you think?

use given start command

Instead of spawning own static server, maybe allow running a given NPM script name or command to spawn the server

Question: how to know the port number or base URL? probably normal cypress.json settings apply

Understanding preBuild step

Hi there,

I'm curious about the preBuild step and in which context it executes. Does the preBuild occur within the Netlify build pipeline, or is this feature expected to be used only when running local tests with the netlify-cli tooling?

I dug for a while through the README and the src, but was not able to fully understand this feature.

Thanks so much for your work on this plugin!

Chromium renderer process crashed

One build reported the following error message in the logs:

It looks like this is your first time using Cypress: 4.5.0

[16:09:13]  Verifying Cypress can run /opt/buildhome/.cache/Cypress/4.5.0/Cypress [started]
[16:09:18]  Verifying Cypress can run /opt/buildhome/.cache/Cypress/4.5.0/Cypress [completed]

Opening Cypress...
================================================================================
tput: No value for $TERM and no -T specified
 (Run Starting)
 โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
 โ”‚ Cypress: 4.5.0 โ”‚
 โ”‚ Browser: Electron 80 (headless) โ”‚
 โ”‚ Specs: 4 found (about.test.js, app.test.js, contact.test.js, portfolio.test.js) โ”‚
 โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
Running: about.test.js (1 of 4)

 About page
 โœ“ loads about page (1864ms)
 โœ“ displays filters (724ms)
 โœ“ filters skills (1496ms)
  3 passing (4s)
 (Results)
 โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
 โ”‚ Tests: 3 โ”‚
 โ”‚ Passing: 3 โ”‚
 โ”‚ Failing: 0 โ”‚
 โ”‚ Pending: 0 โ”‚
 โ”‚ Skipped: 0 โ”‚
 โ”‚ Screenshots: 0 โ”‚
 โ”‚ Video: true โ”‚
 โ”‚ Duration: 4 seconds โ”‚
 โ”‚ Spec Ran: about.test.js โ”‚
 โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
 (Video)
  - Started processing: Compressing to 32 CRF
  - Finished processing: /opt/build/repo/cypress/videos/about.test.js.mp4 (4 seconds)
โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
Running: app.test.js (2 of 4)

 Portfolio app
 โœ“ loads home page (585ms)
[2195:0429/160950.056733:FATAL:memory.cc(22)] Out of memory. size=262144
We detected that the Chromium Renderer process just crashed.

This is the equivalent to seeing the 'sad face' when Chrome dies.

This can happen for a number of different reasons:
- You wrote an endless loop and you must fix your own code
- There is a memory leak in Cypress (unlikely but possible)
- You are running Docker (there is an easy fix for this: see link below)
- You are running lots of tests on a memory intense application
- You are running in a memory starved VM environment
- There are problems with your GPU / GPU drivers
- There are browser bugs in Chromium

You can learn more including how to fix Docker here:

https://on.cypress.io/renderer-process-crashed
TypeError: onError is not a function
at BrowserWindow.onCrashed (/opt/buildhome/.cache/Cypress/4.5.0/Cypress/resources/app/packages/server/lib/modes/run.js:538:7)
at WebContents.<anonymous> (/opt/buildhome/.cache/Cypress/4.5.0/Cypress/resources/app/packages/server/lib/gui/windows.js:181:34)
at WebContents.emit (events.js:215:7)
TypeError: onError is not a function
at BrowserWindow.onCrashed (/opt/buildhome/.cache/Cypress/4.5.0/Cypress/resources/app/packages/server/lib/modes/run.js:538:7)
at WebContents.<anonymous> (/opt/buildhome/.cache/Cypress/4.5.0/Cypress/resources/app/packages/server/lib/gui/windows.js:181:34)
at WebContents.emit (events.js:215:7)

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚ Plugin "netlify-plugin-cypress" internal error โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Error message
Error: The Test Runner unexpectedly exited via a exit event with signal SIGILL

Please search Cypress documentation for possible solutions:

https://on.cypress.io

Check if there is a GitHub issue describing this crash:

https://github.com/cypress-io/cypress/issues

Consider opening a new issue.

----------

Platform: linux (Ubuntu Linux - 16.04)
Cypress Version: 4.5.0

Plugin details
ID: netlify-plugin-cypress
Version: 1.3.7
Repository: git+https://github.com/cypress-io/netlify-plugin-cypress.git
npm link: https://www.npmjs.com/package/netlify-plugin-cypress
Report issues: https://github.com/cypress-io/netlify-plugin-cypress/issues

Error location
In "onPostBuild" event in npm package "netlify-plugin-cypress"
at /opt/build/repo/node_modules/cypress/lib/errors.js:326:15
at tryCatcher (/opt/build/repo/node_modules/bluebird/js/release/util.js:16:23)
at Promise._settlePromiseFromHandler (/opt/build/repo/node_modules/bluebird/js/release/promise.js:547:31)
at Promise._settlePromise (/opt/build/repo/node_modules/bluebird/js/release/promise.js:604:18)
at Promise._settlePromise0 (/opt/build/repo/node_modules/bluebird/js/release/promise.js:649:10)
at Promise._settlePromises (/opt/build/repo/node_modules/bluebird/js/release/promise.js:729:18)
at Promise._fulfill (/opt/build/repo/node_modules/bluebird/js/release/promise.js:673:18)
at Promise._resolveCallback (/opt/build/repo/node_modules/bluebird/js/release/promise.js:466:57)
at Promise._settlePromiseFromHandler (/opt/build/repo/node_modules/bluebird/js/release/promise.js:559:17)
at Promise._settlePromise (/opt/build/repo/node_modules/bluebird/js/release/promise.js:604:18)
at Promise._settlePromise0 (/opt/build/repo/node_modules/bluebird/js/release/promise.js:649:10)
at Promise._settlePromises (/opt/build/repo/node_modules/bluebird/js/release/promise.js:729:18)
at Promise._fulfill (/opt/build/repo/node_modules/bluebird/js/release/promise.js:673:18)
at Promise._resolveCallback (/opt/build/repo/node_modules/bluebird/js/release/promise.js:466:57)
at Promise._settlePromiseFromHandler (/opt/build/repo/node_modules/bluebird/js/release/promise.js:559:17)
at Promise._settlePromise (/opt/build/repo/node_modules/bluebird/js/release/promise.js:604:18)

Error properties
{ known: true }

It seems like the Chromium renderer process crashed.

Out of memory Chromium crash

Versions

  • What is this plugin's version? 1.3.11
  • What is Cypress version? 4.4.1
  • What Netlify build image are you using? This setting is available under "Deploy settings / Build image selection". build-image v3.3.14
  • What is the Node version if you know it? 10.21.0
  • What is the NPM version if you know it? Yarn 1.17.0

Describe the bug
Chromium crash with an out-of-memory bug.

Logs and screenshots

11:01:53 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
11:01:53 PM: โ”‚ 5. onPostBuild command from netlify-plugin-cypress โ”‚
11:01:53 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
11:01:53 PM: โ€‹
11:01:53 PM: It looks like this is your first time using Cypress: 4.4.1
11:01:53 PM: 
11:01:53 PM: [21:01:53]  Verifying Cypress can run /opt/build/repo/node_modules/CypressBinary/4.4.1/Cypress [started]
11:01:59 PM: [21:01:59]  Verifying Cypress can run /opt/build/repo/node_modules/CypressBinary/4.4.1/Cypress [completed]
11:01:59 PM: 
11:01:59 PM: Opening Cypress...
11:02:05 PM: tput: No value for $TERM and no -T specified
11:02:05 PM: ================================================================================
11:02:05 PM:   (Run Starting)
11:02:05 PM:   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
11:02:05 PM:   โ”‚ Cypress:    4.4.1                                                                              โ”‚
11:02:05 PM:   โ”‚ Browser:    Electron 80 (headless)                                                             โ”‚
11:02:05 PM:   โ”‚ Specs:      2 found (accessibility.test.js, pdp_comforter.test.js)                             โ”‚
11:02:05 PM:   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
11:02:05 PM: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
11:02:05 PM:   Running:  accessibility.test.js                                                           (1 of 2)
11:02:13 PM: 
11:02:14 PM:   Homepage accessibility test
11:02:16 PM:     โœ“ Has no detectable accessibility violations on load (2743ms)
11:02:16 PM:   PDP accessibility tests
11:02:21 PM: 
    โœ“ Has no detectable accessibility violations on load (4461ms)
11:02:21 PM:   2 passing (7s)
11:02:22 PM:   (Results)
11:02:22 PM:   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
11:02:22 PM:   โ”‚ Tests:        2                                                                                โ”‚
11:02:22 PM:   โ”‚ Passing:      2                                                                                โ”‚
11:02:22 PM:   โ”‚ Failing:      0                                                                                โ”‚
11:02:22 PM:   โ”‚ Pending:      0                                                                                โ”‚
11:02:22 PM:   โ”‚ Skipped:      0                                                                                โ”‚
11:02:22 PM:   โ”‚ Screenshots:  0                                                                                โ”‚
11:02:22 PM:   โ”‚ Video:        true                                                                             โ”‚
11:02:22 PM:   โ”‚ Duration:     7 seconds                                                                        โ”‚
11:02:22 PM:   โ”‚ Spec Ran:     accessibility.test.js                                                            โ”‚
11:02:22 PM:   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
11:02:24 PM:   (Video)
11:02:24 PM:   -  Started processing:  Compressing to 32 CRF
11:02:29 PM:   -  Finished processing: /opt/build/repo/cypress/videos/accessibility.test.js.mp4       (4 seconds)
11:02:29 PM: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
11:02:29 PM:   Running:  pdp_comforter.test.js                                                           (2 of 2)
11:02:31 PM: 
11:02:31 PM:   Cloud PDP is functioning
11:02:32 PM:     โœ“ Loads the cloud PDP (1487ms)
11:02:33 PM:     โœ“ Properly renders the Nav Bar (432ms)
11:02:34 PM:     โœ“ Hero Slider Exists, is enabled, and has proper amount of Images (190ms)
11:02:34 PM: 
    โœ“ Size (variant) selectors exists (69ms)
11:02:35 PM: 
    โœ“ Price exists, Size (variant) selectors update price (1866ms)
11:02:36 PM: [3548:0605/210236.742571:FATAL:memory.cc(22)] Out of memory. size=524288
11:02:37 PM: We detected that the Chromium Renderer process just crashed.
11:02:37 PM: 
11:02:37 PM: This is the equivalent to seeing the 'sad face' when Chrome dies.
11:02:37 PM: 
11:02:37 PM: This can happen for a number of different reasons:
11:02:37 PM: 
11:02:37 PM: - You wrote an endless loop and you must fix your own code
11:02:37 PM: - There is a memory leak in Cypress (unlikely but possible)
11:02:37 PM: - You are running Docker (there is an easy fix for this: see link below)
11:02:37 PM: - You are running lots of tests on a memory intense application
11:02:37 PM: - You are running in a memory starved VM environment
11:02:37 PM: - There are problems with your GPU / GPU drivers
11:02:37 PM: - There are browser bugs in Chromium
11:02:37 PM: 
11:02:37 PM: You can learn more including how to fix Docker here:
11:02:37 PM: 
11:02:37 PM: https://on.cypress.io/renderer-process-crashed
11:02:37 PM: TypeError: onError is not a function
11:02:37 PM:     at BrowserWindow.onCrashed (/opt/build/repo/node_modules/CypressBinary/4.4.1/Cypress/resources/app/packages/server/lib/modes/run.js:538:7)
11:02:37 PM:     at WebContents.<anonymous> (/opt/build/repo/node_modules/CypressBinary/4.4.1/Cypress/resources/app/packages/server/lib/gui/windows.js:181:34)
11:02:37 PM:     at WebContents.emit (events.js:215:7)
11:02:37 PM: TypeError: onError is not a function
11:02:37 PM:     at BrowserWindow.onCrashed (/opt/build/repo/node_modules/CypressBinary/4.4.1/Cypress/resources/app/packages/server/lib/modes/run.js:538:7)
11:02:37 PM:     at WebContents.<anonymous> (/opt/build/repo/node_modules/CypressBinary/4.4.1/Cypress/resources/app/packages/server/lib/gui/windows.js:181:34)
11:02:37 PM:     at WebContents.emit (events.js:215:7)
11:02:39 PM: โ€‹
11:02:39 PM: โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
11:02:39 PM: โ”‚ Plugin "netlify-plugin-cypress" internal error โ”‚
11:02:39 PM: โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
11:02:39 PM: โ€‹
11:02:39 PM:   Error message
11:02:39 PM:   Error: The Test Runner unexpectedly exited via a exit event with signal SIGILL
11:02:39 PM: โ€‹
11:02:39 PM:   Please search Cypress documentation for possible solutions:
11:02:39 PM: โ€‹
11:02:39 PM:   https://on.cypress.io
11:02:39 PM: โ€‹
11:02:39 PM:   Check if there is a GitHub issue describing this crash:
11:02:39 PM: โ€‹
11:02:39 PM:   https://github.com/cypress-io/cypress/issues
11:02:39 PM: โ€‹
11:02:39 PM:   Consider opening a new issue.
11:02:39 PM: โ€‹
11:02:39 PM:   ----------
11:02:39 PM: โ€‹
11:02:39 PM:   Platform: linux (Ubuntu Linux - 16.04)
11:02:39 PM:   Cypress Version: 4.4.1
11:02:39 PM: โ€‹
11:02:39 PM:   Plugin details
11:02:39 PM:   Package:        netlify-plugin-cypress
11:02:39 PM:   Version:        1.3.11
11:02:39 PM:   Repository:     git+https://github.com/cypress-io/netlify-plugin-cypress.git
11:02:39 PM:   npm link:       https://www.npmjs.com/package/netlify-plugin-cypress
11:02:39 PM:   Report issues:  https://github.com/cypress-io/netlify-plugin-cypress/issues
11:02:39 PM: โ€‹
11:02:39 PM:   Error location
11:02:39 PM:   In "onPostBuild" event in "netlify-plugin-cypress" from netlify.toml and package.json
11:02:39 PM:       at /opt/build/repo/node_modules/cypress/lib/errors.js:190:15
11:02:39 PM:       at tryCatcher (/opt/build/repo/node_modules/bluebird/js/release/util.js:16:23)
11:02:39 PM:       at Promise._settlePromiseFromHandler (/opt/build/repo/node_modules/bluebird/js/release/promise.js:547:31)
11:02:39 PM:       at Promise._settlePromise (/opt/build/repo/node_modules/bluebird/js/release/promise.js:604:18)
11:02:39 PM:       at Promise._settlePromise0 (/opt/build/repo/node_modules/bluebird/js/release/promise.js:649:10)
11:02:39 PM:       at Promise._settlePromises (/opt/build/repo/node_modules/bluebird/js/release/promise.js:729:18)
11:02:39 PM:       at Promise._fulfill (/opt/build/repo/node_modules/bluebird/js/release/promise.js:673:18)
11:02:39 PM:       at Promise._resolveCallback (/opt/build/repo/node_modules/bluebird/js/release/promise.js:466:57)
11:02:39 PM:       at Promise._settlePromiseFromHandler (/opt/build/repo/node_modules/bluebird/js/release/promise.js:559:17)
11:02:39 PM:       at Promise._settlePromise (/opt/build/repo/node_modules/bluebird/js/release/promise.js:604:18)
11:02:39 PM:       at Promise._settlePromise0 (/opt/build/repo/node_modules/bluebird/js/release/promise.js:649:10)
11:02:39 PM:       at Promise._settlePromises (/opt/build/repo/node_modules/bluebird/js/release/promise.js:729:18)
11:02:39 PM:       at Promise._fulfill (/opt/build/repo/node_modules/bluebird/js/release/promise.js:673:18)
11:02:39 PM:       at Promise._resolveCallback (/opt/build/repo/node_modules/bluebird/js/release/promise.js:466:57)
11:02:39 PM:       at Promise._settlePromiseFromHandler (/opt/build/repo/node_modules/bluebird/js/release/promise.js:559:17)
11:02:39 PM:       at Promise._settlePromise (/opt/build/repo/node_modules/bluebird/js/release/promise.js:604:18)
11:02:39 PM: โ€‹
11:02:39 PM:   Error properties
11:02:39 PM:   { known: true }

Link to the repo
Private repository

TypeError: errorCallback is not a function

Versions

  • What is this plugin's version? 1.9.0
  • What is Cypress version? 6.4.0
  • What Netlify build image are you using? Ubuntu Xenial 16.04
  • What is the Node version if you know it? 12.18.0

Describe the bug

1:08:50 AM: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
1:08:50 AM:   Plugin "netlify-plugin-cypress" internal error                
1:08:50 AM: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
1:08:50 AM: โ€‹
1:08:50 AM:   Error message
1:08:50 AM:   TypeError: errorCallback is not a function
1:08:50 AM: โ€‹
1:08:50 AM:   Plugin details
1:08:50 AM:   Package:        netlify-plugin-cypress
1:08:50 AM:   Version:        1.9.0
1:08:50 AM:   Repository:     git+https://github.com/cypress-io/netlify-plugin-cypress.git
1:08:50 AM:   npm link:       https://www.npmjs.com/package/netlify-plugin-cypress
1:08:50 AM:   Report issues:  https://github.com/cypress-io/netlify-plugin-cypress/issues
1:08:50 AM: โ€‹
1:08:50 AM:   Error location
1:08:50 AM:   In "onPreBuild" event in "netlify-plugin-cypress" from netlify.toml and package.json
1:08:50 AM:       at processCypressResults (/opt/build/repo/node_modules/netlify-plugin-cypress/src/index.js:212:12)
1:08:50 AM:       at onPreBuild (/opt/build/repo/node_modules/netlify-plugin-cypress/src/index.js:313:5)
1:08:50 AM:       at async Object.run (/opt/buildhome/.netlify-build-nvm/versions/node/v12.16.3/lib/node_modules/@netlify/build/src/plugins/child/run.js:18:3)
1:08:50 AM:       at async handleEvent (/opt/buildhome/.netlify-build-nvm/versions/node/v12.16.3/lib/node_modules/@netlify/build/src/plugins/child/main.js:36:38)
1:08:50 AM:       at async process.<anonymous> (/opt/buildhome/.netlify-build-nvm/versions/node/v12.16.3/lib/node_modules/@netlify/build/src/plugins/ipc.js:103:16)
1:08:50 AM: โ€‹
1:08:50 AM:   Resolved config
1:08:50 AM:   build:
1:08:50 AM:     command: npm run build
1:08:50 AM:     commandOrigin: config
1:08:50 AM:     environment:
1:08:50 AM:       - CYPRESS_RECORD_KEY
1:08:50 AM:       - DATABASE_NAME
1:08:50 AM:       - DEBUG
1:08:50 AM:       - FAUNADB_SERVER_SECRET
1:08:50 AM:       - VUE_APP_BASE_FUNCTIONS_URI
1:08:50 AM:       - CYPRESS_CACHE_FOLDER
1:08:50 AM:       - TERM
1:08:50 AM:     functions: /opt/build/repo/functions
1:08:50 AM:     publish: /opt/build/repo/public
1:08:50 AM:   plugins:
1:08:50 AM:     - inputs:
1:08:50 AM:         skip: true
1:08:50 AM:       origin: config
1:08:50 AM:       package: netlify-plugin-cypress

cy.visit() failed trying to load

Versions

  • What is this plugin's version? 1.3.11
  • What is Cypress version? 4.7.0
  • What Netlify build image are you using? This setting is available under "Deploy settings / Build image selection". Probably either "Ubuntu Trusty 14.04" or "Ubuntu Xenial 16.04" Ubuntu Xenial 16.04
  • What is the Node version if you know it? n/a
  • What is the NPM version if you know it? we use yarn

Describe the bug
Cypess passes all tests locally. However, it failed in Netlify CI. Specifically, I'm getting this error below when the plugin runs in Netlify:

CypressError: `cy.visit()` failed trying to load:
12:33:54 PM: http://localhost:8080/home
12:33:54 PM: The response we received from your web server was:
12:33:54 PM:   > 404: Not Found

I've got this setup "baseUrl": "http://localhost:3000" in cypress.json. Even if I tried updating basUrl port to 8080, I still get the same error.

I've also tried to set up a preBuild for the plugin, there are no loading issues of the prebuild test. However, the second test (postBuild) fails due to the 404 loading issue.

My website is not a static website. It's calling contentful API instead. I wonder if the plug-in only can work for a static website? Or we need to make a tweak somewhere?
Logs and screenshots

Screen Shot 2020-06-08 at 2 21 06 PM

Provide support for monorepos

Is your feature request related to a problem? Please describe.
I need a way to tell the plugin where my Cypress config is (/packages/my-app/cypress).

Describe the solution you'd like
something as simple as a base param should do the trick:

[[plugins]]
  package = "netlify-plugin-cypress"
  base = "/packages/client"

Describe alternatives you've considered
Alternatively, we could point to cypress itself

[[plugins]]
  package = "netlify-plugin-cypress"
  config_path = "/packages/client/cypress.json"

Started processes on preBuild are not stopped

Versions

  • What is this plugin's version? 1.9.1
  • What is Cypress version? 6.4.0
  • What Netlify build image are you using? Ubuntu Xenial 16.04
  • What is the Node version if you know it? 12.18.0

Describe the bug
Process are not stopped

Logs and screenshots

When using the following configuration the processes are not stopped

[[plugins]]
  package = "netlify-plugin-cypress"

  [plugins.inputs]
    skip = true

  [plugins.inputs.preBuild]
    start = 'npx netlify dev'
    wait-on = 'http://localhost:8888'

  [plugins.inputs.onSuccess]
    record = true

then processes are not stopped

9:57:40 PM: (netlify-plugin-cypress onSuccess completed in 4ms)
9:57:40 PM: 
9:57:40 PM: ** WARNING **
9:57:40 PM: There are some lingering processes even after the build process finished:
9:57:40 PM: 
9:57:40 PM: USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
9:57:40 PM: buildbot    1867  4.8  0.5 24044868 164688 ?     Sl   20:55   0:07 node /opt/buildhome/.nvm/versions/node/v12.18.0/bin/npx netlify dev
9:57:40 PM: buildbot    1880  0.3  0.1 739708 40260 ?        Sl   20:55   0:00 npm
9:57:40 PM: buildbot    1891  0.0  0.0   4512   716 ?        S    20:55   0:00 sh -c vue-cli-service serve
9:57:40 PM: buildbot    1892 29.4  1.4 1243992 451500 ?      Sl   20:55   0:44 node /opt/build/repo/node_modules/.bin/vue-cli-service serve
9:57:40 PM: 
9:57:40 PM: Our builds do not kill your processes automatically, so please make sure
9:57:40 PM: that nothing is running after your build finishes, or it will be marked as
9:57:40 PM: failed since something is still running.

Cypress caching in `~/.cache/Cypress`

Installing Build plugins takes time. To make builds as fast as possible, Netlify is now pre-installing all known Build plugins before the build even starts, leading to 0s additional installation time. This is done as part of the build step of our main Docker image.

However, Cypress downloads binaries and caches them in ~/.cache/Cypress (on Linux). By default, ~/.cache is restored/saved to a cache at the beginning/end of every build. Since ~/.cache/Cypress takes 580MB, this adds 20s to 30s additional time to every build.

We are discussing with @mikeh and @vbrown608 how to fix this performance issue. One way would be to use the CYPRESS_CACHE_FOLDER environment variable to change the location of this directory. Note: this would mean the following section of this plugin's README would need to be updated.

What are your thoughts on this @bahmutov? Do you think this is a viable approach?

Add `cypress` as one of the `dependencies`

cypress is currently technically like a peer dependency of this plugin: users must install cypress themselves to use netlify-plugin-cypress. I am guessing the reason is to allow users to install the version of cypress they want.

However, it also creates some friction, where several users have to run a build, read the error message, install cypress, then try again.

Would it make sense to add cypress as a production dependencies of this module instead?

Plan for v2 release

  • make pre-build testing optional
  • make post-build testing optional (right now it runs by default)
  • make the post-deploy testing the default (right now opt-in)
  • make Chromium the default browser

Some integration tests fail on Netlify build server that pass locally

Versions

  • What is this plugin's version: whatever Netlify has installed
  • What is Cypress version: ^4.6.0
  • What Netlify build image are you using? Ubuntu Xenial 16.04 (default)
  • What is the Node version if you know it? Locally 10.20.1
  • What is the NPM version if you know it? Locally 6.9.2

Describe the bug
I started adding some Cypress integration tests to a new NextJS project that is hosted on Netlify. The first simple homepage tests passed, but subsequent tests on different routes fail with 404, even though they pass locally.

I've tried to reproduce the failures locally by using yarn build yarn export and npx serve out -l 3000, so that it was as close to the Netlify environment, but they still pass locally.

netlify.toml

[build]
  command = "yarn build && yarn export"
  publish = "out"

  [build.environment]
  # cache Cypress binary
  CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
  CYPRESS_BASE_URL = "http://localhost:3000"
  # set TERM variable for terminal output
  TERM = "xterm"
  # temporarily turn on debug logging
  DEBUG="netlify-plugin-cypress,netlify-plugin-cypress:verbose"

[[plugins]]
  package = "netlify-plugin-cache-nextjs"

[[plugins]]
  package = "netlify-plugin-cypress"

cypress.json

{
   "baseUrl": "http://localhost:3000"
}

integration test

describe('trips page', () => {
   beforeEach(() => {
      cy.log(`visiting http://localhost:3000`);
      cy.visit('/');
      cy.location('pathname', { timeout: 10000 }).should('eq', '/en');
      cy.visit('/en/trips');
      cy.location('pathname', { timeout: 10000 }).should('eq', '/en/trips');
   });

   it('should have 1 header, 1 main, and 1 footer', () => {
      cy.get('header').should('have.length', 1);
      cy.get('main').should('have.length', 1);
      cy.get('footer').should('have.length', 1);
   });

Netlify build log

10:31:30 AM:   home page
10:31:31 AM:     โœ“ should be redirected to en locale (600ms)
10:31:31 AM:     โœ“ should have 1 header, 1 main, and 1 footer (566ms)
10:31:31 AM:     โœ“ should have 2 languages in picker (272ms)
10:31:32 AM:     โœ“ should change language to fr (562ms)
10:31:32 AM:   4 passing (2s)
10:31:33 AM:   (Results)
10:31:33 AM:   โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
10:31:33 AM:   โ”‚ Tests:        4                                                                                โ”‚
10:31:33 AM:   โ”‚ Passing:      4                                                                                โ”‚
10:31:33 AM:   โ”‚ Failing:      0                                                                                โ”‚
10:31:33 AM:   โ”‚ Pending:      0                                                                                โ”‚
10:31:33 AM:   โ”‚ Skipped:      0                                                                                โ”‚
10:31:33 AM:   โ”‚ Screenshots:  0                                                                                โ”‚
10:31:33 AM:   โ”‚ Video:        true                                                                             โ”‚
10:31:33 AM:   โ”‚ Duration:     2 seconds                                                                        โ”‚
10:31:33 AM:   โ”‚ Spec Ran:     index-page.js                                                                    โ”‚
10:31:33 AM:   โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
10:31:33 AM:   (Video)
10:31:33 AM:   -  Started processing:  Compressing to 32 CRF
10:31:35 AM:   -  Finished processing: /opt/build/repo/cypress/videos/index-page.js.mp4                (1 second)
10:31:35 AM: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
10:31:35 AM:   Running:  trips-page.js                                                                   (3 of 3)
10:31:36 AM: 
10:31:36 AM:   trips page
10:31:37 AM:     1) "before each" hook for "should have 1 header, 1 main, and 1 footer"
10:31:37 AM:   0 passing (1s)
10:31:37 AM:   1 failing
10:31:37 AM:   1) trips page
10:31:37 AM:        "before each" hook for "should have 1 header, 1 main, and 1 footer":
10:31:37 AM:      CypressError: `cy.visit()` failed trying to load:
10:31:37 AM: http://localhost:8080/en/trips
10:31:37 AM: The response we received from your web server was:
10:31:37 AM:   > 404: Not Found
10:31:37 AM: This was considered a failure because the status code was not `2xx`.
10:31:37 AM: This http request was redirected '1' time to:
10:31:37 AM:   - 302: http://localhost:8080/en/trips/
10:31:37 AM: If you do not want status codes to cause failures pass the option: `failOnStatusCode: false`
10:31:37 AM: Because this error occurred during a `before each` hook we are skipping the remaining tests in the current suite: `trips page`
10:31:37 AM:       at http://localhost:8080/__cypress/runner/cypress_runner.js:145372:25
10:31:37 AM:       at visitFailedByErr (http://localhost:8080/__cypress/runner/cypress_runner.js:144763:12)
10:31:37 AM:       at http://localhost:8080/__cypress/runner/cypress_runner.js:145352:13
10:31:37 AM:       at tryCatcher (http://localhost:8080/__cypress/runner/cypress_runner.js:10384:23)
10:31:37 AM:       at Promise._settlePromiseFromHandler (http://localhost:8080/__cypress/runner/cypress_runner.js:8319:31)
10:31:37 AM:       at Promise._settlePromise (http://localhost:8080/__cypress/runner/cypress_runner.js:8376:18)
10:31:37 AM:       at Promise._settlePromise0 (http://localhost:8080/__cypress/runner/cypress_runner.js:8421:10)
10:31:37 AM:       at Promise._settlePromises (http://localhost:8080/__cypress/runner/cypress_runner.js:8497:18)
10:31:37 AM:       at _drainQueueStep (http://localhost:8080/__cypress/runner/cypress_runner.js:5091:12)
10:31:37 AM:       at _drainQueue (http://localhost:8080/__cypress/runner/cypress_runner.js:5084:9)
10:31:37 AM:       at Async.../../node_modules/bluebird/js/release/async.js.Async._drainQueues (http://localhost:8080/__cypress/runner/cypress_runner.js:5100:5)
10:31:37 AM:       at Async.drainQueues (http://localhost:8080/__cypress/runner/cypress_runner.js:4970:14)
10:31:37 AM:   From Your Spec Code:
10:31:37 AM:       at Context.eval (http://localhost:8080/__cypress/tests?p=cypress/integration/trips-page.js:7:12)

Link to the repo
N/A

Possibility to disable postBuild and run tests on preBuild exclusively

Is your feature request related to a problem? Please describe.
I'm running a NextJS site on Netlify using next-on-netlify. This builds my website in a weird way, with the final published assets in a configuration that I nor cypress can understand. This makes my tests fail. However, if I spin up NextJS' dev server and test with Cypress against that, all works swimmingly.

At this point, my project would build perfectly if I could somehow stop the postBuild from running and testing exclusively with the preBuild.

Describe the solution you'd like
It'd be great if I could pass an option to skipPostBuild: true or similar, and only run my tests preBuild.

Describe alternatives you've considered
I've opened an issue on next-on-netlify to also help build proper static output published assets.

`SIGSEGV` crash

Some builds are showing the following:

Error: The Test Runner unexpectedly exited via a exit event with signal SIGSEGV
Please search Cypress documentation for possible solutions:
https://on.cypress.io
Check if there is a GitHub issue describing this crash:
https://github.com/cypress-io/cypress/issues
Consider opening a new issue.
----------
Platform: linux (Ubuntu Linux - 16.04)
Cypress Version: 4.4.0

The build logs before that do not show anything wrong. The Cypress pass and just print the tests summary, with all tests passing.

Do you know where the SIGSEGV might come from?

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Ignored or Blocked

These are blocked by an existing closed PR and will not be recreated unless you click a checkbox below.

Detected dependencies

circleci
.circleci/config.yml
  • cypress 3.3.1
github-actions
.github/workflows/add-issue-to-triage-board.yml
.github/workflows/snyk_sca_scan.yaml
.github/workflows/snyk_static_analysis_scan.yaml
.github/workflows/triage_closed_issue_comment.yml
npm
package.json
  • got 11.8.6
  • cypress 13.13.0
  • netlify-cli 17.33.4

  • Check this box to trigger a request for Renovate to run again on this repository

Recommend Projects

  • React photo React

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

  • Vue.js photo Vue.js

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

  • Typescript photo Typescript

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

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

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

  • web

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

  • server

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

  • Machine learning

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

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

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

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.