Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielburnworth committed Sep 17, 2024
1 parent 46bce3a commit cde5f98
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import React from "react";
import { shallow } from "enzyme";
import { LuaTextArea, LuaTextAreaProps } from "../tile_lua_support";
import { Lua } from "farmbot";
import Editor from "@monaco-editor/react";
import { Editor } from "@monaco-editor/react";
import { fakeStepParams } from "../../../__test_support__/fake_sequence_step_data";
import { StateToggleKey } from "../../step_ui";

Expand Down
2 changes: 1 addition & 1 deletion frontend/sequences/step_tiles/tile_lua_support.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import Editor, { loader } from "@monaco-editor/react";
import { Editor, loader } from "@monaco-editor/react";
loader.config({ paths: { vs: "/assets/monaco" } });
import { StepParams } from "../interfaces";
import { Assertion, Lua } from "farmbot/dist/corpus";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ describe("<GardenLocationRow />", () => {
timestamp: 1,
coords: {
accuracy: 1, altitude: 1, altitudeAccuracy: 1, heading: 1, speed: 1,
latitude: 100, longitude: 50
}
latitude: 100, longitude: 50, toJSON: jest.fn(),
}, toJSON: jest.fn(),
});
const p = fakeProps();
const wrapper = mount(<GardenLocationRow {...p} />);
Expand Down
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"@parcel/watcher": "2.1.0"
},
"dependencies": {
"@blueprintjs/core": "5.11.0",
"@blueprintjs/select": "5.2.2",
"@blueprintjs/core": "5.12.0",
"@blueprintjs/select": "5.2.3",
"@monaco-editor/react": "4.6.0",
"@parcel/transformer-sass": "2.12.0",
"@parcel/transformer-typescript-tsc": "2.12.0",
Expand All @@ -44,26 +44,26 @@
"@react-three/fiber": "8.17.5",
"@types/lodash": "4.17.7",
"@types/markdown-it": "14.1.2",
"@types/node": "22.5.0",
"@types/node": "22.5.5",
"@types/promise-timeout": "1.3.3",
"@types/react": "18.3.4",
"@types/react": "18.3.7",
"@types/react-color": "3.0.12",
"@types/react-dom": "18.3.0",
"@types/three": "0.167.1",
"@types/ws": "8.5.12",
"axios": "1.7.5",
"axios": "1.7.7",
"bowser": "2.11.0",
"browser-speech": "1.1.1",
"events": "3.3.0",
"farmbot": "15.8.8",
"i18next": "23.14.0",
"i18next": "23.15.1",
"lodash": "4.17.21",
"markdown-it": "14.1.0",
"markdown-it-emoji": "3.0.0",
"moment": "2.30.1",
"monaco-editor": "0.51.0",
"mqtt": "5.10.0",
"npm": "10.8.2",
"mqtt": "5.10.1",
"npm": "10.8.3",
"parcel": "2.12.0",
"process": "0.11.10",
"promise-timeout": "1.3.0",
Expand All @@ -78,26 +78,26 @@
"redux-thunk": "3.1.0",
"takeme": "0.12.0",
"three": "0.167.1",
"typescript": "5.5.4",
"typescript": "5.6.2",
"url": "0.11.4",
"xterm": "5.3.0"
},
"devDependencies": {
"@react-three/eslint-plugin": "0.1.1",
"@types/enzyme": "3.10.12",
"@types/jest": "29.5.12",
"@types/jest": "29.5.13",
"@types/readable-stream": "4.0.15",
"@typescript-eslint/eslint-plugin": "7.15.0",
"@typescript-eslint/parser": "7.15.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.8.0",
"enzyme": "3.11.0",
"eslint": "8.57.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "4.6.2",
"jest": "29.7.0",
"jest-canvas-mock": "2.5.2",
Expand All @@ -110,7 +110,7 @@
"raf": "3.4.1",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "18.3.1",
"sass": "1.77.8",
"sass": "1.78.0",
"sass-lint": "1.13.1",
"ts-jest": "29.2.5",
"tslint": "5.20.1"
Expand Down

0 comments on commit cde5f98

Please sign in to comment.