create-peachy 0.0.11 → 0.0.12

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/dist/index.mjs CHANGED
@@ -3,10 +3,8 @@ import { mkdir, readFile, readdir, stat, writeFile } from "node:fs/promises";
3
3
  import { dirname, resolve } from "node:path";
4
4
  import { intro, log, outro, spinner, text } from "@clack/prompts";
5
5
  import h from "handlebars";
6
-
7
6
  //#region package.json
8
- var version = "0.0.11";
9
-
7
+ var version = "0.0.12";
10
8
  //#endregion
11
9
  //#region src/index.ts
12
10
  const TEMPLATE_DIR = resolve(import.meta.dirname, "..", "template");
@@ -35,13 +33,12 @@ for (const file of files) {
35
33
  safeName,
36
34
  peachyVersion,
37
35
  reactVersion: "^19.2.4",
38
- reactTypesVersion: "^19.2.13"
36
+ reactTypesVersion: "^19.2.14"
39
37
  }));
40
38
  }
41
39
  s.stop("Copied files");
42
40
  log.success(`Initialized peachy project at: ${OUTDIR}`);
43
41
  log.info(`Remember to \`npm install\` and \`npm run dev\` to get started.`);
44
42
  outro(`Done!`);
45
-
46
43
  //#endregion
47
- export { };
44
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-peachy",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "description": "Bootstrap a peachy application",
5
5
  "license": "MIT",
6
6
  "author": "",
@@ -12,13 +12,13 @@
12
12
  ],
13
13
  "type": "module",
14
14
  "dependencies": {
15
- "@clack/prompts": "^1.0.0",
15
+ "@clack/prompts": "^1.1.0",
16
16
  "handlebars": "^4.7.8"
17
17
  },
18
18
  "devDependencies": {
19
- "@types/node": "^25.2.1",
20
- "rolldown": "1.0.0-rc.3",
21
- "tsdown": "0.20.3",
19
+ "@types/node": "^25.3.5",
20
+ "rolldown": "1.0.0-rc.7",
21
+ "tsdown": "0.21.0",
22
22
  "tsx": "^4.21.0",
23
23
  "typescript": "^5.9.3"
24
24
  },
@@ -8,7 +8,7 @@ export function Counter() {
8
8
 
9
9
  return (
10
10
  <Adw.ToolbarView>
11
- <Adw.HeaderBar childType="top" />
11
+ <Adw.HeaderBar $type="top" />
12
12
  <Gtk.Box>
13
13
  <Gtk.Button onClicked={() => setCount(count - 1)}>-</Gtk.Button>
14
14
  <Gtk.Label hexpand label={count.toString()} />