@meith/cli 0.17.0 → 0.17.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 +1 -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.17.
|
|
3
|
+
"version": "0.17.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": "LGPL-3.0-or-later",
|
|
6
6
|
"repository": {
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tsx": "^4.23.12",
|
|
26
|
-
"@meith/
|
|
27
|
-
"@meith/
|
|
28
|
-
"@meith/
|
|
29
|
-
"@meith/
|
|
30
|
-
"@meith/
|
|
31
|
-
"@meith/drivers": "0.17.
|
|
32
|
-
"@meith/plugin-kit": "0.17.
|
|
33
|
-
"@meith/profile-fields": "0.17.
|
|
34
|
-
"@meith/
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"@meith/
|
|
26
|
+
"@meith/accounts": "0.17.1",
|
|
27
|
+
"@meith/core": "0.17.1",
|
|
28
|
+
"@meith/db": "0.17.1",
|
|
29
|
+
"@meith/demo": "0.17.1",
|
|
30
|
+
"@meith/forums": "0.17.1",
|
|
31
|
+
"@meith/drivers": "0.17.1",
|
|
32
|
+
"@meith/plugin-kit": "0.17.1",
|
|
33
|
+
"@meith/profile-fields": "0.17.1",
|
|
34
|
+
"@meith/settings": "0.17.1",
|
|
35
|
+
"create-meith": "0.17.1",
|
|
36
|
+
"@meith/tasks": "0.17.1",
|
|
37
|
+
"@meith/runtime": "0.17.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"esbuild": "^0.28.2"
|
package/src/board-eject.ts
CHANGED
|
@@ -171,7 +171,7 @@ export async function boardEject(args: readonly string[]): Promise<number> {
|
|
|
171
171
|
console.log(' git init && git add -A && git commit -m "Graduate from the stock image"')
|
|
172
172
|
console.log(' # push it to a new GitHub repository')
|
|
173
173
|
console.log(' # .github/workflows/build.yml builds and pushes the image on every push to main —')
|
|
174
|
-
console.log(
|
|
174
|
+
console.log(' # point Coolify at this repository and set MEITH_IMAGE to the pushed image')
|
|
175
175
|
console.log(' # redeploy — same database, same uploads, same secrets, new image source')
|
|
176
176
|
console.log('')
|
|
177
177
|
console.log('See docs/marketplace.md, "Moving to a custom board", for the full walkthrough.')
|
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.17.
|
|
14
|
+
export const CODE_VERSION = '0.17.1'
|
|
15
15
|
|
|
16
16
|
export function pluginUpgrades(plugins: readonly PluginDefinition[]): readonly PluginUpgrade[] {
|
|
17
17
|
return plugins.map((plugin) => ({
|