-
Notifications
You must be signed in to change notification settings - Fork 80
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
copy只支持string[],在需要转换文件名或者目录层次上不太方便,是不是可以扩展到也支持{from:string,to:string}[] #1416
Comments
@stormslowly will provide a rfc |
类似这样子,string[] 应该怎么写? |
I noticed that the current copy configuration only supports basic string arrays, which can be limiting when we need more control over file destinations. This PR enhances the copy functionality to support both basic and advanced configuration modes. 🎯 What's Changed: 📝 Example Usage: {
"copy": [
"public", // Basic mode (backward compatible)
{ // Advanced mode
"from": "assets",
"to": "static"
}
]
} |
你好,这个issue有人认领吗 |
如题
The text was updated successfully, but these errors were encountered: