-
-
Notifications
You must be signed in to change notification settings - Fork 172
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
处理不同操作系统运行工程的问题 #658
base: master
Are you sure you want to change the base?
处理不同操作系统运行工程的问题 #658
Conversation
在不同操作系统上,使用了node版本管理工具进行node版本管理时,直接执行npx会遇到node不是可运行命令的问题。这里明确将husky指定为node_modules。
删除名为WdTableCol的引入,消除冗余并保持项目整体风格统一。
在Windows系统中vscode默认是CRLF,通过设置默认为LF,git提交时自动将CRLF转为LF。
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Walkthrough此次更改涉及多个文件的配置和组件逻辑修改。首先,在 Changes
Suggested reviewers
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
✅ Deploy Preview for wot-design-uni ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
在运行pnpm build:docs命令进行文档打包时控制台会提示ReferenceError: location is not defined。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (2)
docs/.vitepress/theme/components/frame.vue (2)
8-8
: 使用 ref 声明 baseUrl 是个好主意,但初始值可以更灵活将
baseUrl
声明为 ref 是一个很好的改进,使其成为响应式变量。这样可以在运行时动态更新baseUrl
。然而,直接硬编码 localhost URL 作为初始值可能不够灵活。考虑使用一个更通用的初始值,或者从配置中读取。
建议修改如下:
-const baseUrl = ref('http://localhost:5173/demo/#/') +const baseUrl = ref('')这样可以在
onMounted
钩子中根据环境设置适当的值。
28-29
: 环境感知的 baseUrl 设置是个好主意,但可以进一步改进在
onMounted
钩子中根据环境设置baseUrl
是一个很好的做法。这允许在生产和开发环境中使用不同的 URL,并且在生产环境中添加时间戳来防止缓存问题。然而,有几点可以考虑改进:
- 使用
import.meta.env.PROD
替代process.env.NODE_ENV === 'production'
可能更符合 Vite 的最佳实践。- 开发环境的 URL 仍然硬编码为 localhost,这可能不够灵活。
- 可以考虑使用环境变量来配置这些 URL,以提高灵活性。
建议修改如下:
import.meta.env.PROD ? `${location.origin}/demo/?timestamp=${Date.now()}#/` : import.meta.env.VITE_DEV_URL || 'http://localhost:5173/demo/#/'这样可以通过环境变量
VITE_DEV_URL
来配置开发环境的 URL,提高了代码的灵活性和可维护性。
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
- docs/.vitepress/theme/components/frame.vue (2 hunks)
🧰 Additional context used
🔇 Additional comments (1)
docs/.vitepress/theme/components/frame.vue (1)
16-18
: 正确使用了 ref 的 .value 属性您正确地更新了
href
计算属性中baseUrl
的使用方式。由于baseUrl
现在是一个 ref,使用.value
来访问其值是必要的。这些更改确保了href
计算属性能够正确地响应baseUrl
的变化。代码逻辑保持不变,只是访问方法更新了,这是一个很好的改进。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
husky执行时报“node不是内部或外部命令”吗,感觉应该是node环境变量配置除了问题,尝试重新配置node环境变量看看呢。
🤔 这个 PR 的性质是?(至少选择一个)
🔗 相关 Issue
💡 需求背景和解决方案
我使用windows系统运行该项目遇到的一些问题。
☑️ 请求合并前的自查清单
Summary by CodeRabbit
新功能
wd-table
组件中添加了rowClick
方法,用于处理行点击事件。baseUrl
以适应不同环境。配置变更
.gitattributes
文件,确保在不同环境中一致处理文本文件的行结束符。.husky
脚本,以直接引用本地安装的commitlint
和lint-staged
工具。.vscode/settings.json
中添加了files.eol
设置,指定文件的行结束符为换行符。