gpt4 book ai didi

create-react-app - 从自定义模板创建时找不到创建 react 应用模板模块

转载 作者:行者123 更新时间:2023-12-03 15:00:26 28 4
gpt4 key购买 nike

我正在尝试创建一个自定义 cra 模板文件供我的团队使用,但一直遇到一个问题,即在运行 npx create-react-app test-app --template my-custom-template 时收到以下错误.

internal/modules/cjs/loader.js:796
throw err;
^

Error: Cannot find module 'cra-template-my-custom-template'
Require stack:
- C:\Users\user\Desktop\cra-test-app\test-app\node_modules\react-scripts\scripts\init.js
- C:\Users\user\Desktop\cra-test-app\test-app\[eval]
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:793:17)
at Function.resolve (internal/modules/cjs/helpers.js:80:19)
at module.exports (C:\Users\user\Desktop\cra-test-app\test-app\node_modules\react-scripts\scripts\init.js:110:13)
at [eval]:3:14
at Script.runInThisContext (vm.js:116:20)
at Object.runInThisContext (vm.js:306:38)
at Object.<anonymous> ([eval]-wrapper:9:26)
at Module._compile (internal/modules/cjs/loader.js:955:30)
at evalScript (internal/process/execution.js:80:25)
at internal/main/eval_string.js:23:3 {
code: 'MODULE_NOT_FOUND',
requireStack: [
'C:\\Users\\user\\Desktop\\cra-test-app\\test-app\\node_modules\\react-scripts\\scripts\\init.js',
'C:\\Users\\user\\Desktop\\cra-test-app\\test-app\\[eval]'
]
}

模板本身目前相当简单,我认为这里的问题可能是我们的团队对一些内部包(它们是模板中的依赖项)使用了私有(private)提要。此私有(private)提要设置为使用 npm 作为上游提要。

我尝试使用 --template file:../path/to/template 在本地测试模板方法并将模板发布到我们的内部提要。我可以使用 npm install 安装该软件包,因此肯定可以在注册表中找到该软件包。

我还尝试根据其他一些建议刷新 npm 缓存并卸载 create-react-app。

我是否必须将模板发布到公共(public) npm 注册表才能正常工作?还是我错过了其他东西?

我的模板的 package.json 文件如下:
{
"name": "cra-template-my-custom-template",
"version": "1.0.5",
"keywords": [
"react",
"create-react-app",
"template",
"typescript"
],
"description": "The base template for React apps hosted within our project",
"files": [
"template",
"template.json"
]
}

而template.json如下:
{
"package": {
"dependencies": {
"@<custom-feed-scope>/<custom-feed-library>": "^5.11.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.34",
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"<custom-feed-library>": "^3.2.1",
"<custom-feed-library>": "^0.2.4",
"typescript": "^3.7.5"
}
}
}

我目前使用的是 npm 而不是 yarn,但我能够使用 typescript 模板创建一个应用程序就好了。

最佳答案

在对其他 cra-template 包进行了一些研究之后,这里缺少的部分似乎没有 main在我的模板的 package.json 中定义的值文件。

更改后package.json对于下面的内容,它开始工作。

{
"name": "cra-template-my-custom-template",
"version": "1.0.8",
"keywords": [
"react",
"create-react-app",
"template",
"typescript"
],
"main": "template.json",
"description": "The base template for React apps hosted within our project",
"files": [
"template",
"template.json"
]
}

关于create-react-app - 从自定义模板创建时找不到创建 react 应用模板模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61132357/

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