mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Fixed versioning and npm visibility for internal apps
- these apps don't need to be published because they're internal and get compiled into Admin - therefore, we can reset their versions back to 0.0.0 and remove the publishConfig block so we don't accidentally publish them
This commit is contained in:
parent
662d10077f
commit
0187d6b6a2
3 changed files with 6 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tryghost/admin-x-activitypub",
|
||||
"version": "0.0.1",
|
||||
"version": "0.0.0",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -14,10 +14,7 @@
|
|||
],
|
||||
"main": "./dist/admin-x-activitypub.umd.cjs",
|
||||
"module": "./dist/admin-x-activitypub.js",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"registry": "https://registry.npmjs.org/"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite build --watch",
|
||||
"dev:start": "vite",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tryghost/admin-x-demo",
|
||||
"version": "0.0.20",
|
||||
"version": "0.0.0",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -14,10 +14,7 @@
|
|||
],
|
||||
"main": "./dist/admin-x-demo.umd.cjs",
|
||||
"module": "./dist/admin-x-demo.js",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"registry": "https://registry.npmjs.org/"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite build --watch",
|
||||
"dev:start": "vite",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@tryghost/admin-x-settings",
|
||||
"version": "0.0.20",
|
||||
"version": "0.0.0",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
@ -20,10 +20,7 @@
|
|||
"require": "./dist/admin-x-settings.umd.cjs"
|
||||
}
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"registry": "https://registry.npmjs.org/"
|
||||
},
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite build --watch",
|
||||
"dev:start": "vite",
|
||||
|
|
Loading…
Add table
Reference in a new issue