(#1513) Remove references to npm log from files that are run in the browser

This commit is contained in:
Dan Green 2017-11-22 08:18:40 -05:00
parent e35045f298
commit f82ae06e9e
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,6 @@
/* eslint no-underscore-dangle: 0 */
import logger from 'npmlog';
const logger = console;
export default class ClientApi {
constructor({ channel, storyStore }) {

View File

@ -3,13 +3,14 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { stripIndents } from 'common-tags';
import logger from 'npmlog';
import isReactRenderable from './element_check';
import ErrorDisplay from './error_display';
// check whether we're running on node/browser
const isBrowser = typeof window !== 'undefined';
const logger = console;
let rootEl = null;
let previousKind = '';
let previousStory = '';