@ardly/bunext 1.0.0 → 1.0.2

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.
@@ -16,8 +16,8 @@ const runCommand = (command) => {
16
16
  const repoName = process.argv[2]
17
17
  const gitCheckout = `git clone --depth 1 https://github.com/DarkidOP/Bunext.git ${repoName}`
18
18
  const installDeps = `cd ${repoName} && bun install`
19
- const removeGit = `rm -rf .git`
20
- const initGit = `git init && git add . && git commit -m "Initial commit"`
19
+ const removeGit = `cd ${repoName} && rm -rf .git`
20
+ const initGit = `cd ${repoName} && git init && git add . && git commit -m "Initial commit"`
21
21
 
22
22
  const rl = readline.createInterface({
23
23
  input: process.stdin,
package/package.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "name": "@ardly/bunext",
3
3
  "description": "Bunext - A Next.js 15 template with Tailwind CSS, shadcn ui and Bun with some utilities built in",
4
4
  "author": "Ard Astroid <ardastroid@gmail.com>",
5
- "version": "1.0.0",
6
- "bin": "./bin/cli.js",
5
+ "version": "1.0.2",
6
+ "bin": "./bin/cli.mjs",
7
7
  "scripts": {
8
8
  "dev": "next dev --turbopack",
9
9
  "build": "next build",
@@ -53,6 +53,8 @@
53
53
  "typescript": "^5.7.2"
54
54
  },
55
55
  "overrides": {
56
+ "react": "19.0.0",
57
+ "react-dom": "19.0.0",
56
58
  "@types/react": "19.0.1",
57
59
  "@types/react-dom": "19.0.2"
58
60
  }