Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Aug 22, 2023
1 parent ea947a3 commit 1caa5e7
Show file tree
Hide file tree
Showing 5 changed files with 832 additions and 631 deletions.
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
"private": true,
"license": "BSD-3-Clause",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"gh-pages": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"eslint-plugin-react": "^7.33.2",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"lint-staged": "^14.0.1",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"typescript": "^4.9.5",
"vite": "^4.3.9",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-html": "^3.2.0"
},
"dependencies": {
Expand All @@ -31,18 +31,18 @@
"@types/semver": "^7.5.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"cytoscape": "^3.25.0",
"cytoscape": "^3.26.0",
"cytoscape-popper": "^2.0.0",
"d3-array": "^3.2.4",
"d3-geo-projection": "^4.0.0",
"d3-scale": "^4.0.2",
"elkjs": "^0.8.2",
"history": "^5.3.0",
"json-stringify-pretty-compact": "^3.0.0",
"json-stringify-pretty-compact": "^4.0.0",
"jsonc-parser": "^3.2.0",
"lz-string": "^1.5.0",
"monaco-editor": "^0.39.0",
"prettier": "^2.8.8",
"monaco-editor": "^0.41.0",
"prettier": "^2.0.0",
"prop-types": "^15.8.1",
"rc-resize-observer": "^1.3.1",
"react": "^17.0.2",
Expand All @@ -51,23 +51,23 @@
"react-feather": "^2.0.10",
"react-paginate": "^8.2.0",
"react-portal": "^4.2.2",
"react-redux": "^8.1.1",
"react-redux": "^8.1.2",
"react-router-dom": "^5.3.0",
"react-select": "^5.7.3",
"react-split-pane": "^0.1.92",
"redux": "^4.2.1",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.4.2",
"tippy.js": "^6.3.7",
"tslib": "^2.5.3",
"tslib": "^2.6.2",
"vega-cli": "5.25.0",
"vega-datasets": "^2.7.0",
"vega-embed": "^6.22.1",
"vega-lite": "5.12.0",
"vega-embed": "^6.22.2",
"vega-lite": "5.14.1",
"vega-schema-url-parser": "^2.2.0",
"vega-themes": "^2.13.0",
"vega-tooltip": "^0.32.0",
"vega-typings": "^0.24.1"
"vega-themes": "^2.14.0",
"vega-tooltip": "^0.33.0",
"vega-typings": "^0.24.2"
},
"lint-staged": {
"*.{ts,tsx}": [
Expand Down
2 changes: 1 addition & 1 deletion src/features/dataflow/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {popupSlice} from './popupSlice';
// them into the rest of the redux state.

const slices = [pulsesSlice, runtimeSlice, selectionSlice, layoutSlice, popupSlice] as const;
type SliceType = typeof slices[number];
type SliceType = (typeof slices)[number];
/**
* Combines the slicers reducers manually, to account for leaving the rest
* of the global reducer unchanged.
Expand Down
2 changes: 1 addition & 1 deletion src/features/dataflow/utils/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type Node = {
parent?: ID;
// A string that can be used to identify the node for coloring
// should always be present
colorKey?: typeof colorKeys[number];
colorKey?: (typeof colorKeys)[number];
// Mapping of keys to values, for display
params: Record<string, string>;

Expand Down
6 changes: 3 additions & 3 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import react from '@vitejs/plugin-react';
const commitHash = require('child_process').execSync('git rev-parse --short HEAD').toString();

export default defineConfig({
base: 'editor',
base: '/editor',
define: {
__COMMIT_HASH__: JSON.stringify(commitHash),
},
plugins: [react()],
resolve: {
preserveSymlinks: true
}
preserveSymlinks: true,
},
});
Loading

0 comments on commit 1caa5e7

Please sign in to comment.