mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 08:08:51 -05:00
Add publish scripts to Github registry
This commit is contained in:
parent
1471eb99ec
commit
3431832f6c
@ -1,7 +1,10 @@
|
||||
{
|
||||
"name": "com.mambojambostudios.unity-atoms-core",
|
||||
"displayName": "Unity Atoms Core",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.0-beta.0",
|
||||
"publishConfig": {
|
||||
"registry": "https://npm.pkg.github.com/"
|
||||
},
|
||||
"unity": "2019.1",
|
||||
"description": "Tiny modular pieces utilizing the power of Scriptable Objects",
|
||||
"keywords": [
|
||||
|
@ -1,7 +1,10 @@
|
||||
{
|
||||
"name": "com.mambojambostudios.unity-atoms-mobile",
|
||||
"displayName": "Unity Atoms Mobile",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.0-beta.0",
|
||||
"publishConfig": {
|
||||
"registry": "https://npm.pkg.github.com/"
|
||||
},
|
||||
"unity": "2019.1",
|
||||
"description": "Unity Atoms for your mobile project.",
|
||||
"keywords": [
|
||||
@ -18,6 +21,6 @@
|
||||
"/Editor.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.mambojambostudios.unity-atoms-core": "2.0.0"
|
||||
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.0"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
{
|
||||
"name": "com.mambojambostudios.unity-atoms-scene-mgmt",
|
||||
"displayName": "Unity Atoms Scene Mgmt",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.0-beta.0",
|
||||
"publishConfig": {
|
||||
"registry": "https://npm.pkg.github.com/"
|
||||
},
|
||||
"unity": "2019.1",
|
||||
"description": "Unity Atoms to manage your scenes.",
|
||||
"keywords": [
|
||||
@ -18,6 +21,6 @@
|
||||
"/Editor.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.mambojambostudios.unity-atoms-core": "2.0.0"
|
||||
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.0"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
{
|
||||
"name": "com.mambojambostudios.unity-atoms-tags",
|
||||
"displayName": "Unity Atoms Tags",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.0-beta.0",
|
||||
"publishConfig": {
|
||||
"registry": "https://npm.pkg.github.com/"
|
||||
},
|
||||
"unity": "2019.1",
|
||||
"description": "A tags system based Unity Atoms.",
|
||||
"keywords": [
|
||||
@ -18,6 +21,6 @@
|
||||
"/Editor.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.mambojambostudios.unity-atoms-core": "2.0.0"
|
||||
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.0"
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,10 @@
|
||||
{
|
||||
"name": "com.mambojambostudios.unity-atoms-ui",
|
||||
"displayName": "Unity Atoms UI",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.0-beta.0",
|
||||
"publishConfig": {
|
||||
"registry": "https://npm.pkg.github.com/"
|
||||
},
|
||||
"unity": "2019.1",
|
||||
"description": "An UI system using Unity Atoms.",
|
||||
"keywords": [
|
||||
@ -18,6 +21,6 @@
|
||||
"/Editor.meta"
|
||||
],
|
||||
"dependencies": {
|
||||
"com.mambojambostudios.unity-atoms-core": "2.0.0"
|
||||
"com.mambojambostudios.unity-atoms-core": "2.0.0-beta.0"
|
||||
}
|
||||
}
|
||||
|
11
package.json
11
package.json
@ -2,6 +2,9 @@
|
||||
"name": "com.mambojambostudios.unity-atoms",
|
||||
"displayName": "Unity Atoms",
|
||||
"version": "2.0.0",
|
||||
"publishConfig": {
|
||||
"registry": "https://npm.pkg.github.com/"
|
||||
},
|
||||
"unity": "2019.1",
|
||||
"description": "Tiny modular pieces utilizing the power of Scriptable Objects",
|
||||
"keywords": [
|
||||
@ -9,6 +12,14 @@
|
||||
"unity"
|
||||
],
|
||||
"category": "Unity",
|
||||
"scripts": {
|
||||
"publish:all": "npm run publish:core && npm run publish:mobile && npm run publish:scene && npm run publish:tags && npm run publish:ui",
|
||||
"publish:core": "npm publish ./Packages/Core --tag beta",
|
||||
"publish:mobile": "npm publish ./Packages/Mobile --tag beta",
|
||||
"publish:scene": "npm publish ./Packages/SceneMgmt --tag beta",
|
||||
"publish:tags": "npm publish ./Packages/Tags --tag beta",
|
||||
"publish:ui": "npm publish ./Packages/UI --tag beta"
|
||||
},
|
||||
"files": [
|
||||
"/LICENSE",
|
||||
"/LICENSE.meta",
|
||||
|
Loading…
Reference in New Issue
Block a user