Merge pull request #3149 from balena-io/update-dev-dependencies

Update dev dependencies
This commit is contained in:
Alexis Svinartchouk 2020-05-14 11:53:04 +02:00 committed by GitHub
commit fb1a360360
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3469 additions and 4159 deletions

View File

@ -141,24 +141,20 @@ export function DriveSelectorModal({ close }: { close: () => void }) {
return ( return (
<Modal <Modal
className="modal-drive-selector-modal" className="modal-drive-selector-modal"
title="Select a Drive" titleElement="Select a Drive"
done={close} done={close}
action="Continue" action="Continue"
style={{
padding: '20px 30px 11px 30px',
}}
primaryButtonProps={{ primaryButtonProps={{
primary: !hasStatus, primary: !hasStatus,
warning: hasStatus, warning: hasStatus,
}} }}
> >
<div>
<ul <ul
style={{ style={{
height: '250px', height: '210px',
overflowX: 'hidden', overflowX: 'hidden',
overflowY: 'auto', overflowY: 'auto',
padding: '0', padding: '0px',
}} }}
> >
{_.map(drives, (drive, index) => { {_.map(drives, (drive, index) => {
@ -252,7 +248,6 @@ export function DriveSelectorModal({ close }: { close: () => void }) {
</li> </li>
)} )}
</ul> </ul>
</div>
{missingDriversModal.drive !== undefined && ( {missingDriversModal.drive !== undefined && (
<Modal <Modal

7396
npm-shrinkwrap.json generated

File diff suppressed because it is too large Load Diff

View File

@ -33,8 +33,7 @@
}, },
"lint-staged": { "lint-staged": {
"./**/*.{ts,tsx}": [ "./**/*.{ts,tsx}": [
"make lint-ts", "make lint-ts"
"git add"
] ]
}, },
"author": "Balena Inc. <hello@etcher.io>", "author": "Balena Inc. <hello@etcher.io>",
@ -86,33 +85,31 @@
"@types/bluebird": "^3.5.30", "@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.7", "@types/chai": "^4.2.7",
"@types/mime-types": "^2.1.0", "@types/mime-types": "^2.1.0",
"@types/mocha": "^5.2.7", "@types/mocha": "^7.0.2",
"@types/node": "^12.12.24", "@types/node": "^12.12.39",
"@types/node-ipc": "^9.1.2", "@types/node-ipc": "^9.1.2",
"@types/react-dom": "^16.8.4", "@types/react-dom": "^16.8.4",
"@types/request": "^2.48.4", "@types/request": "^2.48.4",
"@types/semver": "^6.2.0", "@types/semver": "^7.1.0",
"@types/sinon": "^7.5.1", "@types/sinon": "^9.0.0",
"@types/tmp": "^0.1.0", "@types/tmp": "^0.2.0",
"@types/webpack-node-externals": "^1.7.0", "@types/webpack-node-externals": "^1.7.0",
"chai": "^4.2.0", "chai": "^4.2.0",
"chalk": "^1.1.3",
"electron": "7.1.14", "electron": "7.1.14",
"electron-builder": "^22.1.0", "electron-builder": "^22.1.0",
"electron-mocha": "^8.2.0", "electron-mocha": "^8.2.0",
"electron-notarize": "^0.1.1", "electron-notarize": "^0.3.0",
"html-loader": "^0.5.1", "husky": "^4.2.5",
"husky": "^3.1.0", "lint-staged": "^10.2.2",
"lint-staged": "^9.5.0",
"mocha": "^7.0.1", "mocha": "^7.0.1",
"node-gyp": "^3.8.0", "node-gyp": "^6.1.0",
"node-sass": "^4.12.0", "node-sass": "^4.12.0",
"omit-deep-lodash": "1.1.4", "omit-deep-lodash": "1.1.4",
"sass-lint": "^1.12.1", "sass-lint": "^1.12.1",
"simple-progress-webpack-plugin": "^1.1.2", "simple-progress-webpack-plugin": "^1.1.2",
"sinon": "^8.0.4", "sinon": "^9.0.2",
"spectron": "^9.0.0", "spectron": "^9.0.0",
"ts-loader": "^6.0.4", "ts-loader": "^7.0.4",
"ts-node": "^8.3.0", "ts-node": "^8.3.0",
"typescript": "^3.5.3", "typescript": "^3.5.3",
"webpack": "^4.40.2", "webpack": "^4.40.2",

View File

@ -44,10 +44,6 @@ const commonConfig = {
}, },
module: { module: {
rules: [ rules: [
{
test: /\.html$/,
use: 'html-loader',
},
{ {
test: /\.tsx?$/, test: /\.tsx?$/,
use: 'ts-loader', use: 'ts-loader',