Code Monkey home page Code Monkey logo

vscode-fundamentals's Introduction

This is the example project used for the Mike Works Visual Studio Code course.

Course outline and slides

About This Workshop

Visual Studio Code is a modern, lightweight and full-featured code editor, built from the ground up to suit the needs of web developers, and JavaScript developers in particular. In this course, we'll dive deep into using, customizing and extending it.

What will we do?

We’ll begin by taking a look at how we can get this fantastic tool to do as much heavy lifting for us as possible. Recent improvements have perfected the ability to attach directly to browsers and Node.js for a truly excellent debugging experience.

If you spend all day looking at and manipulating code, you may as well have your settings exactly the way you want them. We’ll go deep into customizations that’ll affect embedded feedback from static code analysis, the look and feel of the editor and study a few of the best and most useful extensions.

Because VS Code is built with web technology, it’s easy for JavaScript and TypeScript developers to customize and extend. We’ll build two extensions of our own, unlocking extra productivity when working on common tasks.

By coding along with this two day (split into four half-days) workshop, you will:

  • Get hands on experience with debugging in a variety of scenarios
  • Learn how to use launch configurations to execute programs run shell scripts
  • Unlock extra productivity by consolidating your terminal, debugger and editor into one tool
  • Learn about deep customization options that make a REAL difference in how you get your work done
  • Get a tour of plugins so powerful, after using them you’ll wonder how you ever lived without them!
  • Build your own β€œcode snippet” extension And more…

Setup

Please make sure you have the following software installed before arriving at the workshop or beginning the course.

General Packages

Please make sure you have the following general software installed

Required Library Version Range Notes
βœ” Node.js >= 8.0 nvm is highly recommended for managing multiple node versions on a single machine
βœ” Visual Studio Code >= 1.14 We'll be using several specific features of the VS Code editor. We can't force you to use it, but you'll miss out if you don't!
βœ” Yarn >= 0.24 An alternative to npm (if you are using nvm: brew install yarn --without-node, else use brew install yarn)
βœ” SQLite >= 3 An embedded relational database (hint: brew install sqlite3)

VS Code Extensions

Additionally, to take advantage of syntax hilighting, static code analysis and other editor features, you'll want to install the latest version of the following VS Code extensions

Required Extension Notes
βœ” sass-indented Syntax highlighting and code completion support for Sass stylesheets
βœ” eslint Static code analysis for JavaScript and JSX files
βœ” jest Syntax highlighting for Jest snapshot testing and in-editor test pass/fail statuses
βœ” Debugger for Chrome Allows us to attach to Chrome for debugging
vscode-icons Better file and folder icons
rest-client An in-editor REST client, so we can experiment with our API effortlessly

Global Node.js Packages

Make sure you have these npm packages installed globally. This can be done by running

npm install -g <package-name>
Required Library Version Range
βœ” babel-eslint ^7.0.0
βœ” eslint ^4.0.0
βœ” eslint-plugin-babel ^4.0.0
βœ” eslint-plugin-react ^7.1.0

Project setup

First, clone this project from Github

git clone https://github.com/mike-works/vscode-fundamentals vscode
cd vscode

Finally, while in the top-level folder of this project, download the and install this project's dependencies by running

yarn

To start the app, run

npm start

and you should see something on http://localhost:3000

Troubleshooting

What if I have an older version of Node.js?

You may run into problems during the workshop! An easy way to deal with this is to...

  • install nvm by running
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash

or Wget:

wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.4/install.sh | bash
  • then restart your terminal
  • then run
nvm install stable
nvm use stable
nvm alias default stable

What if I get an error like Please install sqlite3 package manually?

If you use OS X, it can be installed with homebew

brew install sqlite3

Windows and Linux users, please install the appropriate official release.

Files and Folders

This is a free-standing client/server system, including

  • A database
  • A REST API
  • A single-page-app web client
 Project
 β”‚
 β”œβ”€ client/            πŸ“± React web client
 β”‚  β”œβ”€ components/     πŸ“Š React components
 β”‚  β”‚  β”‚
 β”‚  β”‚  β”œβ”€ my-thing/index.jsx        Component implementation
 β”‚  β”‚  β”œβ”€ my-thing/index.test.js    Component tests
 β”‚  β”‚  └─ my-thing/styles.scss      Component styles
 β”‚  β”‚
 β”‚  β”œβ”€ routes/         πŸ” Top-level React components, each corresponding to a "page" in our app
 β”‚  β”œβ”€ sass/           πŸ’… Global Sass stylesheets
 β”‚  β”œβ”€ app.jsx         🎁 React "App" component  
 β”‚  β”œβ”€ index.js        🎬 Web client entry point
 β”‚  └─ index.ejs       πŸ“„ Template for web client index.html
 β”‚
 β”œβ”€ db/                πŸ’Ύ SQLite databases
 β”œβ”€ dist/              πŸ“¦ Web client development/production builds
 β”œβ”€ server/            πŸ›’ Node.js API to support the web client
 β”œβ”€ webpack/           βš™οΈ Build configuration
 └─ .vapid.json        πŸ” VAPID private and public keys

What are the pieces?

License

While the general license for this project is the BSD 3-clause, the exercises themselves are proprietary and are licensed on a per-individual basis, usually as a result of purchasing a ticket to a public workshop, or being a participant in a private training.

Here are some guidelines for things that are OK and NOT OK, based on our understanding of how these licenses work:

OK

  • Using everything in this project other than the exercises (or accompanying tests) to build a project used for your own free or commercial training material
  • Copying code from build scripts, configuration files, tests and development harnesses that are not part of the exercises specifically, for your own projects
  • As an owner of an individual license, using code from tests, exercises, or exercise solutions for your own non-training-related project.

NOT OK (without express written consent)

  • Using this project, or any subset of exercises contained within this project to run your own workshops
  • Writing a book that uses the code for these exercises
  • Recording a screencast that contains one or more of this project's exercises

Copyright

Β© 2018 Mike Works, Inc., All Rights Reserved

This material may not be used for workshops, training, or any other form of instructing or teaching developers, without express written consent

vscode-fundamentals's People

Contributors

dependabot-support avatar dependabot[bot] avatar dnmct avatar greenkeeper[bot] avatar lisaychuang avatar mike-north avatar renovate-bot avatar semantic-release-bot avatar ugam44 avatar

Stargazers

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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

vscode-fundamentals's Issues

Dependency deprecation warning: travis-deploy-once (npm)

On registry https://registry.npmjs.org/, the "latest" version (v5.0.11) of dependency travis-deploy-once has the following deprecation notice:

We recommend to use Travis Build Stages instead

Marking the latest version of an npm package as deprecated results in the entire package being considered deprecated, so contact the package author you think this is a mistake.

Affected package file(s): package.json

If you don't care about this, you can close this issue and not be warned about travis-deploy-once's deprecation again. If you would like to completely disable all future deprecation warnings then add the following to your config:

"suppressNotifications": ["deprecationWarningIssues"]

Cannot start the project

Hi,
After following the installation step and running NPM start, Webpack failed to compile.

I got this error message:

sequelize deprecated String based operators are now deprecated. Please use Symbol based operators for better security, read more at http://docs.sequelizejs.com/manual/tutorial/querying.html#operators node_modules/sequelize/lib/sequelize.js:242:13

Error: It looks like you're using an old webpack version without hooks support. If you're using awesome-script-loader with React storybooks consider upgrading @storybook/react to at least version 4.0.0-alpha.3

ERROR in ./client/index.tsx
Module build failed: Error: It looks like you're using an old webpack version without hooks support. If you're using awesome-script-loader with React storybooks consider upgrading @storybook/react to at least version 4.0.0-alpha.3

I am using NVM with
node: 8.9.4
npm: 6.2.0
I am using local install (npm i --save-dev) for eslint, babel-eslint, eslint-plugin-babel and eslint-plugin-react. all of them are to the latest version.

Any help would be appreciated.
Many thanks

Lots of errors during project setup

I am getting the following errors when trying to setup the project:

➜  vscode git:(master) npm update
npm WARN deprecated [email protected]: Browserslist 2 could fail on reading Browserslist >3.0 config used in other tools.
npm WARN deprecated [email protected]: XSS vulnerability fixed in v1.0.3
npm WARN prefer global [email protected] should be installed with -g

> [email protected] install /Users/sohus/Clones/vscode/node_modules/sqlite3
> node-pre-gyp install --fallback-to-build

[sqlite3] Success: "/Users/sohus/Clones/vscode/node_modules/sqlite3/lib/binding/node-v57-darwin-x64/node_sqlite3.node" is installed via remote

> [email protected] install /Users/sohus/Clones/vscode/node_modules/node-sass
> node scripts/install.js

module.js:487
    throw err;
    ^

Error: Cannot find module 'code-point-at'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/wide-align/node_modules/string-width/index.js:3:19)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] install: `node scripts/install.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/sohus/.npm/_logs/2018-08-06T13_05_23_531Z-debug.log
➜  vscode git:(master) npm start

> [email protected] start /Users/sohus/Clones/vscode
> node ./server/index.js

module.js:487
    throw err;
    ^

Error: Cannot find module 'has-ansi'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/webpack-bundle-analyzer/node_modules/chalk/index.js:5:15)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/webpack-bundle-analyzer/lib/viewer.js:102:16)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: `node ./server/index.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/sohus/.npm/_logs/2018-08-06T13_05_30_518Z-debug.log
➜  vscode git:(master)

Any idea what I am doing wrong?

After trying manually to fix some errors (e.g. node-sass module not found), when I launch with 'npm start' I get the following errors:

vscode git:(master) npm start

> [email protected] start /Users/sohus/Clones/vscode
> node ./server/index.js


[at-loader] Using [email protected] from typescript and "tsconfig.json" from /Users/sohus/Clones/vscode/tsconfig.json.


[at-loader] Checking started in a separate process...

[at-loader] Ok, 0.98 sec.
   239 modules

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/components/app-header/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/index.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/routes/home/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/components/app-footer/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/components/cart/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/components/side-drawer/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/components/orders/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/components/cart/cart-item/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/routes/home/category-row/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/components/grocery-item/styles.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./node_modules/css-loader!./node_modules/sass-loader/lib/loader.js?{"includePaths":["node_modules/muicss/lib/sass"]}!./client/sass/content-wrapper.scss
Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)

ERROR in ./client/routes/home/category-row/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/sass/content-wrapper.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/components/orders/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/components/cart/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/components/app-footer/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/components/app-header/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/components/side-drawer/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/routes/home/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/components/grocery-item/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/components/cart/cart-item/styles.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)

ERROR in ./client/index.scss
Module build failed: ModuleBuildError: Module build failed: Error: Cannot find module 'node-sass'
    at Function.Module._resolveFilename (module.js:485:15)
    at Function.Module._load (module.js:437:25)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at Object.<anonymous> (/Users/sohus/Clones/vscode/node_modules/sass-loader/lib/loader.js:3:14)
    at Module._compile (module.js:569:30)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:503:32)
    at tryModuleLoad (module.js:466:12)
    at Function.Module._load (module.js:458:3)
    at Module.require (module.js:513:17)
    at require (internal/module.js:11:18)
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:13:17)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:194:19)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:364:11
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:170:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:27:11)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:165:10)
    at /Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:173:18
    at loadLoader (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/loadLoader.js:36:3)
    at iteratePitchingLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:169:2)
    at runLoaders (/Users/sohus/Clones/vscode/node_modules/loader-runner/lib/LoaderRunner.js:362:2)
    at NormalModule.doBuild (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:181:3)
    at NormalModule.build (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModule.js:274:15)
    at Compilation.buildModule (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:149:10)
    at moduleFactory.create (/Users/sohus/Clones/vscode/node_modules/webpack/lib/Compilation.js:447:10)
    at factory (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:241:5)
    at applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:94:13)
    at /Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:268:11
    at NormalModuleFactory.params.normalModuleFactory.plugin (/Users/sohus/Clones/vscode/node_modules/webpack/lib/CompatibilityPlugin.js:52:5)
    at NormalModuleFactory.applyPluginsAsyncWaterfall (/Users/sohus/Clones/vscode/node_modules/tapable/lib/Tapable.js:272:13)
    at resolver (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:69:10)
    at process.nextTick (/Users/sohus/Clones/vscode/node_modules/webpack/lib/NormalModuleFactory.js:194:7)
    at _combinedTickCallback (internal/process/next_tick.js:95:7)
    at process._tickCallback (internal/process/next_tick.js:161:9)
webpack: Failed to compile.

Action required: Greenkeeper could not be activated 🚨

🚨 You need to enable Continuous Integration on all branches of this repository. 🚨

To enable Greenkeeper, you need to make sure that a commit status is reported on all branches. This is required by Greenkeeper because it uses your CI build statuses to figure out when to notify you about breaking changes.

Since we didn’t receive a CI status on the greenkeeper/initial branch, it’s possible that you don’t have CI set up yet. We recommend using Travis CI, but Greenkeeper will work with every other CI service as well.

If you have already set up a CI for this repository, you might need to check how it’s configured. Make sure it is set to run on all new branches. If you don’t want it to run on absolutely every branch, you can whitelist branches starting with greenkeeper/.

Once you have installed and configured CI on this repository correctly, you’ll need to re-trigger Greenkeeper’s initial pull request. To do this, please delete the greenkeeper/initial branch in this repository, and then remove and re-add this repository to the Greenkeeper App’s white list on Github. You'll find this list on your repo or organization’s settings page, under Installed GitHub Apps.

Error when running yarn

  • System Information

    • OS: Ubuntu 18.04.4 LTS
    • Node v8.10.0
    • npm 3.5.2
    • yarn 0.32
  • Describe the bug
    The following error occurs when running yarn at the project directory: ERROR: There are no scenarios; must have at least one.

  • To Reproduce
    Steps to reproduce the behavior:

  1. git clone https://github.com/mike-works/vscode-fundamentals vscode
  2. cd vscode
  3. yarn
  4. See error
  • Expected behavior
    No error, packages are downloaded

  • Additional context (optional)
    When I try to run npm install I get other error messages.

webpack: Failed to compile

At first, I run npm start and have error saying

Please install sqlite3 package manually

then I do all the steps on this https://github.com/mike-works/vscode-fundamentals/issues/21 and run npm start again and got this.

P/s: Sorry for my bad English.

https://github.com/sass/node-sass/releases/tag/v4.11.0
    at module.exports (F:\vscode-course\vscode\node_modules\node-sass\lib\binding.js:13:13)
    at Object.<anonymous> (F:\vscode-course\vscode\node_modules\node-sass\lib\index.js:14:35)
    at Module._compile (internal/modules/cjs/loader.js:936:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:947:10)
    at Module.load (internal/modules/cjs/loader.js:790:32)
    at Function.Module._load (internal/modules/cjs/loader.js:703:12)
    at Module.require (internal/modules/cjs/loader.js:830:19)
    at require (internal/modules/cjs/helpers.js:68:18)
    at Object.sassLoader (F:\vscode-course\vscode\node_modules\sass-loader\lib\loader.js:46:72)

