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

配置Alias且工作目录是符号链接时src目录内的文件被意外修改 #2175

Closed
AvailCat opened this issue Feb 14, 2019 · 3 comments

Comments

@AvailCat
Copy link

AvailCat commented Feb 14, 2019

问题描述
首先确保工作目录是符号链接,如:
运行 npm run dev 的路径是 C:\MyProject, 实际是链接到 D:\MyProject
先在 config/index.js 中添加 alias 配置:

alias: {
    "~": path.resolve(__dirname, '..', 'src/'),
},

然后在页面内使用如下方式 import 文件

import xxx from "~/utils/xxx.js"

运行 npm run dev 之后这些被页面引用的文件,例如 utils/xxx/js 都会被意外修改(Babel?),例如 process.env.XXX_URL 会被替换成实际的字符串,导致dist目录内的

期望行为
正常编译,不影响

异常行为
dist/pages/somepage 中看到了如下不太正常的代码,可能会导致处理 dist 目录内的文件时解析到 src 目录内的文件并修改 src 目录内的源代码

var _wechat = require("D:/WorkSpace/MiniApp/xxx/src/utils/wechat.js");

正常代码:

var _wechat = require("../../utils/wechat.js");

系统信息

Taro v1.2 及以上版本已添加 taro info 命令,方便大家查看系统及依赖信息,运行该命令后将结果贴下面即可。

  • 操作系统: Windows 10
  • Taro 版本 1.2.12
  • Node.js 版本 11.9.0
  • 报错平台 weapp

补充信息
Taro内部的Alias替换代码不正确?

@taro-bot
Copy link

taro-bot bot commented Feb 14, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@AvailCat AvailCat changed the title 配置Webpack Alias导致src目录内的文件被意外修改 [Windows] 配置Alias且工作目录是符号链接时src目录内的文件被意外修改 Feb 14, 2019
@AvailCat
Copy link
Author

PR #2176

@AvailCat
Copy link
Author

Merged #2176

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

1 participant