-
Notifications
You must be signed in to change notification settings - Fork 324
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
Umi 3.1,支持 mpa,编译大幅提速,两种 node_modules 编译方式,优化 defineConfig 的 TypeScript 体验 #93
Comments
👍 👍 👍 👍 👍 👍 |
🐂🍺 |
刚换了新东家,现在用的技术栈是 vue,但还是关注 umi 和 react 动态 |
👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍 |
👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍 |
👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍 |
🐂🍺,大佬辛苦了 |
从内容看到,写的时候又激动了吧,有错别字。 |
👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍 |
👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍 |
1 similar comment
👍👍 👍 👍 👍 👍 👍👍 👍 👍 👍 👍 👍 |
不编译 |
太 6 了,希望编译速度可以再提升 |
还可以从 27s 到 8s 内,今年的目标之一。 |
666
…------------------ 原始邮件 ------------------
发件人: "chencheng (云谦)"<[email protected]>;
发送时间: 2020年4月8日(星期三) 下午5:14
收件人: "sorrycc/blog"<[email protected]>;
抄送: "Subscribed"<[email protected]>;
主题: Re: [sorrycc/blog] Umi 3.1,支持 mpa,编译大幅提速,两种 node_modules 编译方式,优化 defineConfig 的 TypeScript 体验 (#93)
太 6 了,希望编译速度可以再提升
还可以从 27s 到 8s 内,今年的目标之一。
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Babel 升级是跟着 umi 自动升的,还是必须新创建的umi 项目才会使用新的版本?老的项目把 umi 升级到 3.1以后,看 @babel/core 的版本,还是 7.9.0 |
我想 umi 3.0 比 umi 2.0 编译还慢,这说不过去,umi 3.1或者umi 3.2总是要提升速度的,猜的没有错。 |
前两周刚刚创建的ant design pro的项目,用了umi3.1.0后,yarn start要20+几分钟才能启动,中途没有报错误。但这速度没法开发了,删除node_modules重新yarn还是老样子,太坑了吧!提的什么速?! 3.0.14的时候yarn start几秒就好了 |
虽然提速不是特别明显(可能也要等 ant design pro 更新吧),但也不要20+分钟,你这是什么年代的机器啊? |
确实是20+分钟,异常痛苦。。。。。。。。 |
@fengnex 给个重现。 |
1、先用umi3.0.14创建了pro应用,yanr、yarn start正常,可以和后台一起开发部分功能 |
@fengnex 在这里跟进讨论吧 umijs/umi#4415 |
D:\projects\mt-front>yarn start Starting the development server...
就这样,大概68%左右会占去大部分时间,就这么慢。 |
我的是win10,16G,I7CPU,三星全固态硬盘,遇到同样是启动慢的问题 |
win10,8G,I5CPU,12s+,node v12.13.1 |
我的mbp2012又能再战三年了 |
umi-plugin有demo吗,文档比较抽象实现起来下不去手 |
原以为我看不懂文档是英文不好,直到后来我用上了umi... |
不寒暄了,经过一周的开发,我们增加和改进了以下功能。
支持 mpa
通过一个自定义的 Umi 渲染器 renderer-mpa 实现 mpa 的支持,复用现有的路由配置和绝大部分能力,每个页面需要有一个 React 组件出口。不是传统意义上的 mpa,但 React 应用的场景下够用。
mpa 由于不会引入 react-router 和 history,一个简单的 mpa 应用尺寸可以控制地很小。试了下 mpa + preact + 禁用 polyfill 的组合,产物只有 18 Kb(gzipped)。
构成如下,
详见 mpa 配置。
编译提速
分别试了下最简项目和 antdpro 项目,最简项目无缓存编译从 7s 到 2s,antdpro 初始项目无缓存编译从 48s 到 27s。
背后我们做了几件事,
两种 node_modules 编译方式
node_modules 到底走不走 babel 编译?是个很纠结的问题。Umi 3 时参考 create-react-app 的实践引入了全量编译,但引发了不少编译速度和 OOM 问题。
所以,我们把 Umi 2 时不编译 node_modules 的方式也加了回来,供大家选择。
两种方式,
详见 nodeModulesTransform 配置文档。
优化 defineConfig 的 TypeScript 体验,支持插件配置
之前的 defineConfig 只支持内置的配置项,现在通过把 joi 的 schema 定义自动转为 ts 定义的方式,支持了插件的配置项的 TS 提示和校验。
其他
The text was updated successfully, but these errors were encountered: