@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meith/cli",
3
- "version": "0.17.0",
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/core": "0.17.0",
27
- "@meith/accounts": "0.17.0",
28
- "@meith/forums": "0.17.0",
29
- "@meith/db": "0.17.0",
30
- "@meith/demo": "0.17.0",
31
- "@meith/drivers": "0.17.0",
32
- "@meith/plugin-kit": "0.17.0",
33
- "@meith/profile-fields": "0.17.0",
34
- "@meith/runtime": "0.17.0",
35
- "@meith/settings": "0.17.0",
36
- "create-meith": "0.17.0",
37
- "@meith/tasks": "0.17.0"
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"
@@ -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(" # point Coolify at this repository's compose.yml and set MEITH_IMAGE to it")
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.0'
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) => ({