- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个现有的 React native 应用程序。我想创建另一个并在它们之间共享一些代码。
我用了地铁extraNodeModules
将共享代码导入任一应用程序。
在任一应用程序中,我希望能够执行以下操作:
// MyApp1/src\navigation\app.navigator.js
import { someUtilModule } from 'shared';
不幸的是,当我的开发设备上加载应用程序包时,它失败了:
error: Error: Unable to resolve module `shared` from `src\navigation\app.navigator.js`: shared could not be found within the project or in these directories:
C:\path\to\my\project
If you are sure the module exists, try these steps:
1. Clear watchman watches: watchman watch-del-all
2. Delete node_modules: rm -rf node_modules and run yarn install
3. Reset Metro's cache: yarn start --reset-cache
4. Remove the cache: rm -rf /tmp/metro-*
at ModuleResolver.resolveDependency (C:\path\to\my\project\MyApp1\node_modules\metro\src\node-haste\DependencyGraph\ModuleResolution.js:186:15)
at ResolutionRequest.resolveDependency (C:\path\to\my\project\MyApp1\node_modules\metro\src\node-haste\DependencyGraph\ResolutionRequest.js:52:18)
at DependencyGraph.resolveDependency (C:\path\to\my\project\MyApp1\node_modules\metro\src\node-haste\DependencyGraph.js:287:16)
at Object.resolve (C:\path\to\my\project\MyApp1\node_modules\metro\src\lib\transformHelpers.js:267:42)
at C:\path\to\my\project\MyApp1\node_modules\metro\src\DeltaBundler\traverseDependencies.js:434:31
at Array.map (<anonymous>)
at resolveDependencies (C:\path\to\my\project\MyApp1\node_modules\metro\src\DeltaBundler\traverseDependencies.js:431:18)
at C:\path\to\my\project\MyApp1\node_modules\metro\src\DeltaBundler\traverseDependencies.js:275:33
at Generator.next (<anonymous>)
at asyncGeneratorStep (C:\path\to\my\project\MyApp1\node_modules\metro\src\DeltaBundler\traverseDependencies.js:87:24)
文件夹结构(
shared
文件夹存在 - 这是
tree
的输出):
C:\path\to\my\project
├── MyApp1
│ └── src
│ ├── app
│ ├── assets
│ ├── components
│ ├── core
│ ├── navigation
│ ├── scenes
│ └── services
├── MyApp2
│ └── src
│ ├── app
│ ├── assets
│ ├── components
│ ├── core
│ ├── navigation
│ ├── scenes
│ └── services
└── shared
├── assets
├── components
├── navigation
├── scenes
└── services
我的地铁配置:
// ...
const sharedDir = path.resolve(`${__dirname}/../shared`);
const extraNodeModules = {
shared: sharedDir,
};
const watchFolders = [sharedDir];
module.exports = {
transformer: /*...*/,
resolver: {
extraNodeModules: new Proxy(extraNodeModules, {
get: (target, name) => {
// redirects dependencies referenced from shared/ to local node_modules
return name in target
? target[name]
: path.join(process.cwd(), `node_modules/${name.toString()}`);
},
}),
},
watchFolders,
}
最佳答案
我最终通过创建一个虚拟 package.json
解决了这个问题。 shared/
中的文件:
{
"name": "shared",
"version": "0.0.1"
}
在很久以后,我删除了该文件,该项目继续工作......
package.json
之前,可能值得完全清空缓存、临时文件等。
关于javascript - Metro extraNodeModules 不起作用 - 错误 : Unable to resolve module,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62856529/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!