Skip to content

Commit

Permalink
build: update react and yarn (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
vault-developer authored Dec 31, 2024
1 parent 309be15 commit a2bea4a
Show file tree
Hide file tree
Showing 4 changed files with 1,443 additions and 1,779 deletions.
9 changes: 3 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
## [1.10.2](https://github.com/vault-developer/event-loop-explorer/compare/v1.10.1...v1.10.2) (2024-12-31)


### Bug Fixes

* revert "build: update dependencies" ([8f034c2](https://github.com/vault-developer/event-loop-explorer/commit/8f034c20bf58b5576a24b778cf4f01b71f092514))
- revert "build: update dependencies" ([8f034c2](https://github.com/vault-developer/event-loop-explorer/commit/8f034c20bf58b5576a24b778cf4f01b71f092514))

## [1.10.1](https://github.com/vault-developer/event-loop-explorer/compare/v1.10.0...v1.10.1) (2024-12-31)


### Bug Fixes

* fix light theme colors ([81caef4](https://github.com/vault-developer/event-loop-explorer/commit/81caef44013c013f8fc2f1e7766cf56d137cd5af))
- fix light theme colors ([81caef4](https://github.com/vault-developer/event-loop-explorer/commit/81caef44013c013f8fc2f1e7766cf56d137cd5af))

# [1.10.0](https://github.com/vault-developer/event-loop-explorer/compare/v1.9.4...v1.10.0) (2024-12-31)


### Features

* add light theme ([7a903f1](https://github.com/vault-developer/event-loop-explorer/commit/7a903f159939cacfcecd2fc848b30e16d31a0007))
- add light theme ([7a903f1](https://github.com/vault-developer/event-loop-explorer/commit/7a903f159939cacfcecd2fc848b30e16d31a0007))

## [1.9.4](https://github.com/vault-developer/event-loop-explorer/compare/v1.9.3...v1.9.4) (2024-12-29)

Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
"acorn-walk": "^8.3.4",
"eslint-scope": "^8.2.0",
"globals": "^15.9.0",
"react": "^18.3.1",
"react": "^19.0.0",
"react-ace": "^12.0.0",
"react-dom": "^18.3.1",
"react-dom": "^19.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
Expand All @@ -46,8 +46,8 @@
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitejs/plugin-react": "^4.3.1",
Expand All @@ -67,7 +67,7 @@
"typescript": "^5.5.4",
"vite": "^5.4.2"
},
"packageManager": "yarn@4.3.1+sha512.af78262d7d125afbfeed740602ace8c5e4405cd7f4735c08feb327286b2fdb2390fbca01589bfd1f50b1240548b74806767f5a063c94b67e431aabd0d86f7774",
"packageManager": "yarn@4.6.0",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
Expand Down
4 changes: 2 additions & 2 deletions src/pages/home/sections/Configurator/Editor/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import AceEditor from 'react-ace';
import 'ace-builds/src-noconflict/mode-javascript';
import 'ace-builds/src-noconflict/theme-solarized_dark';
import 'ace-builds/src-noconflict/theme-textmate';
import { useEffect, useRef } from 'react';
import { RefObject, useEffect, useRef } from 'react';
import {
useEditorStore,
useSimulatorStore,
Expand All @@ -25,7 +25,7 @@ export default function Editor({

useEffect(() => {
if (editorRef.current) {
setEditorRef(editorRef);
setEditorRef(editorRef as RefObject<AceEditor>);
}
}, [editorRef, setEditorRef]);

Expand Down
Loading

0 comments on commit a2bea4a

Please sign in to comment.