create-peachy 0.0.2 → 0.0.3

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
@@ -5,11 +5,11 @@ Initialise a peachy application.
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- npm create peachy
8
+ npm create peachy@latest
9
9
  ```
10
10
 
11
11
  If you use pnpm:
12
12
 
13
13
  ```bash
14
- pnpm create peachy
14
+ pnpm create peachy@latest
15
15
  ```
package/dist/index.mjs CHANGED
@@ -4,12 +4,12 @@ import { dirname, resolve } from "node:path";
4
4
  import h from "handlebars";
5
5
 
6
6
  //#region package.json
7
- var version = "0.0.2";
7
+ var version = "0.0.3";
8
8
 
9
9
  //#endregion
10
10
  //#region src/index.ts
11
11
  const TEMPLATE_DIR = resolve(import.meta.dirname, "..", "template");
12
- intro(`create-peachy`);
12
+ intro(`create-peachy v${version}`);
13
13
  const name = await text({
14
14
  message: "What is the name of your project?",
15
15
  placeholder: "peachy-app",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-peachy",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "description": "Bootstrap a peachy application",
6
6
  "bin": "./dist/index.mjs",
@@ -12,7 +12,8 @@
12
12
  },
13
13
  "files": [
14
14
  "dist",
15
- "template"
15
+ "template",
16
+ "template/.gitignore"
16
17
  ],
17
18
  "devDependencies": {
18
19
  "@types/node": "^25.0.9",
@@ -0,0 +1,2 @@
1
+ node_modules/
2
+ dist/