ERROR in ./client/components/app-header/styles.scss (./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/lib/loader.js??ref--6-2!./client/components/app-header/styles.scss)
Module build failed (from ./node_modules/sass-loader/lib/loader.js):
Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (72)
For more information on which environments are supported please see:
https://github.com/sass/node-sass/releases/tag/v4.11.0
    at module.exports (F:\vscode-course\vscode\node_modules\node-sass\lib\binding.js:13:13)
    at Object.<anonymous> (F:\vscode-course\vscode\node_modules\node-sass\lib\index.js:14:35)
    at Module._compile (internal/modules/cjs/loader.js:936:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:947:10)
    at Module.load (internal/modules/cjs/loader.js:790:32)
    at Function.Module._load (internal/modules/cjs/loader.js:703:12)
    at Module.require (internal/modules/cjs/loader.js:830:19)
    at require (internal/modules/cjs/helpers.js:68:18)
    at Object.sassLoader (F:\vscode-course\vscode\node_modules\sass-loader\lib\loader.js:46:72)

ERROR in ./client/components/cart/cart-item/styles.scss (./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/lib/loader.js??ref--6-2!./client/components/cart/cart-item/styles.scss)
Module build failed (from ./node_modules/sass-loader/lib/loader.js):
Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (72)
For more information on which environments are supported please see:
https://github.com/sass/node-sass/releases/tag/v4.11.0
    at module.exports (F:\vscode-course\vscode\node_modules\node-sass\lib\binding.js:13:13)
    at Object.<anonymous> (F:\vscode-course\vscode\node_modules\node-sass\lib\index.js:14:35)
    at Module._compile (internal/modules/cjs/loader.js:936:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:947:10)
    at Module.load (internal/modules/cjs/loader.js:790:32)
    at Function.Module._load (internal/modules/cjs/loader.js:703:12)
    at Module.require (internal/modules/cjs/loader.js:830:19)
    at require (internal/modules/cjs/helpers.js:68:18)
    at Object.sassLoader (F:\vscode-course\vscode\node_modules\sass-loader\lib\loader.js:46:72)

ERROR in ./client/routes/home/category-row/styles.scss (./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/lib/loader.js??ref--6-2!./client/routes/home/category-row/styles.scss)
Module build failed (from ./node_modules/sass-loader/lib/loader.js):
Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (72)
For more information on which environments are supported please see:
https://github.com/sass/node-sass/releases/tag/v4.11.0
    at module.exports (F:\vscode-course\vscode\node_modules\node-sass\lib\binding.js:13:13)
    at Object.<anonymous> (F:\vscode-course\vscode\node_modules\node-sass\lib\index.js:14:35)
    at Module._compile (internal/modules/cjs/loader.js:936:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:947:10)
    at Module.load (internal/modules/cjs/loader.js:790:32)
    at Function.Module._load (internal/modules/cjs/loader.js:703:12)
    at Module.require (internal/modules/cjs/loader.js:830:19)
    at require (internal/modules/cjs/helpers.js:68:18)
    at Object.sassLoader (F:\vscode-course\vscode\node_modules\sass-loader\lib\loader.js:46:72)

ERROR in ./client/components/grocery-item/styles.scss (./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/lib/loader.js??ref--6-2!./client/components/grocery-item/styles.scss)
Module build failed (from ./node_modules/sass-loader/lib/loader.js):
Error: Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime (72)
For more information on which environments are supported please see:
https://github.com/sass/node-sass/releases/tag/v4.11.0
    at module.exports (F:\vscode-course\vscode\node_modules\node-sass\lib\binding.js:13:13)
    at Object.<anonymous> (F:\vscode-course\vscode\node_modules\node-sass\lib\index.js:14:35)
    at Module._compile (internal/modules/cjs/loader.js:936:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:947:10)
    at Module.load (internal/modules/cjs/loader.js:790:32)
    at Function.Module._load (internal/modules/cjs/loader.js:703:12)
    at Module.require (internal/modules/cjs/loader.js:830:19)
    at require (internal/modules/cjs/helpers.js:68:18)
    at Object.sassLoader (F:\vscode-course\vscode\node_modules\sass-loader\lib\loader.js:46:72)

ERROR in [at-loader] ./node_modules/@types/prop-types/node_modules/@types/react/index.d.ts:2307:19 
    TS2320: Interface 'Element' cannot simultaneously extend types 'ReactElement<any>' and 'ReactElement<any, any>'.
  Named property 'type' of types 'ReactElement<any>' and 'ReactElement<any, any>' are not identical.

ERROR in [at-loader] ./node_modules/@types/prop-types/node_modules/@types/react/index.d.ts:2308:19 
    TS2320: Interface 'ElementClass' cannot simultaneously extend types 'Component<any, {}, any>' and 'Component<any, {}, any>'.
  Named property 'props' of types 'Component<any, {}, any>' and 'Component<any, {}, any>' are not identical.

ERROR in [at-loader] ./node_modules/@types/prop-types/node_modules/@types/react/index.d.ts:2308:19 
    TS2320: Interface 'ElementClass' cannot simultaneously extend types 'Component<any, {}, any>' and 'Component<any, {}, any>'.
  Named property 'refs' of types 'Component<any, {}, any>' and 'Component<any, {}, any>' 
are not identical.

ERROR in [at-loader] ./node_modules/@types/prop-types/node_modules/@types/react/index.d.ts:2314:14 
    TS2300: Duplicate identifier 'LibraryManagedAttributes'.

ERROR in [at-loader] ./node_modules/@types/prop-types/node_modules/@types/react/index.d.ts:2325:19 
    TS2320: Interface 'IntrinsicClassAttributes<T>' cannot simultaneously extend types 'ClassAttributes<T>' and 'ClassAttributes<T>'.
  Named property 'ref' of types 'ClassAttributes<T>' and 'ClassAttributes<T>' are not identical.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2777:14
    TS2300: Duplicate identifier 'LibraryManagedAttributes'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2790:13
    TS2717: Subsequent property declarations must have the same type.  Property 'a' must 
be of type 'DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>', but here has type 'DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2791:13
    TS2717: Subsequent property declarations must have the same type.  Property 'abbr' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2792:13
    TS2717: Subsequent property declarations must have the same type.  Property 'address' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here 
has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2793:13
    TS2717: Subsequent property declarations must have the same type.  Property 'area' must be of type 'DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>', 
but here has type 'DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2794:13
    TS2717: Subsequent property declarations must have the same type.  Property 'article' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here 
has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2795:13
    TS2717: Subsequent property declarations must have the same type.  Property 'aside' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2796:13
    TS2717: Subsequent property declarations must have the same type.  Property 'audio' must be of type 'DetailedHTMLProps<AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>', but here has type 'DetailedHTMLProps<AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2797:13
    TS2717: Subsequent property declarations must have the same type.  Property 'b' must 
be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2798:13
    TS2717: Subsequent property declarations must have the same type.  Property 'base' must be of type 'DetailedHTMLProps<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>', 
but here has type 'DetailedHTMLProps<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2799:13
    TS2717: Subsequent property declarations must have the same type.  Property 'bdi' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2800:13
    TS2717: Subsequent property declarations must have the same type.  Property 'bdo' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2801:13
    TS2717: Subsequent property declarations must have the same type.  Property 'big' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2802:13
    TS2717: Subsequent property declarations must have the same type.  Property 'blockquote' must be of type 'DetailedHTMLProps<BlockquoteHTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<BlockquoteHTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2803:13
    TS2717: Subsequent property declarations must have the same type.  Property 'body' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>', but 
here has type 'DetailedHTMLProps<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>'.     

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2804:13
    TS2717: Subsequent property declarations must have the same type.  Property 'br' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLBRElement>, HTMLBRElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLBRElement>, HTMLBRElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2805:13
    TS2717: Subsequent property declarations must have the same type.  Property 'button' 
