-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Discussion about main field of antd-mobile #602
Comments
有其他方案也可以提出来。 |
当时不加main 是故意的,看来大家都不看文档, 这样搞:
component/WarnComponent.ios.tsx component/warn.tsx
component/index.web.tsx 是用来生成 d.ts |
import { Xxx } from 'antd-mobile' 否则 webpack 直接会报错,用户没机会看到 warning 。 |
先确定一个方案搞下,发个 alpha 版本看看有没问题。 @yiminghe |
分库不行,就是 warn.tsx 方案 |
@warmhug 先把这个补上。 |
还是按照现有的方案走吧,加强文档,把各种情况的 demo (纯 H5,纯 RN,混合,独立 webpack 之类的) 都维护起来好了 |
建议把这个加到README.md里面. |
来个 PR 如何? |
这个还是你们写吧,还没怎么用这个项目。 |
投 antd-mobile、antd-mobile-native 分开的好,理由: |
@xpcode 说的不错 |
warning 信息先加上,先按 @yiminghe 说的搞。 |
这个 warn.jsx 为啥到现在还没人加。@warmhug @silentcloud @pingan1927 |
这个帖子靠谱,报错也解决。对于我这样的入门小白来说,知道了为什么出现这个问题,这issue 质量非常高,比心 @afc163 |
这个错误看起来像是依赖问题,跟 antd-mobile 没什么关系 @bryht |
你的react的版本和 ant-mobile 里react 依赖需要是同一个版本,我遇到不是同一个版本问题时候,就是一直说找不到包的问题,最好查查你的 react 版本。 npm ls react @bryht |
多谢各位,应该就是版本不一致的问题,重新装了遍 react就好了。 |
我用react-native init了一个项目,然后直接import {Button } from 'antd-mobile'; .babelrc 配置如下: 最后npm start还是出现css找不到 [2017-01-20 08:16:28] Transforming files 下面这种写法没有错误提示: antd-mobile的版本是0.9.14 |
@mineralres "style": "css", 去掉。react-native 没有 css |
@warmhug 可以了。 |
在用 web项目打包发布的时候发现了这个问题,我改动了
|
@nunnly 不要这么用,移动项目不应该引入所有模块,这样会导致体积过大。参照楼顶的解决方案。 |
另外 npm start 还要加上 --reset-cache 参数,如果不是 .babelrc 修改不生效 |
可以去提Issue... 经常收到这里的邮件. 😢 |
用的 fis 编译,不支持 webpack resolve.extention 这种配置,如何解决 require 时读取 js 而不是 web.js 的问题呢?还是期望后续能编译出两份库! @afc163 |
最新的antd-mobile版本,按官方文档配置babel-plugin-import 仍然报无法找到"antd-mobile"。我的RN版本是0.43 |
是不是只有入口的js文件引用 antd的时候,需要import Button from 'antd-mobile/lib/button' |
close because of #1235. There will be no |
找不到 antd-mobile:接入 babel-plugin-import,解决没有 main 入口文件的问题。 |
#66
#523
社区遇到巨量
import { Xxx } from 'antd-mobile'
找不到模块(找不到 antd-mobile 或 react-native)的问题,根本原因是由于 antd-mobile 同时用于 web 和 native 两种使用场景,以不同的后缀 *.web.js 和 *.js 作为区分,所以项目没有设置统一的入口文件,需要直接引用模块文件。目前主要解决方案如下:
上面两个方案比较影响易用性,很多用户搞不定这个。
建议:
antd-mobile
antd-mobile-native
分开,npm run pub
时同时发布两个包,这样两个包可以各自指定 main 入口,而且不再需要配置 resolve.extention。相关讨论:f561b6e#commitcomment-20043061
The text was updated successfully, but these errors were encountered: