Skip to content

Commit 6e6eb3b

Browse files
committed
package init
1 parent 14d819b commit 6e6eb3b

25 files changed

+40
-40
lines changed
File renamed without changes.

PackageSampleProject/Assets/Scenes/SampleScene.unity.meta renamed to PluginsProject/Assets/Scenes/SampleScene.unity.meta

File renamed without changes.

PackageSampleProject/Packages/manifest.json renamed to PluginsProject/Packages/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
],
1111
"dependencies": {
12-
"com.stansassets.package-sample": "file:../../com.stansassets.package-sample",
12+
"com.stansassets.plugins-dev-kit": "file:../../com.stansassets.plugins-dev-kit",
1313
"com.unity.collab-proxy": "1.3.7",
1414
"com.unity.ide.rider": "1.2.1",
1515
"com.unity.ide.visualstudio": "2.0.1",
@@ -50,5 +50,5 @@
5050
"com.unity.modules.wind": "1.0.0",
5151
"com.unity.modules.xr": "1.0.0"
5252
},
53-
"testables" : ["com.stansassets.package-sample"]
53+
"testables" : ["com.stansassets.plugins-dev-kit"]
5454
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ I will list attributes that will affect how your package is displayed on the npm
3939
This is how `package.json` looks like in our template repository:
4040
```json
4141
{
42-
"name": "com.stansassets.package-sample",
42+
"name": "com.stansassets.plugins-dev-kit",
4343
"displayName": "Stans Assets - Package Sample",
4444
"version": "0.0.1-preview",
4545
"unity": "2019.3",
@@ -77,7 +77,7 @@ This is how `package.json` looks like in our template repository:
7777
* `.gitignore` - Git ignore file designed to this specific repository structure.
7878
* `README.md` - text file that introduces and explains a project.
7979
* `PackageSampleProject` - Team shared project for package development.
80-
* `com.stansassets.package-sample` - UMP package.
80+
* `com.stansassets.plugins-dev-kit` - UMP package.
8181

8282
This structure was chosen for the following reasons:
8383
1. Scalability. Since the package isn't located in the repository root, you can host more than one package in the repository.
@@ -98,7 +98,7 @@ This structure was chosen for the following reasons:
9898
}
9999
],
100100
"dependencies": {
101-
"com.stansassets.package-sample": "file:../../com.stansassets.package-sample",
101+
"com.stansassets.plugins-dev-kit": "file:../../com.stansassets.plugins-dev-kit",
102102
```
103103

104104
Note:

com.stansassets.package-sample/Editor/AssemblyInfo.cs

Lines changed: 0 additions & 3 deletions
This file was deleted.

com.stansassets.package-sample/Runtime/AssemblyInfo.cs

Lines changed: 0 additions & 4 deletions
This file was deleted.
File renamed without changes.

com.stansassets.package-sample/Documentation~/com.stansassets.package-sample.md renamed to com.stansassets.plugins-dev-kit/Documentation~/com.stansassets.plugins-dev-kit.md

File renamed without changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
using System.Runtime.CompilerServices;
2+
3+
[assembly: InternalsVisibleTo("StansAssets.Plugins.EditorTests")]

0 commit comments

Comments
 (0)