must be of type 'DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>', but here has type 'DetailedHTMLProps<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2806:13
    TS2717: Subsequent property declarations must have the same type.  Property 'canvas' 
must be of type 'DetailedHTMLProps<CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>', but here has type 'DetailedHTMLProps<CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2807:13
    TS2717: Subsequent property declarations must have the same type.  Property 'caption' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here 
has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2808:13
    TS2717: Subsequent property declarations must have the same type.  Property 'cite' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2809:13
    TS2717: Subsequent property declarations must have the same type.  Property 'code' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2810:13
    TS2717: Subsequent property declarations must have the same type.  Property 'col' must be of type 'DetailedHTMLProps<ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>', but here has type 'DetailedHTMLProps<ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2811:13
    TS2717: Subsequent property declarations must have the same type.  Property 'colgroup' must be of type 'DetailedHTMLProps<ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>', but here has type 'DetailedHTMLProps<ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2812:13
    TS2717: Subsequent property declarations must have the same type.  Property 'data' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2813:13
    TS2717: Subsequent property declarations must have the same type.  Property 'datalist' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2814:13
    TS2717: Subsequent property declarations must have the same type.  Property 'dd' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2815:13
    TS2717: Subsequent property declarations must have the same type.  Property 'del' must be of type 'DetailedHTMLProps<DelHTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<DelHTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2816:13
    TS2717: Subsequent property declarations must have the same type.  Property 'details' must be of type 'DetailedHTMLProps<DetailsHTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<DetailsHTMLAttributes<HTMLElement>, HTMLElement>'.    

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2817:13
    TS2717: Subsequent property declarations must have the same type.  Property 'dfn' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2818:13
    TS2717: Subsequent property declarations must have the same type.  Property 'dialog' 
must be of type 'DetailedHTMLProps<DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>', but here has type 'DetailedHTMLProps<DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2819:13
    TS2717: Subsequent property declarations must have the same type.  Property 'div' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2820:13
    TS2717: Subsequent property declarations must have the same type.  Property 'dl' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLDListElement>, HTMLDListElement>', but 
here has type 'DetailedHTMLProps<HTMLAttributes<HTMLDListElement>, HTMLDListElement>'.   

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2821:13
    TS2717: Subsequent property declarations must have the same type.  Property 'dt' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2822:13
    TS2717: Subsequent property declarations must have the same type.  Property 'em' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2823:13
    TS2717: Subsequent property declarations must have the same type.  Property 'embed' must be of type 'DetailedHTMLProps<EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>', but here has type 'DetailedHTMLProps<EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2824:13
    TS2717: Subsequent property declarations must have the same type.  Property 'fieldset' must be of type 'DetailedHTMLProps<FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>', but here has type 'DetailedHTMLProps<FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2825:13
    TS2717: Subsequent property declarations must have the same type.  Property 'figcaption' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2826:13
    TS2717: Subsequent property declarations must have the same type.  Property 'figure' 
must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2827:13
    TS2717: Subsequent property declarations must have the same type.  Property 'footer' 
must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2828:13
    TS2717: Subsequent property declarations must have the same type.  Property 'form' must be of type 'DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>', 
but here has type 'DetailedHTMLProps<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2829:13
    TS2717: Subsequent property declarations must have the same type.  Property 'h1' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', 
but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2830:13
    TS2717: Subsequent property declarations must have the same type.  Property 'h2' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', 
but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2831:13
    TS2717: Subsequent property declarations must have the same type.  Property 'h3' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', 
but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2832:13
    TS2717: Subsequent property declarations must have the same type.  Property 'h4' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', 
but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2833:13
    TS2717: Subsequent property declarations must have the same type.  Property 'h5' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', 
but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2834:13
    TS2717: Subsequent property declarations must have the same type.  Property 'h6' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>', 
but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2835:13
    TS2717: Subsequent property declarations must have the same type.  Property 'head' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>', but 
here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>'.     

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2836:13
    TS2717: Subsequent property declarations must have the same type.  Property 'header' 
must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2837:13
    TS2717: Subsequent property declarations must have the same type.  Property 'hgroup' 
must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2838:13
    TS2717: Subsequent property declarations must have the same type.  Property 'hr' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLHRElement>, HTMLHRElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLHRElement>, HTMLHRElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2839:13
    TS2717: Subsequent property declarations must have the same type.  Property 'html' must be of type 'DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>', 
but here has type 'DetailedHTMLProps<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2840:13
    TS2717: Subsequent property declarations must have the same type.  Property 'i' must 
be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2841:13
    TS2717: Subsequent property declarations must have the same type.  Property 'iframe' 
must be of type 'DetailedHTMLProps<IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>', but here has type 'DetailedHTMLProps<IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2842:13 
    TS2717: Subsequent property declarations must have the same type.  Property 'img' must be of type 'DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>', 
but here has type 'DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2843:13
    TS2717: Subsequent property declarations must have the same type.  Property 'input' must be of type 'DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>', but here has type 'DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2844:13
    TS2717: Subsequent property declarations must have the same type.  Property 'ins' must be of type 'DetailedHTMLProps<InsHTMLAttributes<HTMLModElement>, HTMLModElement>', but 
here has type 'DetailedHTMLProps<InsHTMLAttributes<HTMLModElement>, HTMLModElement>'.    

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2845:13
    TS2717: Subsequent property declarations must have the same type.  Property 'kbd' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2846:13
    TS2717: Subsequent property declarations must have the same type.  Property 'keygen' 
must be of type 'DetailedHTMLProps<KeygenHTMLAttributes<HTMLElement>, HTMLElement>', but 
here has type 'DetailedHTMLProps<KeygenHTMLAttributes<HTMLElement>, HTMLElement>'.       

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2847:13
    TS2717: Subsequent property declarations must have the same type.  Property 'label' must be of type 'DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>', but here has type 'DetailedHTMLProps<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2848:13
    TS2717: Subsequent property declarations must have the same type.  Property 'legend' 
must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2849:13
    TS2717: Subsequent property declarations must have the same type.  Property 'li' must be of type 'DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>', but here has type 'DetailedHTMLProps<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2850:13
    TS2717: Subsequent property declarations must have the same type.  Property 'link' must be of type 'DetailedHTMLProps<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>', 
but here has type 'DetailedHTMLProps<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2851:13
    TS2717: Subsequent property declarations must have the same type.  Property 'main' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2852:13
    TS2717: Subsequent property declarations must have the same type.  Property 'map' must be of type 'DetailedHTMLProps<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>', but 
here has type 'DetailedHTMLProps<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>'.    

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2853:13
    TS2717: Subsequent property declarations must have the same type.  Property 'mark' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2854:13
    TS2717: Subsequent property declarations must have the same type.  Property 'menu' must be of type 'DetailedHTMLProps<MenuHTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<MenuHTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2855:13
    TS2717: Subsequent property declarations must have the same type.  Property 'menuitem' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2856:13
    TS2717: Subsequent property declarations must have the same type.  Property 'meta' must be of type 'DetailedHTMLProps<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>', 
but here has type 'DetailedHTMLProps<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2857:13
    TS2717: Subsequent property declarations must have the same type.  Property 'meter' must be of type 'DetailedHTMLProps<MeterHTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<MeterHTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2858:13
    TS2717: Subsequent property declarations must have the same type.  Property 'nav' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2859:13
    TS2717: Subsequent property declarations must have the same type.  Property 'noindex' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here 
has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2860:13
    TS2717: Subsequent property declarations must have the same type.  Property 'noscript' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2861:13
    TS2717: Subsequent property declarations must have the same type.  Property 'object' 
