create-smoodly-app 0.0.9 → 0.0.10

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/README.md CHANGED
@@ -25,7 +25,10 @@ sign in. Spec: `docs/superpowers/specs/2026-09-04-create-smoodly-app-design.md`.
25
25
  from the URL so the CLI never opens its project picker). The URL may be
26
26
  pasted without `https://`; anything that is not an http(s) URL is refused
27
27
  before any step runs. A custom domain has no ref, so the link is not
28
- offered and the two commands are printed instead.
28
+ offered and the two commands are printed instead. Either way the
29
+ project is Smoodly's own: its tables are created unprefixed in `public`,
30
+ so an app that keeps its own tables in Supabase gives them a project of
31
+ their own, or takes Smoodly Cloud for content (DESIGN.md §1).
29
32
  4. The first editor: pick an existing Auth user or create one (email +
30
33
  password). The `editors` row is written with role `owner`.
31
34
  If `@` does not appear when you type it (macOS, `@` on Option+2 with the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-smoodly-app",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "Create a Smoodly site: a fresh Next.js app with the admin mounted, a Supabase schema, an env file and a first editor.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -12,7 +12,9 @@ export const imageTextSchema = smoodly.schema.section({
12
12
  fields: {
13
13
  image: f.image().optional(),
14
14
  heading: f.text(),
15
- text: f.richtext(),
15
+ // Body copy beside a photo: emphasis and links, no headings — the block's
16
+ // own heading field owns that. Every other richtext field takes the default.
17
+ text: f.richtext({ toolset: smoodly.toolset({ marks: ["bold", "italic", "link"] }) }),
16
18
  link: f.object({ label: f.text(), href: f.link() }).optional(),
17
19
  },
18
20
  styles: {
@@ -14,7 +14,7 @@
14
14
  "next": "^16.3.4",
15
15
  "react": "^19",
16
16
  "react-dom": "^19",
17
- "smoodly": "0.0.9"
17
+ "smoodly": "0.0.10"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@next/env": "^16.3.4",
@@ -12,7 +12,9 @@ export const imageTextSchema = smoodly.schema.section({
12
12
  fields: {
13
13
  image: f.image().optional(),
14
14
  heading: f.text(),
15
- text: f.richtext(),
15
+ // Body copy beside a photo: emphasis and links, no headings — the block's
16
+ // own heading field owns that. Every other richtext field takes the default.
17
+ text: f.richtext({ toolset: smoodly.toolset({ marks: ["bold", "italic", "link"] }) }),
16
18
  link: f.object({ label: f.text(), href: f.link() }).optional(),
17
19
  },
18
20
  styles: {
@@ -14,7 +14,7 @@
14
14
  "next": "^16.3.4",
15
15
  "react": "^19",
16
16
  "react-dom": "^19",
17
- "smoodly": "0.0.9",
17
+ "smoodly": "0.0.10",
18
18
  "next-intl": "^4.14.2"
19
19
  },
20
20
  "devDependencies": {