chore(react): remove storybook logger dependency (#11306)

This commit is contained in:
Katerina Skroumpelou 2022-07-27 16:39:42 +03:00 committed by GitHub
parent 3c2ad25cfd
commit fee72e4ac6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -41,7 +41,6 @@
"@nrwl/web": "file:../web",
"@nrwl/workspace": "file:../workspace",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@storybook/node-logger": "6.1.20",
"@svgr/webpack": "^6.1.2",
"chalk": "4.1.0",
"eslint-plugin-import": "^2.25.2",

View File

@ -1,9 +1,12 @@
import { joinPathFragments, readJsonFile } from '@nrwl/devkit';
import { workspaceRoot } from '@nrwl/devkit';
import {
joinPathFragments,
readJsonFile,
logger,
workspaceRoot,
} from '@nrwl/devkit';
import { getBaseWebpackPartial } from '@nrwl/web/src/utils/config';
import { getStylesPartial } from '@nrwl/web/src/utils/web.config';
import { checkAndCleanWithSemver } from '@nrwl/workspace/src/utilities/version-utils';
import { logger } from '@storybook/node-logger';
import { join } from 'path';
import { gte } from 'semver';
import { Configuration, WebpackPluginInstance, DefinePlugin } from 'webpack';