must be of type 'DetailedHTMLProps<ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>', but here has type 'DetailedHTMLProps<ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2862:13
    TS2717: Subsequent property declarations must have the same type.  Property 'ol' must be of type 'DetailedHTMLProps<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>', but here has type 'DetailedHTMLProps<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2863:13
    TS2717: Subsequent property declarations must have the same type.  Property 'optgroup' must be of type 'DetailedHTMLProps<OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>', but here has type 'DetailedHTMLProps<OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2864:13
    TS2717: Subsequent property declarations must have the same type.  Property 'option' 
must be of type 'DetailedHTMLProps<OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>', but here has type 'DetailedHTMLProps<OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2865:13 
    TS2717: Subsequent property declarations must have the same type.  Property 'output' 
must be of type 'DetailedHTMLProps<OutputHTMLAttributes<HTMLElement>, HTMLElement>', but 
here has type 'DetailedHTMLProps<OutputHTMLAttributes<HTMLElement>, HTMLElement>'.       

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2866:13
    TS2717: Subsequent property declarations must have the same type.  Property 'p' must 
be of type 'DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2867:13
    TS2717: Subsequent property declarations must have the same type.  Property 'param' must be of type 'DetailedHTMLProps<ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>', but here has type 'DetailedHTMLProps<ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2868:13
    TS2717: Subsequent property declarations must have the same type.  Property 'picture' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here 
has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2869:13
    TS2717: Subsequent property declarations must have the same type.  Property 'pre' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLPreElement>, HTMLPreElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLPreElement>, HTMLPreElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2870:13
    TS2717: Subsequent property declarations must have the same type.  Property 'progress' must be of type 'DetailedHTMLProps<ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>', but here has type 'DetailedHTMLProps<ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2871:13
    TS2717: Subsequent property declarations must have the same type.  Property 'q' must 
be of type 'DetailedHTMLProps<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>', 
but here has type 'DetailedHTMLProps<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2872:13
    TS2717: Subsequent property declarations must have the same type.  Property 'rp' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2873:13
    TS2717: Subsequent property declarations must have the same type.  Property 'rt' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2874:13
    TS2717: Subsequent property declarations must have the same type.  Property 'ruby' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2875:13
    TS2717: Subsequent property declarations must have the same type.  Property 's' must 
be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2876:13
    TS2717: Subsequent property declarations must have the same type.  Property 'samp' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2877:13
    TS2717: Subsequent property declarations must have the same type.  Property 'script' 
must be of type 'DetailedHTMLProps<ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>', but here has type 'DetailedHTMLProps<ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2878:13
    TS2717: Subsequent property declarations must have the same type.  Property 'section' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here 
has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2879:13
    TS2717: Subsequent property declarations must have the same type.  Property 'select' 
must be of type 'DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>', but here has type 'DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2880:13
    TS2717: Subsequent property declarations must have the same type.  Property 'small' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2881:13
    TS2717: Subsequent property declarations must have the same type.  Property 'source' 
must be of type 'DetailedHTMLProps<SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>', but here has type 'DetailedHTMLProps<SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2882:13
    TS2717: Subsequent property declarations must have the same type.  Property 'span' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>', but 
here has type 'DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>'.     

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2883:13
    TS2717: Subsequent property declarations must have the same type.  Property 'strong' 
must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2884:13
    TS2717: Subsequent property declarations must have the same type.  Property 'style' must be of type 'DetailedHTMLProps<StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>', but here has type 'DetailedHTMLProps<StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2885:13
    TS2717: Subsequent property declarations must have the same type.  Property 'sub' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2886:13
    TS2717: Subsequent property declarations must have the same type.  Property 'summary' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here 
has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2887:13
    TS2717: Subsequent property declarations must have the same type.  Property 'sup' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2888:13
    TS2717: Subsequent property declarations must have the same type.  Property 'table' must be of type 'DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>', but here has type 'DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2889:13
    TS2717: Subsequent property declarations must have the same type.  Property 'tbody' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2890:13
    TS2717: Subsequent property declarations must have the same type.  Property 'td' must be of type 'DetailedHTMLProps<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>', but here has type 'DetailedHTMLProps<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2891:13
    TS2717: Subsequent property declarations must have the same type.  Property 'textarea' must be of type 'DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>', but here has type 'DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2892:13
    TS2717: Subsequent property declarations must have the same type.  Property 'tfoot' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2893:13
    TS2717: Subsequent property declarations must have the same type.  Property 'th' must be of type 'DetailedHTMLProps<ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>', but here has type 'DetailedHTMLProps<ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2894:13
    TS2717: Subsequent property declarations must have the same type.  Property 'thead' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2895:13
    TS2717: Subsequent property declarations must have the same type.  Property 'time' must be of type 'DetailedHTMLProps<TimeHTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<TimeHTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2896:13
    TS2717: Subsequent property declarations must have the same type.  Property 'title' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>'.
ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2897:13
    TS2717: Subsequent property declarations must have the same type.  Property 'tr' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2898:13
    TS2717: Subsequent property declarations must have the same type.  Property 'track' must be of type 'DetailedHTMLProps<TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>', but here has type 'DetailedHTMLProps<TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2899:13
    TS2717: Subsequent property declarations must have the same type.  Property 'u' must 
be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2900:13
    TS2717: Subsequent property declarations must have the same type.  Property 'ul' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLUListElement>, HTMLUListElement>', but 
here has type 'DetailedHTMLProps<HTMLAttributes<HTMLUListElement>, HTMLUListElement>'.   

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2901:13
    TS2717: Subsequent property declarations must have the same type.  Property '"var"' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2902:13
    TS2717: Subsequent property declarations must have the same type.  Property 'video' must be of type 'DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>', but here has type 'DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2903:13
    TS2717: Subsequent property declarations must have the same type.  Property 'wbr' must be of type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>', but here has 
type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2904:13
    TS2717: Subsequent property declarations must have the same type.  Property 'webview' must be of type 'DetailedHTMLProps<WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>', but here has type 'DetailedHTMLProps<WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2907:13
    TS2717: Subsequent property declarations must have the same type.  Property 'svg' must be of type 'SVGProps<SVGSVGElement>', but here has type 'SVGProps<SVGSVGElement>'.     

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2909:13
    TS2717: Subsequent property declarations must have the same type.  Property 'animate' must be of type 'SVGProps<SVGElement>', but here has type 'SVGProps<SVGElement>'.       

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2911:13
    TS2717: Subsequent property declarations must have the same type.  Property 'animateTransform' must be of type 'SVGProps<SVGElement>', but here has type 'SVGProps<SVGElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2912:13
    TS2717: Subsequent property declarations must have the same type.  Property 'circle' 
