@emohk/bun-generator 1.0.0 → 1.0.6

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
@@ -12,7 +12,7 @@ It does the following things:
12
12
  ## Installation
13
13
 
14
14
  ```bash
15
- npm install -g @emohk/bun-generator
15
+ bun install -g @emohk/bun-generator
16
16
  ```
17
17
 
18
18
  ## Usage
@@ -21,7 +21,7 @@ npm install -g @emohk/bun-generator
21
21
  create-bun-app <project-name>
22
22
  ```
23
23
 
24
- <project-name> is optional. You can enter it later.
24
+ `<project-name>` is optional. You can enter it later.
25
25
 
26
26
  ## Development
27
27
 
package/dist/index.js CHANGED
@@ -7,4 +7,4 @@ Creating project: ${y}`),await V("bun",["init",y,"-y"]),console.log(`Installing
7
7
  outdir: './dist',
8
8
  target: 'bun',
9
9
  minify: true
10
- })`;await Bun.write(`${y}/${w}`,z);let G=`${y}/package.json`,x=await Bun.file(G).json();x.scripts={...x.scripts,test:"bun run index.ts",build:"bun run build.ts"},await Bun.write(G,JSON.stringify(x,null,2)),console.log("Done")};D();
10
+ })`;await Bun.write(`${y}/${w}`,z);let G=`${y}/package.json`,x=await Bun.file(G).json();x.scripts={...x.scripts,dev:"bun run index.ts",build:"bun run build.ts"},await Bun.write(G,JSON.stringify(x,null,2)),console.log("Done")};D();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emohk/bun-generator",
3
- "version": "1.0.0",
3
+ "version": "1.0.6",
4
4
  "description": "A generator for creating Bun projects",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -9,7 +9,7 @@
9
9
  "prepublishOnly": "bun run build"
10
10
  },
11
11
  "bin": {
12
- "create-bun-app": "./dist/index.js"
12
+ "create-bun-app": "dist/index.js"
13
13
  },
14
14
  "files": [
15
15
  "dist",
@@ -18,7 +18,7 @@
18
18
  ],
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "https://github.com/emocreation/bun-generator.git"
21
+ "url": "git+https://github.com/emocreation/bun-generator.git"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/bun": "latest",