Skip to content
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

node_modules 中的模块是 symlink 时无法编译成功 #1413

Closed
cheese-git opened this issue Dec 7, 2018 · 4 comments
Closed

node_modules 中的模块是 symlink 时无法编译成功 #1413

cheese-git opened this issue Dec 7, 2018 · 4 comments
Assignees

Comments

@cheese-git
Copy link
Contributor

cheese-git commented Dec 7, 2018

问题描述

node_modules 中的模块是 symlink 时无法编译成功

复现步骤

目录结构:

image

taro-project/package.json:

image

然后:

> lerna bootstrap

lerna notice cli v3.5.1
lerna info Bootstrapping 3 packages
lerna info Symlinking packages and binaries
lerna success Bootstrapped 3 packages
// taro-project/src/pages/index/index.tsx
import { hello } from "my-package-abcd"

console.log(hello)
> cd packages/taro-project-1
> yarn dev:weapp

缺少npm包my-package,开始安装...
缺少npm包my-package,开始安装...
缺少npm包my-package,开始安装...
缺少npm包my-package,开始安装...
缺少npm包my-package,开始安装...
缺少npm包my-package,开始安装...
缺少npm包my-package,开始安装...
缺少npm包my-package,开始安装...

系统信息

  • 操作系统: win10
  • Taro 1.2.0 beta8
  • Node.js 版本 10.13.0

补充信息

发现这是 webpack 的问题:https://webpack.js.org/configuration/resolve/#resolve-symlinks

但是在 taro 项目的 config 中设置 symlinks:true 无效,希望可以提供对 webpack 的这项配置

另外,建议不要自动安装……
ts 自动导入的时候路径不一致也会自动安装……
如果包名字拼错了也会自动安装……
自动安装失败了最好也不要一直重复尝试……

@taro-bot
Copy link

taro-bot bot commented Dec 7, 2018

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@taro-bot
Copy link

taro-bot bot commented Dec 7, 2018

CC @luckyadam

@cheese-git cheese-git changed the title 使用 lerna.js 的情况下,node_modules 中的模块是 symlink 时无法编译成功 node_modules 中的模块是 symlink 时无法编译成功 Dec 7, 2018
@cheese-git
Copy link
Contributor Author

编译失败的原因不是 symlink, 而是我自己的项目和包没有编译成兼容的 js,且 Taro 并不会编译 node_modules 中的内容。

我可能和 #871 有一样的需求

@holin
Copy link

holin commented Jun 12, 2019

我也碰到有symlinks的目录编译失败的问题。
我尝试着把 klaw 升级到 3.0.0 就能正常遍历 symlink 的目录。
这个文件:
https://github.com/NervJS/taro/blob/master/packages/taro-cli/package.json
"klaw": "^2.1.1", 改成 "klaw": "^3.0.0",

不知道是否能升级。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants