mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-25 15:57:18 +00:00
Merge pull request #3148 from balena-io/update-dependencies
Update dependencies
This commit is contained in:
commit
a31e27ee06
@ -20,7 +20,7 @@ import * as _ from 'lodash';
|
|||||||
import outdent from 'outdent';
|
import outdent from 'outdent';
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import * as ReactDOM from 'react-dom';
|
import * as ReactDOM from 'react-dom';
|
||||||
import * as uuidV4 from 'uuid/v4';
|
import { v4 as uuidV4 } from 'uuid';
|
||||||
|
|
||||||
import * as packageJSON from '../../../package.json';
|
import * as packageJSON from '../../../package.json';
|
||||||
import * as EXIT_CODES from '../../shared/exit-codes';
|
import * as EXIT_CODES from '../../shared/exit-codes';
|
||||||
|
@ -16,11 +16,11 @@
|
|||||||
|
|
||||||
import * as _ from 'lodash';
|
import * as _ from 'lodash';
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import * as uuidV4 from 'uuid/v4';
|
import { v4 as uuidV4 } from 'uuid';
|
||||||
|
|
||||||
import * as flashState from '../../models/flash-state';
|
import * as flashState from '../../models/flash-state';
|
||||||
import * as selectionState from '../../models/selection-state';
|
import * as selectionState from '../../models/selection-state';
|
||||||
import { store } from '../../models/store';
|
import { Actions, store } from '../../models/store';
|
||||||
import * as analytics from '../../modules/analytics';
|
import * as analytics from '../../modules/analytics';
|
||||||
import { open as openExternal } from '../../os/open-external/services/open-external';
|
import { open as openExternal } from '../../os/open-external/services/open-external';
|
||||||
import { FlashAnother } from '../flash-another/flash-another';
|
import { FlashAnother } from '../flash-another/flash-another';
|
||||||
@ -33,7 +33,7 @@ function restart(goToMain: () => void) {
|
|||||||
|
|
||||||
// Reset the flashing workflow uuid
|
// Reset the flashing workflow uuid
|
||||||
store.dispatch({
|
store.dispatch({
|
||||||
type: 'SET_FLASHING_WORKFLOW_UUID',
|
type: Actions.SET_FLASHING_WORKFLOW_UUID,
|
||||||
data: uuidV4(),
|
data: uuidV4(),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -169,7 +169,7 @@ const URLSelector = ({ done }: { done: (imageURL: string) => void }) => {
|
|||||||
|
|
||||||
interface Flow {
|
interface Flow {
|
||||||
icon?: JSX.Element;
|
icon?: JSX.Element;
|
||||||
onClick: (evt: MouseEvent) => void;
|
onClick: (evt: React.MouseEvent) => void;
|
||||||
label: string;
|
label: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,6 +26,7 @@ import { Actions, store } from './store';
|
|||||||
export function resetState() {
|
export function resetState() {
|
||||||
store.dispatch({
|
store.dispatch({
|
||||||
type: Actions.RESET_FLASH_STATE,
|
type: Actions.RESET_FLASH_STATE,
|
||||||
|
data: {},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -46,6 +47,7 @@ export function isFlashing(): boolean {
|
|||||||
export function setFlashingFlag() {
|
export function setFlashingFlag() {
|
||||||
store.dispatch({
|
store.dispatch({
|
||||||
type: Actions.SET_FLASHING_FLAG,
|
type: Actions.SET_FLASHING_FLAG,
|
||||||
|
data: {},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,6 +130,7 @@ export function deselectDrive(driveDevice: string) {
|
|||||||
export function deselectImage() {
|
export function deselectImage() {
|
||||||
store.dispatch({
|
store.dispatch({
|
||||||
type: Actions.DESELECT_IMAGE,
|
type: Actions.DESELECT_IMAGE,
|
||||||
|
data: {},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
import * as Immutable from 'immutable';
|
import * as Immutable from 'immutable';
|
||||||
import * as _ from 'lodash';
|
import * as _ from 'lodash';
|
||||||
import * as redux from 'redux';
|
import * as redux from 'redux';
|
||||||
import * as uuidV4 from 'uuid/v4';
|
import { v4 as uuidV4 } from 'uuid';
|
||||||
|
|
||||||
import * as constraints from '../../../shared/drive-constraints';
|
import * as constraints from '../../../shared/drive-constraints';
|
||||||
import * as errors from '../../../shared/errors';
|
import * as errors from '../../../shared/errors';
|
||||||
|
1233
npm-shrinkwrap.json
generated
1233
npm-shrinkwrap.json
generated
File diff suppressed because it is too large
Load Diff
20
package.json
20
package.json
@ -53,8 +53,8 @@
|
|||||||
"bluebird": "^3.7.2",
|
"bluebird": "^3.7.2",
|
||||||
"bootstrap-sass": "^3.3.6",
|
"bootstrap-sass": "^3.3.6",
|
||||||
"d3": "^4.13.0",
|
"d3": "^4.13.0",
|
||||||
"debug": "^3.1.0",
|
"debug": "^4.1.1",
|
||||||
"electron-updater": "4.0.6",
|
"electron-updater": "^4.3.1",
|
||||||
"etcher-sdk": "^4.1.3",
|
"etcher-sdk": "^4.1.3",
|
||||||
"flexboxgrid": "^6.3.0",
|
"flexboxgrid": "^6.3.0",
|
||||||
"immutable": "^3.8.1",
|
"immutable": "^3.8.1",
|
||||||
@ -67,18 +67,18 @@
|
|||||||
"pretty-bytes": "^5.3.0",
|
"pretty-bytes": "^5.3.0",
|
||||||
"react": "^16.8.5",
|
"react": "^16.8.5",
|
||||||
"react-dom": "^16.8.5",
|
"react-dom": "^16.8.5",
|
||||||
"redux": "^3.5.2",
|
"redux": "^4.0.5",
|
||||||
"rendition": "^11.24.2",
|
"rendition": "^14.11.5",
|
||||||
"request": "^2.81.0",
|
"request": "^2.81.0",
|
||||||
"resin-corvus": "^2.0.5",
|
"resin-corvus": "^2.0.5",
|
||||||
"roboto-fontface": "^0.9.0",
|
"roboto-fontface": "^0.10.0",
|
||||||
"semver": "^5.1.1",
|
"semver": "^7.3.2",
|
||||||
"styled-components": "^4.2.0",
|
"styled-components": "^5.1.0",
|
||||||
"styled-system": "^4.1.0",
|
"styled-system": "^5.1.5",
|
||||||
"sudo-prompt": "^9.0.0",
|
"sudo-prompt": "^9.0.0",
|
||||||
"sys-class-rgb-led": "^2.1.0",
|
"sys-class-rgb-led": "^2.1.0",
|
||||||
"tmp": "^0.1.0",
|
"tmp": "^0.2.1",
|
||||||
"uuid": "^3.0.1"
|
"uuid": "^8.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@balena/lint": "^5.0.4",
|
"@balena/lint": "^5.0.4",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user