must be of type 'SVGProps<SVGCircleElement>', but here has type 'SVGProps<SVGCircleElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2913:13
    TS2717: Subsequent property declarations must have the same type.  Property 'clipPath' must be of type 'SVGProps<SVGClipPathElement>', but here has type 'SVGProps<SVGClipPathElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2914:13
    TS2717: Subsequent property declarations must have the same type.  Property 'defs' must be of type 'SVGProps<SVGDefsElement>', but here has type 'SVGProps<SVGDefsElement>'.  

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2915:13
    TS2717: Subsequent property declarations must have the same type.  Property 'desc' must be of type 'SVGProps<SVGDescElement>', but here has type 'SVGProps<SVGDescElement>'.  

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2916:13
    TS2717: Subsequent property declarations must have the same type.  Property 'ellipse' must be of type 'SVGProps<SVGEllipseElement>', but here has type 'SVGProps<SVGEllipseElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2917:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feBlend' must be of type 'SVGProps<SVGFEBlendElement>', but here has type 'SVGProps<SVGFEBlendElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2918:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feColorMatrix' must be of type 'SVGProps<SVGFEColorMatrixElement>', but here has type 'SVGProps<SVGFEColorMatrixElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2919:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feComponentTransfer' must be of type 'SVGProps<SVGFEComponentTransferElement>', but here has type 'SVGProps<SVGFEComponentTransferElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2920:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feComposite' must be of type 'SVGProps<SVGFECompositeElement>', but here has type 'SVGProps<SVGFECompositeElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2921:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feConvolveMatrix' must be of type 'SVGProps<SVGFEConvolveMatrixElement>', but here has type 'SVGProps<SVGFEConvolveMatrixElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2922:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feDiffuseLighting' must be of type 'SVGProps<SVGFEDiffuseLightingElement>', but here has type 'SVGProps<SVGFEDiffuseLightingElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2923:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feDisplacementMap' must be of type 'SVGProps<SVGFEDisplacementMapElement>', but here has type 'SVGProps<SVGFEDisplacementMapElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2924:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feDistantLight' must be of type 'SVGProps<SVGFEDistantLightElement>', but here has type 'SVGProps<SVGFEDistantLightElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2925:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feFlood' must be of type 'SVGProps<SVGFEFloodElement>', but here has type 'SVGProps<SVGFEFloodElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2926:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feFuncA' must be of type 'SVGProps<SVGFEFuncAElement>', but here has type 'SVGProps<SVGFEFuncAElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2927:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feFuncB' must be of type 'SVGProps<SVGFEFuncBElement>', but here has type 'SVGProps<SVGFEFuncBElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2928:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feFuncG' must be of type 'SVGProps<SVGFEFuncGElement>', but here has type 'SVGProps<SVGFEFuncGElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2929:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feFuncR' must be of type 'SVGProps<SVGFEFuncRElement>', but here has type 'SVGProps<SVGFEFuncRElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2930:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feGaussianBlur' must be of type 'SVGProps<SVGFEGaussianBlurElement>', but here has type 'SVGProps<SVGFEGaussianBlurElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2931:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feImage' must be of type 'SVGProps<SVGFEImageElement>', but here has type 'SVGProps<SVGFEImageElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2932:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feMerge' must be of type 'SVGProps<SVGFEMergeElement>', but here has type 'SVGProps<SVGFEMergeElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2933:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feMergeNode' must be of type 'SVGProps<SVGFEMergeNodeElement>', but here has type 'SVGProps<SVGFEMergeNodeElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2934:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feMorphology' must be of type 'SVGProps<SVGFEMorphologyElement>', but here has type 'SVGProps<SVGFEMorphologyElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2935:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feOffset' must be of type 'SVGProps<SVGFEOffsetElement>', but here has type 'SVGProps<SVGFEOffsetElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2936:13
    TS2717: Subsequent property declarations must have the same type.  Property 'fePointLight' must be of type 'SVGProps<SVGFEPointLightElement>', but here has type 'SVGProps<SVGFEPointLightElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2937:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feSpecularLighting' must be of type 'SVGProps<SVGFESpecularLightingElement>', but here has type 'SVGProps<SVGFESpecularLightingElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2938:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feSpotLight' must be of type 'SVGProps<SVGFESpotLightElement>', but here has type 'SVGProps<SVGFESpotLightElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2939:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feTile' 
must be of type 'SVGProps<SVGFETileElement>', but here has type 'SVGProps<SVGFETileElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2940:13
    TS2717: Subsequent property declarations must have the same type.  Property 'feTurbulence' must be of type 'SVGProps<SVGFETurbulenceElement>', but here has type 'SVGProps<SVGFETurbulenceElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2941:13
    TS2717: Subsequent property declarations must have the same type.  Property 'filter' 
must be of type 'SVGProps<SVGFilterElement>', but here has type 'SVGProps<SVGFilterElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2942:13
    TS2717: Subsequent property declarations must have the same type.  Property 'foreignObject' must be of type 'SVGProps<SVGForeignObjectElement>', but here has type 'SVGProps<SVGForeignObjectElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2943:13
    TS2717: Subsequent property declarations must have the same type.  Property 'g' must 
be of type 'SVGProps<SVGGElement>', but here has type 'SVGProps<SVGGElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2944:13
    TS2717: Subsequent property declarations must have the same type.  Property 'image' must be of type 'SVGProps<SVGImageElement>', but here has type 'SVGProps<SVGImageElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2945:13
    TS2717: Subsequent property declarations must have the same type.  Property 'line' must be of type 'SVGProps<SVGLineElement>', but here has type 'SVGProps<SVGLineElement>'.  

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2946:13
    TS2717: Subsequent property declarations must have the same type.  Property 'linearGradient' must be of type 'SVGProps<SVGLinearGradientElement>', but here has type 'SVGProps<SVGLinearGradientElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2947:13
    TS2717: Subsequent property declarations must have the same type.  Property 'marker' 
must be of type 'SVGProps<SVGMarkerElement>', but here has type 'SVGProps<SVGMarkerElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2948:13
    TS2717: Subsequent property declarations must have the same type.  Property 'mask' must be of type 'SVGProps<SVGMaskElement>', but here has type 'SVGProps<SVGMaskElement>'.  

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2949:13
    TS2717: Subsequent property declarations must have the same type.  Property 'metadata' must be of type 'SVGProps<SVGMetadataElement>', but here has type 'SVGProps<SVGMetadataElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2951:13
    TS2717: Subsequent property declarations must have the same type.  Property 'path' must be of type 'SVGProps<SVGPathElement>', but here has type 'SVGProps<SVGPathElement>'.  

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2952:13
    TS2717: Subsequent property declarations must have the same type.  Property 'pattern' must be of type 'SVGProps<SVGPatternElement>', but here has type 'SVGProps<SVGPatternElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2953:13
    TS2717: Subsequent property declarations must have the same type.  Property 'polygon' must be of type 'SVGProps<SVGPolygonElement>', but here has type 'SVGProps<SVGPolygonElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2954:13
    TS2717: Subsequent property declarations must have the same type.  Property 'polyline' must be of type 'SVGProps<SVGPolylineElement>', but here has type 'SVGProps<SVGPolylineElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2955:13
    TS2717: Subsequent property declarations must have the same type.  Property 'radialGradient' must be of type 'SVGProps<SVGRadialGradientElement>', but here has type 'SVGProps<SVGRadialGradientElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2956:13
    TS2717: Subsequent property declarations must have the same type.  Property 'rect' must be of type 'SVGProps<SVGRectElement>', but here has type 'SVGProps<SVGRectElement>'.  

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2957:13
    TS2717: Subsequent property declarations must have the same type.  Property 'stop' must be of type 'SVGProps<SVGStopElement>', but here has type 'SVGProps<SVGStopElement>'.  

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2958:13
    TS2717: Subsequent property declarations must have the same type.  Property 'switch' 
must be of type 'SVGProps<SVGSwitchElement>', but here has type 'SVGProps<SVGSwitchElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2959:13
    TS2717: Subsequent property declarations must have the same type.  Property 'symbol' 
must be of type 'SVGProps<SVGSymbolElement>', but here has type 'SVGProps<SVGSymbolElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2960:13
    TS2717: Subsequent property declarations must have the same type.  Property 'text' must be of type 'SVGProps<SVGTextElement>', but here has type 'SVGProps<SVGTextElement>'.  

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2961:13
    TS2717: Subsequent property declarations must have the same type.  Property 'textPath' must be of type 'SVGProps<SVGTextPathElement>', but here has type 'SVGProps<SVGTextPathElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2962:13
    TS2717: Subsequent property declarations must have the same type.  Property 'tspan' must be of type 'SVGProps<SVGTSpanElement>', but here has type 'SVGProps<SVGTSpanElement>'.

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2963:13
    TS2717: Subsequent property declarations must have the same type.  Property 'use' must be of type 'SVGProps<SVGUseElement>', but here has type 'SVGProps<SVGUseElement>'.     

ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:2964:13
    TS2717: Subsequent property declarations must have the same type.  Property 'view' must be of type 'SVGProps<SVGViewElement>', but here has type 'SVGProps<SVGViewElement>'.  

