@meith/web 0.25.1 → 0.26.0

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.
@@ -33,7 +33,7 @@ export default async function AdminPluginsPage() {
33
33
  title={t.t('page.plugins')}
34
34
  lede={
35
35
  <>
36
- {t.t('adminPlugins.ledeBefore')} <code className="text-xs">community.config.ts</code>{' '}
36
+ {t.t('adminPlugins.ledeBefore')} <code className="text-xs">meith.config.ts</code>{' '}
37
37
  {t.t('adminPlugins.ledeAfter')}
38
38
  </>
39
39
  }
@@ -169,7 +169,7 @@ export default async function AdminThemesPage() {
169
169
  {translator.t('adminThemes.deployBefore')} <em>exist</em>
170
170
  {translator.t('adminThemes.deployAfterExist')} <code className="text-xs">pnpm add</code>{' '}
171
171
  {translator.t('adminThemes.deployAfterAdd')}{' '}
172
- <code className="text-xs">community.config.ts</code>
172
+ <code className="text-xs">meith.config.ts</code>
173
173
  {translator.t('adminThemes.deployAfterConfig')}{' '}
174
174
  <code className="text-xs">defaultTheme</code> {translator.t('adminThemes.deployEnd')}
175
175
  </p>
package/bin/forum-web.mjs CHANGED
@@ -233,12 +233,12 @@ function monorepoAliases() {
233
233
  }
234
234
 
235
235
  function materialize() {
236
- const boardConfig = join(workspaceRoot, 'community.config.ts')
237
- const boardPlugins = join(workspaceRoot, 'community.plugins.ts')
236
+ const boardConfig = join(workspaceRoot, 'meith.config.ts')
237
+ const boardPlugins = join(workspaceRoot, 'meith.plugins.ts')
238
238
 
239
239
  if (!existsSync(boardConfig)) {
240
240
  fail(
241
- `no community.config.ts in ${workspaceRoot}. Run forum-web from a board's own ` +
241
+ `no meith.config.ts in ${workspaceRoot}. Run forum-web from a board's own ` +
242
242
  'directory — the one create-meith scaffolded, or one shaped like it.',
243
243
  )
244
244
  }
@@ -166,8 +166,8 @@ describe('materializing at the workspace root', () => {
166
166
 
167
167
  function board(): string {
168
168
  const dir = mkdtempSync(join(tmpdir(), 'forum-web-at-root-'))
169
- writeFileSync(join(dir, 'community.config.ts'), 'export default {}\n')
170
- writeFileSync(join(dir, 'community.plugins.ts'), 'export const INSTALLED_PLUGINS = []\n')
169
+ writeFileSync(join(dir, 'meith.config.ts'), 'export default {}\n')
170
+ writeFileSync(join(dir, 'meith.plugins.ts'), 'export const INSTALLED_PLUGINS = []\n')
171
171
  boards.push(dir)
172
172
  return dir
173
173
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meith/web",
3
- "version": "0.25.1",
3
+ "version": "0.26.0",
4
4
  "description": "The board itself: the Next.js app, and the forum-web bin that materializes it into an external board workspace.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -43,53 +43,53 @@
43
43
  "react-dom": "19.2.8",
44
44
  "tailwindcss": "^4.3.3",
45
45
  "typescript": "7.0.2",
46
- "@meith/accounts": "0.25.1",
47
- "@meith/admin": "0.25.1",
48
- "@meith/antispam": "0.25.1",
49
- "@meith/api": "0.25.1",
50
- "@meith/attachments": "0.25.1",
51
- "@meith/authorization": "0.25.1",
52
- "@meith/avatars": "0.25.1",
53
- "@meith/core": "0.25.1",
54
- "@meith/db": "0.25.1",
55
- "@meith/demo": "0.25.1",
56
- "@meith/drafts": "0.25.1",
57
- "@meith/drivers": "0.25.1",
58
- "@meith/events": "0.25.1",
59
- "@meith/forums": "0.25.1",
60
- "@meith/groups": "0.25.1",
61
- "@meith/i18n": "0.25.1",
62
- "@meith/import": "0.25.1",
63
- "@meith/install": "0.25.1",
64
- "@meith/mail": "0.25.1",
65
- "@meith/markdown": "0.25.1",
66
- "@meith/marketplace": "0.25.1",
67
- "@meith/messages": "0.25.1",
68
- "@meith/moderation": "0.25.1",
69
- "@meith/notifications": "0.25.1",
70
- "@meith/plugin-calendar": "0.25.1",
71
- "@meith/plugin-dues": "0.25.1",
72
- "@meith/plugin-kit": "0.25.1",
73
- "@meith/polls": "0.25.1",
74
- "@meith/posts": "0.25.1",
75
- "@meith/profile-fields": "0.25.1",
76
- "@meith/relations": "0.25.1",
77
- "@meith/reputation": "0.25.1",
78
- "@meith/search": "0.25.1",
79
- "@meith/runtime": "0.25.1",
80
- "@meith/settings": "0.25.1",
81
- "@meith/signatures": "0.25.1",
82
- "@meith/subscriptions": "0.25.1",
83
- "@meith/tasks": "0.25.1",
84
- "@meith/theme-clubhouse": "0.25.1",
85
- "@meith/theme-default": "0.25.1",
86
- "@meith/theme-kit": "0.25.1",
87
- "@meith/theme-midnight": "0.25.1",
88
- "@meith/theme-phasebook": "0.25.1",
89
- "@meith/theme-raidframe": "0.25.1",
90
- "@meith/threads": "0.25.1",
91
- "@meith/ui": "0.25.1",
92
- "@meith/upgrade": "0.25.1"
46
+ "@meith/accounts": "0.26.0",
47
+ "@meith/admin": "0.26.0",
48
+ "@meith/antispam": "0.26.0",
49
+ "@meith/api": "0.26.0",
50
+ "@meith/attachments": "0.26.0",
51
+ "@meith/authorization": "0.26.0",
52
+ "@meith/avatars": "0.26.0",
53
+ "@meith/core": "0.26.0",
54
+ "@meith/db": "0.26.0",
55
+ "@meith/demo": "0.26.0",
56
+ "@meith/drafts": "0.26.0",
57
+ "@meith/drivers": "0.26.0",
58
+ "@meith/events": "0.26.0",
59
+ "@meith/forums": "0.26.0",
60
+ "@meith/groups": "0.26.0",
61
+ "@meith/i18n": "0.26.0",
62
+ "@meith/import": "0.26.0",
63
+ "@meith/install": "0.26.0",
64
+ "@meith/mail": "0.26.0",
65
+ "@meith/markdown": "0.26.0",
66
+ "@meith/marketplace": "0.26.0",
67
+ "@meith/messages": "0.26.0",
68
+ "@meith/moderation": "0.26.0",
69
+ "@meith/notifications": "0.26.0",
70
+ "@meith/plugin-calendar": "0.26.0",
71
+ "@meith/plugin-dues": "0.26.0",
72
+ "@meith/plugin-kit": "0.26.0",
73
+ "@meith/polls": "0.26.0",
74
+ "@meith/posts": "0.26.0",
75
+ "@meith/profile-fields": "0.26.0",
76
+ "@meith/relations": "0.26.0",
77
+ "@meith/reputation": "0.26.0",
78
+ "@meith/runtime": "0.26.0",
79
+ "@meith/search": "0.26.0",
80
+ "@meith/settings": "0.26.0",
81
+ "@meith/subscriptions": "0.26.0",
82
+ "@meith/signatures": "0.26.0",
83
+ "@meith/tasks": "0.26.0",
84
+ "@meith/theme-clubhouse": "0.26.0",
85
+ "@meith/theme-default": "0.26.0",
86
+ "@meith/theme-kit": "0.26.0",
87
+ "@meith/theme-midnight": "0.26.0",
88
+ "@meith/theme-phasebook": "0.26.0",
89
+ "@meith/theme-raidframe": "0.26.0",
90
+ "@meith/threads": "0.26.0",
91
+ "@meith/ui": "0.26.0",
92
+ "@meith/upgrade": "0.26.0"
93
93
  },
94
94
  "scripts": {
95
95
  "dev": "next dev",
@@ -25,7 +25,7 @@ export const buildTheme: ResolvedTheme = RESOLVED.get(forumConfig.defaultTheme)!
25
25
 
26
26
  if (buildTheme === undefined) {
27
27
  throw new Error(
28
- `community.config.ts: defaultTheme "${forumConfig.defaultTheme}" fills no slots, so this ` +
28
+ `meith.config.ts: defaultTheme "${forumConfig.defaultTheme}" fills no slots, so this ` +
29
29
  'board cannot render a page. A token-only theme is legitimate as an alternate, ' +
30
30
  'never as the theme a build is made of.',
31
31
  )
@@ -6,7 +6,7 @@ import { planUpgrade, type UpgradeState, upgradeNotice } from '@meith/upgrade'
6
6
 
7
7
  import { activeDefinitions } from './plugin-host'
8
8
 
9
- export const CODE_VERSION = '0.25.1'
9
+ export const CODE_VERSION = '0.26.0'
10
10
 
11
11
  export async function pendingUpgradeNotice(): Promise<string | null> {
12
12
  if (env.DATA_SOURCE !== 'postgres') return null