@emohk/bun-generator 1.0.5 → 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/dist/index.js +1 -1
- package/package.json +1 -6
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,
|
|
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.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "A generator for creating Bun projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -16,11 +16,6 @@
|
|
|
16
16
|
"README.md",
|
|
17
17
|
"LICENSE"
|
|
18
18
|
],
|
|
19
|
-
"publishConfig": {
|
|
20
|
-
"access": "public",
|
|
21
|
-
"registry": "https://registry.npmjs.org/",
|
|
22
|
-
"provenance": true
|
|
23
|
-
},
|
|
24
19
|
"repository": {
|
|
25
20
|
"type": "git",
|
|
26
21
|
"url": "git+https://github.com/emocreation/bun-generator.git"
|