gpt4 book ai didi

reactjs - 找不到模块 : Error: Can't resolve '@emotion/styled/base' when running story book

转载 作者:行者123 更新时间:2023-12-04 02:28:08 28 4
gpt4 key购买 nike

我最近在我的项目中安装了 Storybook
下面的依赖项和开发依赖项:

"dependencies": {
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@hot-loader/react-dom": "^17.0.1",
"node-sass": "^5.0.0",
"react": "^17.0.1",
"react-content-loader": "^6.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@emotion/babel-plugin": "^11.1.2",
"@emotion/babel-preset-css-prop": "^11.0.0",
"@emotion/jest": "^11.1.0",
"@emotion/styled-base": "^11.0.0",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.15",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-emotion": "^11.0.0",
"babel-plugin-require-context-hook": "^1.0.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.0.0-alpha.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-prop-type-error": "^1.1.0",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"standard-version": "^9.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.15.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
我构建了一个使用 @emotion/styled 的简单按钮组件用于造型。但是,在运行 npm run storybook 时,我想为这个按钮添加一个故事。我收到以下错误
Module not found: Error: Can't resolve '@emotion/styled/base' in '/directory/to/Button'
这是我在按钮组件中导入的内容:
import styled from '@emotion/styled';
import { useTheme } from '@emotion/react';

const StyledButton = styled.button`
cursor: pointer;
font-size: ${({ fontSize }) => fontSize};
`;
这发生在使用 @emotion/styled 的其他组件上。也是。我是否缺少额外的依赖项,还是需要向 .babelrc 文件添加任何预设?
.babelrc:
{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@emotion/babel-preset-css-prop"
],
"env": {
"test": {
"plugins": ["require-context-hook"]
}
},
"plugins": ["react-hot-loader/babel", "@emotion"]
}

最佳答案

这是情感11的Break名称更改引起的问题。到目前为止,故事书内部仍在寻找v10名称以集成情感包。因此,在故事书修复它之前,您将有 2 个选项:
A. 降级为情绪 10.
B. 解决方法:

// .storybook/main.js
const path = require("path");
const fs = require("fs");
const { merge } = require("webpack-merge");

function getPackageDir(filepath) {
let currDir = path.dirname(require.resolve(filepath));
while (true) {
if (fs.existsSync(path.join(currDir, "package.json"))) {
return currDir;
}
const { dir, root } = path.parse(currDir);
if (dir === root) {
throw new Error(
`Could not find package.json in the parent directories starting from ${filepath}.`
);
}
currDir = dir;
}
}

module.exports = {
stories: [
"../stories/**/*.stories.mdx",
"../components/**/*.stories.@(ts|tsx|mdx)",
],
addons: ["@storybook/addon-links", "@storybook/addon-essentials"],
webpackFinal: async (config) => {
return merge(config, {
resolve: {
alias: {
"@emotion/core": getPackageDir("@emotion/react"),
"@emotion/styled": getPackageDir("@emotion/styled"),
"emotion-theming": getPackageDir("@emotion/react"),
},
},
});
},
};

关于reactjs - 找不到模块 : Error: Can't resolve '@emotion/styled/base' when running story book,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65894711/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com