fix(core): allow hyphens and underscores on identifiers, closes #9707#10700
fix(core): allow hyphens and underscores on identifiers, closes #9707#10700lucasfernog merged 8 commits intodevfrom
Conversation
Package Changes Through 003d8e8There are 5 changes which include tauri-utils with prerelease, tauri-cli with prerelease, @tauri-apps/cli with prerelease, tauri-build with prerelease, tauri-runtime-wry with prerelease Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
|
needs a wry fix i think |
|
Needs tauri-apps/tao#964 |
| println!("cargo:rustc-env=TAURI_ANDROID_PACKAGE_NAME_APP_NAME={w}"); | ||
| } else { | ||
| android_package_prefix.push_str(w); | ||
| android_package_prefix.push_str(&w.replace(['_', '-'], "_1")); |
There was a problem hiding this comment.
TAURI_ANDROID_PACKAGE_NAME_APP_NAME seemed to be replaced in
tauri/core/tauri-macros/src/mobile.rs
Lines 46 to 51 in 762cf31
android_binding!
Should we move that replacement to L479 as well? So that we can do it in one place.
Looks like we don't need it? Other than this one, I think it's good to merge |
yeah it was just the tao thing |
No description provided.