最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Flow react native import image error cannot resolve module RelativeImageStub - Stack Overflow

programmeradmin1浏览0评论

I'm quite new to flow, I'm getting a flow error importing an image in react-native:

import EditIcon from '../../../../../assets/images/edit-icon.png';

<Image
   style={imageStyle}
   source={EditIcon}
/>

I get this error:

"cannot resolve module RelativeImageStub"

This is my flowconfig where I have the RelativeImageStub

module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'

I'm quite new to flow, I'm getting a flow error importing an image in react-native:

import EditIcon from '../../../../../assets/images/edit-icon.png';

<Image
   style={imageStyle}
   source={EditIcon}
/>

I get this error:

"cannot resolve module RelativeImageStub"

This is my flowconfig where I have the RelativeImageStub

module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
Share Improve this question edited Oct 30, 2018 at 19:37 skyboyer 23.8k7 gold badges62 silver badges71 bronze badges asked Jun 19, 2018 at 10:41 Graeme PaulGraeme Paul 1,1531 gold badge17 silver badges30 bronze badges 3
  • Please post the code. – Bilal Hussain Commented Jun 19, 2018 at 10:42
  • Hi @Graeme, what OS are you working on? ie where this issue happened? – JackDev Commented Oct 5, 2018 at 9:57
  • Seems to only have happened on a windows machine for us, not mac or linux. – JackDev Commented Oct 5, 2018 at 10:08
Add a ment  | 

2 Answers 2

Reset to default 16

Instead of matching the whole module name, you can use extension matcher.

Change:

module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'

To:

module.name_mapper.extension='\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)' -> 'RelativeImageStub'

This is happening because there is no flow definition file.

A work-around to remove the error is to create a stub.

With flow-typed installed (e.g. npm i -g flow-typed), execute the following in your project's root directory:

flow-typed create-stub [email protected]

发布评论

评论列表(0)

  1. 暂无评论