I'm trying adding & removing User Package with some small test packages to know how VCC resolves dependencies, these days.
When I added and removed a package with the following
package.json
,
"com.anatawa12.custom-localization-for-editor-extension"
will still exist in dependencies.
I'm sorry if this will be fixed with unimplemented planned feature of VCC.
Steps to reproduce
  1. Create empty folder & create `
    package.json
    ` with the following json
  2. Add the created folder as user packages to Creator Companion.
  3. Select a project in CreatorCompanion
  4. Add 'UPM VPM Test' on User Packages tab
  5. Remove 'UPM VPM Test' on User Packages tab
Expected behavior
"com.anatawa12.custom-localization-for-editor-extension" does not exist in dependencies of project (
manifest.json
).
Actual behavior
"com.anatawa12.custom-localization-for-editor-extension" still exist in dependencies of project (
manifest.json
).
**The
package.json
file**
{
"name": "com.anatawa12.upm-vpm-test",
"displayName": "UPM VPM Test",
"version": "0.1.0",
"gitDependencies": {
"com.anatawa12.custom-localization-for-editor-extension": "https://github.com/anatawa12/CustomLocalization4EditorExtension.git#0.1.2"
}
}