Skip to content

Commit 1a3cc81

Browse files
authored
Merge pull request processing#2289 from processing/2285-missing-pkg-console-feed
2285 missing pkg console feed
2 parents 32d5bdc + c27ae16 commit 1a3cc81

File tree

6 files changed

+51
-51
lines changed

6 files changed

+51
-51
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 '@nicksrandall/console-feed';
8+
import { Console as ConsoleFeed } from '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 '@nicksrandall/console-feed';
4+
import { Encode } from '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 '@nicksrandall/console-feed';
2+
import { Decode } from '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 '@nicksrandall/console-feed';
2+
import { Hook, Decode, Encode } from 'console-feed';
33
import StackTrace from 'stacktrace-js';
44
import evaluateExpression from './evaluateExpression';
55

package-lock.json

Lines changed: 46 additions & 46 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,7 +148,6 @@
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",
152151
"@redux-devtools/core": "^3.11.0",
153152
"@redux-devtools/dock-monitor": "^2.1.0",
154153
"@redux-devtools/log-monitor": "^3.1.0",
@@ -164,6 +163,7 @@
164163
"codemirror": "^5.62.0",
165164
"codemirror-colorpicker": "^1.9.72",
166165
"connect-mongo": "^1.3.2",
166+
"console-feed": "^3.5.0",
167167
"cookie-parser": "^1.4.5",
168168
"copy-webpack-plugin": "^10.2.4",
169169
"cors": "^2.8.5",

0 commit comments

Comments
 (0)