Skip to content

Fix/add temp console feed pkg #2287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/modules/IDE/components/Console.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { bindActionCreators } from 'redux';

import { useSelector, useDispatch } from 'react-redux';
import classNames from 'classnames';
import { Console as ConsoleFeed } from 'console-feed';
import { Console as ConsoleFeed } from '@nicksrandall/console-feed';
import warnLightUrl from '../../../images/console-warn-light.svg?byUrl';
import warnDarkUrl from '../../../images/console-warn-dark.svg?byUrl';
import warnContrastUrl from '../../../images/console-warn-contrast.svg?byUrl';
Expand Down
2 changes: 1 addition & 1 deletion client/modules/IDE/components/ConsoleInput.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import PropTypes from 'prop-types';
import React from 'react';
import CodeMirror from 'codemirror';
import { Encode } from 'console-feed';
import { Encode } from '@nicksrandall/console-feed';

import RightArrowIcon from '../../../images/right-arrow.svg';
import { dispatchMessage, MessageTypes } from '../../../utils/dispatcher';
Expand Down
2 changes: 1 addition & 1 deletion client/modules/IDE/hooks/useHandleMessageEvent.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useDispatch } from 'react-redux';
import { Decode } from 'console-feed';
import { Decode } from '@nicksrandall/console-feed';
import { dispatchConsoleEvent } from '../actions/console';
import { stopSketch, expandConsole } from '../actions/ide';

Expand Down
2 changes: 1 addition & 1 deletion client/utils/previewEntry.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import loopProtect from 'loop-protect';
import { Hook, Decode, Encode } from 'console-feed';
import { Hook, Decode, Encode } from '@nicksrandall/console-feed';
import StackTrace from 'stacktrace-js';
import evaluateExpression from './evaluateExpression';

Expand Down
129 changes: 65 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@
"@babel/core": "^7.14.6",
"@babel/register": "^7.14.5",
"@emmetio/codemirror-plugin": "^1.2.4",
"@nicksrandall/console-feed": "^3.5.0",
"@redux-devtools/core": "^3.11.0",
"@redux-devtools/dock-monitor": "^2.1.0",
"@redux-devtools/log-monitor": "^3.1.0",
Expand All @@ -163,7 +164,6 @@
"codemirror": "^5.62.0",
"codemirror-colorpicker": "^1.9.72",
"connect-mongo": "^1.3.2",
"console-feed": "^3.2.0",
"cookie-parser": "^1.4.5",
"copy-webpack-plugin": "^10.2.4",
"cors": "^2.8.5",
Expand Down