Skip to content

Commit 231c01c

Browse files
authored
Merge pull request #2287 from processing/fix/add-temp-console-feed-pkg
Fix/add temp console feed pkg
2 parents 5e2ce88 + ce44790 commit 231c01c

File tree

6 files changed

+70
-69
lines changed

6 files changed

+70
-69
lines changed

client/modules/IDE/components/Console.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { bindActionCreators } from 'redux';
55

66
import { useSelector, useDispatch } from 'react-redux';
77
import classNames from 'classnames';
8-
import { Console as ConsoleFeed } from 'console-feed';
8+
import { Console as ConsoleFeed } from '@nicksrandall/console-feed';
99
import warnLightUrl from '../../../images/console-warn-light.svg?byUrl';
1010
import warnDarkUrl from '../../../images/console-warn-dark.svg?byUrl';
1111
import warnContrastUrl from '../../../images/console-warn-contrast.svg?byUrl';

client/modules/IDE/components/ConsoleInput.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import PropTypes from 'prop-types';
22
import React from 'react';
33
import CodeMirror from 'codemirror';
4-
import { Encode } from 'console-feed';
4+
import { Encode } from '@nicksrandall/console-feed';
55

66
import RightArrowIcon from '../../../images/right-arrow.svg';
77
import { dispatchMessage, MessageTypes } from '../../../utils/dispatcher';

client/modules/IDE/hooks/useHandleMessageEvent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useDispatch } from 'react-redux';
2-
import { Decode } from 'console-feed';
2+
import { Decode } from '@nicksrandall/console-feed';
33
import { dispatchConsoleEvent } from '../actions/console';
44
import { stopSketch, expandConsole } from '../actions/ide';
55

client/utils/previewEntry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import loopProtect from 'loop-protect';
2-
import { Hook, Decode, Encode } from 'console-feed';
2+
import { Hook, Decode, Encode } from '@nicksrandall/console-feed';
33
import StackTrace from 'stacktrace-js';
44
import evaluateExpression from './evaluateExpression';
55

package-lock.json

Lines changed: 65 additions & 64 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@
148148
"@babel/core": "^7.14.6",
149149
"@babel/register": "^7.14.5",
150150
"@emmetio/codemirror-plugin": "^1.2.4",
151+
"@nicksrandall/console-feed": "^3.5.0",
151152
"@redux-devtools/core": "^3.11.0",
152153
"@redux-devtools/dock-monitor": "^2.1.0",
153154
"@redux-devtools/log-monitor": "^3.1.0",
@@ -163,7 +164,6 @@
163164
"codemirror": "^5.62.0",
164165
"codemirror-colorpicker": "^1.9.72",
165166
"connect-mongo": "^1.3.2",
166-
"console-feed": "^3.2.0",
167167
"cookie-parser": "^1.4.5",
168168
"copy-webpack-plugin": "^10.2.4",
169169
"cors": "^2.8.5",

0 commit comments

Comments
 (0)