@meith/cli 0.26.0 → 0.26.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +13 -13
- package/src/board-eject.ts +6 -1
- package/src/upgrade.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meith/cli",
|
|
3
|
-
"version": "0.26.
|
|
3
|
+
"version": "0.26.1",
|
|
4
4
|
"description": "The operator CLI: migrations, backup and restore, imports, users and settings — and the community bin that runs it against an external board workspace.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tsx": "^4.23.12",
|
|
26
|
-
"@meith/accounts": "0.26.
|
|
27
|
-
"@meith/core": "0.26.
|
|
28
|
-
"@meith/db": "0.26.
|
|
29
|
-
"@meith/demo": "0.26.
|
|
30
|
-
"@meith/drivers": "0.26.
|
|
31
|
-
"@meith/forums": "0.26.
|
|
32
|
-
"@meith/plugin-kit": "0.26.
|
|
33
|
-
"@meith/profile-fields": "0.26.
|
|
34
|
-
"@meith/runtime": "0.26.
|
|
35
|
-
"@meith/settings": "0.26.
|
|
36
|
-
"@meith/tasks": "0.26.
|
|
37
|
-
"create-meith": "0.26.
|
|
26
|
+
"@meith/accounts": "0.26.1",
|
|
27
|
+
"@meith/core": "0.26.1",
|
|
28
|
+
"@meith/db": "0.26.1",
|
|
29
|
+
"@meith/demo": "0.26.1",
|
|
30
|
+
"@meith/drivers": "0.26.1",
|
|
31
|
+
"@meith/forums": "0.26.1",
|
|
32
|
+
"@meith/plugin-kit": "0.26.1",
|
|
33
|
+
"@meith/profile-fields": "0.26.1",
|
|
34
|
+
"@meith/runtime": "0.26.1",
|
|
35
|
+
"@meith/settings": "0.26.1",
|
|
36
|
+
"@meith/tasks": "0.26.1",
|
|
37
|
+
"create-meith": "0.26.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"esbuild": "^0.28.2"
|
package/src/board-eject.ts
CHANGED
|
@@ -237,7 +237,12 @@ export async function boardEject(args: readonly string[]): Promise<number> {
|
|
|
237
237
|
console.log(' git init && git add -A && git commit -m "Graduate from the stock image"')
|
|
238
238
|
console.log(' # push it to a new GitHub repository')
|
|
239
239
|
console.log(' # .github/workflows/build.yml builds and pushes the image on every push to main —')
|
|
240
|
-
console.log(
|
|
240
|
+
console.log(
|
|
241
|
+
' # point Coolify at this repository, on docker-compose.prebuilt.yaml, and set MEITH_IMAGE',
|
|
242
|
+
)
|
|
243
|
+
console.log(
|
|
244
|
+
' # to the pushed image (or docker-compose.yaml instead, which builds on the server)',
|
|
245
|
+
)
|
|
241
246
|
console.log(' # redeploy — same database, same uploads, same secrets, new image source')
|
|
242
247
|
console.log('')
|
|
243
248
|
console.log(
|
package/src/upgrade.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { type PluginDefinition, pluginNavigationPlacements } from '@meith/plugin
|
|
|
11
11
|
import { runPluginLifecycle } from '@meith/runtime'
|
|
12
12
|
import { type PluginUpgrade, planUpgrade, upgradeNotice } from '@meith/upgrade'
|
|
13
13
|
|
|
14
|
-
export const CODE_VERSION = '0.26.
|
|
14
|
+
export const CODE_VERSION = '0.26.1'
|
|
15
15
|
|
|
16
16
|
export function pluginUpgrades(plugins: readonly PluginDefinition[]): readonly PluginUpgrade[] {
|
|
17
17
|
return plugins.map((plugin) => ({
|