Skip to content

Commit

Permalink
0.4.0-preview.19 - 2019/03/14
Browse files Browse the repository at this point in the history
@2018.3
  • Loading branch information
ErikMoczi committed Mar 14, 2019
1 parent ec78018 commit 73c3864
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 2 additions & 4 deletions package/Editor/Unity.PackageValidationSuite.Editor.asmdef
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"name": "Unity.PackageValidationSuite.Editor",
"references": [
"GUID:15a615c733aa240909fe0b28b0d5143c"
],
"references": ["Unity.PackageManagerUI.Editor"],
"optionalUnityReferences": [],
"includePlatforms": [
"Editor"
Expand All @@ -20,4 +18,4 @@
"define": "PACKMAN_UI_INSTALLED"
}
]
}
}
7 changes: 7 additions & 0 deletions package/Editor/ValidationSuite/Utilities/CIUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,13 @@ internal static List<string> _Pack(string command, string path, string destinati
packagePaths.Add(packagePath);
}
}

// TODO: Remove this part when we switch to Packman API pack function
var packagesJsonPath = Path.Combine(path, "packages.json");
if (File.Exists(packagesJsonPath))
{
File.Delete(packagesJsonPath);
}

//See if upm-ci~ exists and remove
if (Directory.Exists(Path.Combine(path, "upm-ci~")))
Expand Down
4 changes: 2 additions & 2 deletions package/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "com.unity.package-validation-suite",
"displayName": "Package Validation Suite",
"version": "0.4.0-preview.18",
"version": "0.4.0-preview.19",
"unity": "2018.3",
"description": "Unity Package Manager validation suite, used to evaluate a package's integrity before it's considered for publishing. This is a Unity internal tool at the moment, no support will be provided for this package.",
"dependencies": {},
"repository": {
"type": "git",
"url": "[email protected]:unity/com.unity.package-validation-suite.git",
"revision": "84dbd24dffac6a70f3e4de4c8595b7b3b8f1fead"
"revision": "0a6b89a22c3aa33e2937ec8a6550b483b4594a3c"
}
}
1 change: 1 addition & 0 deletions versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@
0.4.0-preview.16
0.4.0-preview.17
0.4.0-preview.18
0.4.0-preview.19

0 comments on commit 73c3864

Please sign in to comment.