ERROR in [at-loader] ./node_modules/@types/react-dom/index.d.ts:90:18
    TS2314: Generic type 'ReactElement<P>' requires 1 type argument(s).

ERROR in [at-loader] ./node_modules/@types/koa-router/index.d.ts:63:13
    TS2694: Namespace '"F:/vscode-course/vscode/node_modules/@types/koa-bodyparser/node_modules/@types/koa/index.d.ts"' has no exported member 'ParameterizedContext'.

ERROR in [at-loader] ./node_modules/@types/koa-router/index.d.ts:70:9
    TS2315: Type 'Middleware' is not generic.

ERROR in [at-loader] ./node_modules/@types/koa-static/index.d.ts:22:61
    TS2315: Type 'Middleware' is not generic.
webpack: Failed to compile.

yarn command doesn't work on Windows 10: Here's a fix.

Yarn fails with an MSBuild error: MSB4132. It is looking for v2.0 of the build tools but only v4.0 is found.

To solve this problem, you need to do a couple of things:

  1. Install node's windows-build-tools: npm install -g windows-build-tools. You will need to do this from an elevated prompt. Some Microsoft documentation on the issue says to do it from an elevated PowerShell prompt. This will take a while, so be patient.
  2. Once finished, close your non-elevated terminal (if you have it open already) and re-open it.
  3. From your normal user terminal (doesn't need to be admin), set the msvs_version config setting with yarn config set msvs_version 2015. The npm command above sets it for npm but yarn needs it as well.

Once I did these things, I was able to complete the yarn command, run npm start successfully, and then see the Frontend Grocer site at http://localhost:3000/

Problem with connecting to SQLite trying to run "npm start"

I can connect fine with sqlite3 from the command line.but get this:

/Users/owendall/Desktop/github-applications/fem/vscode-fundamentals/node_modules/sequelize/lib/dialects/sqlite/connection-manager.js:31
        throw new Error('Please install sqlite3 package manually');
        ^

Error: Please install sqlite3 package manually
    at new ConnectionManager (/Users/owendall/Desktop/github-applications/fem/vscode-fundamentals/node_modules/sequelize/lib/dialects/sqlite/connection-manager.js:31:15)
    at new SqliteDialect (/Users/owendall/Desktop/github-applications/fem/vscode-fundamentals/node_modules/sequelize/lib/dialects/sqlite/index.js:14:30)
    at new Sequelize (/Users/owendall/Desktop/github-applications/fem/vscode-fundamentals/node_modules/sequelize/lib/sequelize.js:228:20)
    at fs.exists (/Users/owendall/Desktop/github-applications/fem/vscode-fundamentals/server/db.js:21:23)
    at FSReqWrap.cb [as oncomplete] (fs.js:312:19)

I updated SQLite3, but no difference...

Suggestions?

Dependency deprecation warning: @types/commander (nvm)

On registry https://registry.npmjs.org/, the "latest" version (v2.12.2) of dependency @types/commander has the following deprecation notice:

This is a stub types definition for commander (https://github.com/tj/commander.js). commander provides its own type definitions, so you don't need @types/commander installed!

Marking the latest version of an npm package as deprecated results in the entire package being considered deprecated, so contact the package author you think this is a mistake.

Please take the actions necessary to rename or substitute this deprecated package and commit to your base branch. If you wish to ignore this deprecation warning and continue using @types/commander as-is, please add it to your ignoreDeps array in Renovate config before closing this issue, otherwise another issue will be recreated the next time Renovate runs.

Affected package file(s): package.json

Can't successfully start the project up due to TypeScript errors

  • System Information
    • Browser type and version: Chrome 75.0.3770.100
    • MacOS 10.14.5
    • zsh 5.7.1
    • Node 8.15.0

Start up log showing first 2 (of 180) TS errors

➜  vscode-fundamentals git:(master) npm start

> @mike-works/[email protected] start /Users/adriangray/work/fem/vscode-fundamentals
> node ./server/index.js

sequelize deprecated String based operators are now deprecated. Please use Symbol based operators for better security, read more at http://docs.sequelizejs.com/manual/tutorial/querying.html#operators node_modules/sequelize/lib/sequelize.js:242:13
(node:37187) DeprecationWarning: Tapable.plugin is deprecated. Use new API on `.hooks` instead
β„Ή ο½’atlο½£: Using [email protected] from typescript
β„Ή ο½’atlο½£: Using tsconfig.json from /Users/adriangray/work/fem/vscode-fundamentals/tsconfig.json
β„Ή ο½’atlο½£: Checking started in a separate process...
βœ– ο½’atlο½£: Checking finished with 180 errors
   68 modules

ERROR in [at-loader] ./node_modules/@types/prop-types/node_modules/@types/react/index.d.ts:2307:19
    TS2320: Interface 'Element' cannot simultaneously extend types 'ReactElement<any>' and 'ReactElement<any, any>'.
  Named property 'type' of types 'ReactElement<any>' and 'ReactElement<any, any>' are not identical.

ERROR in [at-loader] ./node_modules/@types/prop-types/node_modules/@types/react/index.d.ts:2308:19
    TS2320: Interface 'ElementClass' cannot simultaneously extend types 'Component<any, {}, any>' and 'Component<any, {}, any>'.
  Named property 'props' of types 'Component<any, {}, any>' and 'Component<any, {}, any>' are not identical.
  • Describe the bug
    Everything installs as expected, but the build fails with Typescript errors.

  • Screenshots (optional)
    errors

Dependency deprecation warning: @types/commander (npm)

On registry https://registry.npmjs.org/, the "latest" version (v2.12.2) of dependency @types/commander has the following deprecation notice:

This is a stub types definition for commander (https://github.com/tj/commander.js). commander provides its own type definitions, so you don't need @types/commander installed!

Marking the latest version of an npm package as deprecated results in the entire package being considered deprecated, so contact the package author you think this is a mistake.

Affected package file(s): package.json

If you don't care about this, you can close this issue and not be warned about @types/commander's deprecation again. If you would like to completely disable all future deprecation warnings then add the following to your config:

"suppressNotifications": ["deprecationWarningIssues"]

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.

Webpack fails to compile

  • System Information

    • Browser type and version - Chrome 80.0.3987.149
    • OS type and version - OS Sierra 10.12.6
    • WINDOWS: be sure to indicate which terminal you're using -- (i.e., cmd.exe, powershell, git- bash, cygwin, Ubuntu via windows subsystem for linux, etc...)
    • Node version 12.10.0
    • Any error messages that may be in the console where you ran npm start -refer to the attached screenshots
    • Any error messages in the JS console
  • Describe the bug
    Webpack does not compile and outputs a number of errors to the console referencing react and koa-router. Refer to the attached screenshots.

  • To Reproduce
    Steps to reproduce the behavior:
    Follow the setup instructions for the course.

  • Expected behavior
    Webpack to compile successfully and I should be able to view the application on localhost port 3000

  • Screenshots (optional)
    Screen Shot 2020-05-13 at 16 45 05
    Screen Shot 2020-05-13 at 16 45 36

  • Additional context (optional)
    Add any other context about the problem here.

Error when using yarn to install dependencies

When I'm trying to install dependencies using the command "yarn", I get this message:

error An unexpected error occurred: "npm/@types%2fkoa-static: Invalid URI "npm/@types%2fkoa-static"".

Sample from the "yarn-error.log" :

Arguments:
/Users/atanasoi/.nvm/versions/node/v8.9.1/bin/node /Users/atanasoi/.nvm/versions/node/v8.9.1/bin/yarn

PATH:
/Users/atanasoi/.nvm/versions/node/v8.9.1/bin:/usr/local/opt/openssl/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/opt/openssl/bin

Yarn version:
1.3.2

Node version:
8.9.1

Platform:
darwin x64

koa-static@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/koa-static/-/koa-static-4.0.1.tgz#b99521ed848d7adb79acae9c824d8d8277a8c4d5"
dependencies:
debug "^2.6.8"
koa-send "^4.1.0"

Trace:
Error: npm/@types%2fkoa-static: Invalid URI "npm/@types%2fkoa-static"
at Request.module.exports.Request.init (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:123173:31)
at new Request (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:123027:8)
at request (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:121625:10)
at RequestManager.execute (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:62141:17)
at RequestManager.shiftQueue (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:62168:10)
at promise.default (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:61947:12)
at new Promise ()
at new F (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:29389:28)
at RequestManager.request (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:61945:21)
at NpmRegistry.request (/Users/atanasoi/.nvm/versions/node/v8.9.1/lib/node_modules/yarn/lib/cli.js:30362:32)

package and package-lock.json mismatch

System Information

OS: Linux parrot
npm Version: 6.13.4
node Version: v8.17.0

Bug

After latest pull today got this error when I install modules using npm ci. The reason is package and package-lock.json are not sync because package-lock.json is added to .gitignore. As I know it's best practice to always commit package.json and package-lock.json both files to repo.

Error Log

error Invalid: lock file's [email protected] does not satisfy [email protected]
error Invalid: lock file's @types/[email protected] does not satisfy @types/[email protected]
error Invalid: lock file's @types/[email protected] does not satisfy @types/[email protected]
error Invalid: lock file's @types/[email protected] does not satisfy @types/[email protected]
error Invalid: lock file's [email protected] does not satisfy [email protected]

Solution

Remove package-lock.json from .gitignore file and recommit the both sync files.

Yarn command not found

  • System Information
    • Windows 10
    • WINDOWS: git bash, vs code bash terminal
    • Node version: v14.17.3
    • Yarn version: 1.22.5

I am using yarn in my project. I have installed yarn globally. when I try to run yarn with commands such as nodemon, it gives command not found error. The exact error is

/usr/bin/bash: C:UsersusernameDownloadsprojectnamenode_modules.binnodemon: command not found

This is the command I am trying to run
yarn nodemon --watch .env --watch ''\''client/*.config.js'\''' --watch ''\'''\''' --watch server --ext ts,tsx,js,json --delay 1 --exec yarn ts-node --project server/tsconfig.json --transpile-only server/index.ts

which converts to
C:\Users\username\Downloads\projectname\node_modules\.bin\nodemon --watch .env --watch 'client/*.config.js' --watch '' --watch server --ext ts,tsx,js,json --delay 1 --exec yarn ts-node --project server/tsconfig.json --transpile-only server/index.ts

Dependency Dashboard

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

Repository problems

These problems occurred while renovating this repository. View logs.

  • WARN: Using npm packages for Renovate presets is now deprecated. Please migrate to repository-based presets instead.

Warning

These dependencies are deprecated:

Datasource Name Replacement PR?
npm @types/commander Unavailable
npm @types/csv-parse Unavailable
npm extract-text-webpack-plugin Unavailable
npm node-sass Unavailable
npm travis-deploy-once Unavailable
npm tslint Unavailable
npm tslint-microsoft-contrib Unavailable

Rate-Limited

These updates are currently rate-limited. Click on a checkbox below to force their creation now.

  • chore(deps): pin dependencies
  • chore(deps): update dependency @types/debug to v4.1.12
  • chore(deps): update dependency @types/extract-text-webpack-plugin to v3.0.10
  • chore(deps): update dependency @types/html-webpack-plugin to v3.2.9
  • chore(deps): update dependency @types/koa-router to v7.4.8
  • chore(deps): update dependency @types/koa-static to v4.0.4
  • chore(deps): update dependency @types/sequelize to v4.28.20
  • chore(deps): update dependency @types/webpack to v4.41.39
  • chore(deps): update dependency @types/webpack-bundle-analyzer to v3.9.9
  • chore(deps): update react monorepo (patch) (@types/react, @types/react-dom)
  • fix(deps): update dependency debug to v4.3.7
  • fix(deps): update dependency koa to v2.13.4 (koa, @types/koa)
  • chore(deps): update dependency @types/csv-parse to v1.2.2
  • chore(deps): update dependency webpack to v4.47.0
  • fix(deps): update dependency koa to v2.15.3 (koa, @types/koa)
  • fix(deps): update dependency koa-bodyparser to v4.4.1
  • chore(deps): update dependency css-loader to v7
  • chore(deps): update dependency node to v20
  • chore(deps): update dependency nodemon to v3
  • chore(deps): update dependency sass-loader to v16
  • chore(deps): update dependency source-map-loader to v5
  • chore(deps): update dependency style-loader to v4
  • chore(deps): update dependency webpack-cli to v5
  • fix(deps): update dependency commander to v12
  • fix(deps): update dependency koa-router to v12
  • fix(deps): update dependency sequelize to v6
  • πŸ” Create all rate-limited PRs at once πŸ”

Edited/Blocked

These updates have been manually edited so Renovate will no longer make changes. To discard all commits and start over, click on a checkbox.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

npm
package.json
  • babel-runtime 6.26.0
  • commander 2.20.3
  • debug 4.3.2
  • koa 2.13.1
  • koa-bodyparser 4.3.0
  • koa-mount 4.0.0
  • koa-router 7.4.0
  • koa-static 5.0.0
  • sequelize 4.44.4
  • sqlite3 4.2.0
  • @mike-works/js-lib-renovate-config 2.0.0
  • @mike-works/workshop-semantic-release-config 1.0.0
  • @types/commander 2.12.2
  • @types/csv-parse 1.1.12
  • @types/debug 4.1.6
  • @types/extract-text-webpack-plugin 3.0.6
  • @types/html-webpack-plugin 3.2.6
  • @types/koa 2.13.4
  • @types/koa-bodyparser 5.0.2
  • @types/koa-mount 3.0.1
  • @types/koa-router 7.4.4
  • @types/koa-static 4.0.2
  • @types/react 16.14.11
  • @types/react-dom 16.9.14
  • @types/sequelize 4.28.10
  • @types/webpack 4.41.30
  • @types/webpack-bundle-analyzer 3.9.4
  • awesome-typescript-loader 5.2.1
  • css-loader 2.1.1
  • extract-text-webpack-plugin 3.0.2
  • file-loader 3.0.1
  • html-webpack-plugin 3.2.0
  • koa-webpack-middleware 1.0.7
  • muicss 0.10.3
  • node-sass 4.14.1
  • nodemon 1.19.4
  • react 16.14.0
  • react-dom 16.14.0
  • react-test-renderer 16.14.0
  • sass-loader 7.3.1
  • semantic-release 15.14.0
  • source-map-loader 0.2.4
  • style-loader 0.23.1
  • travis-deploy-once 5.0.11
  • ts-node 8.10.2
  • tslint 5.12.1
  • tslint-microsoft-contrib 6.2.0
  • typescript 3.3.4000
  • webpack 4.46.0
  • webpack-bundle-analyzer 3.9.0
  • webpack-cli 3.3.12
  • node >= 8.4.0
nvm
.nvmrc
  • node 8.17.0
travis
.travis.yml
  • node 10
  • node 8

  • 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.