@kevinmarrec/create-app 0.6.1 → 0.6.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.
package/dist/index.js CHANGED
@@ -8,7 +8,7 @@ import { x } from "tinyexec";
8
8
  import fs from "node:fs/promises";
9
9
 
10
10
  //#region package.json
11
- var version = "0.6.1";
11
+ var version = "0.6.2";
12
12
 
13
13
  //#endregion
14
14
  //#region src/utils/fs.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kevinmarrec/create-app",
3
3
  "type": "module",
4
- "version": "0.6.1",
4
+ "version": "0.6.2",
5
5
  "packageManager": "bun@1.2.22",
6
6
  "description": "CLI that scaffolds an opinionated Bun & Vue fullstack application.",
7
7
  "author": "Kevin Marrec <kevin@marrec.io>",
@@ -44,25 +44,25 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@clack/prompts": "^0.11.0",
47
- "ansis": "^4.1.0",
47
+ "ansis": "^4.2.0",
48
48
  "pathe": "^2.0.3",
49
49
  "tinyexec": "^1.0.1"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@faker-js/faker": "^10.0.0",
53
- "@kevinmarrec/eslint-config": "^1.5.0",
54
- "@kevinmarrec/stylelint-config": "^1.2.0",
53
+ "@kevinmarrec/eslint-config": "^1.5.1",
54
+ "@kevinmarrec/stylelint-config": "^1.2.1",
55
55
  "@kevinmarrec/tsconfig": "^1.1.0",
56
- "@types/bun": "^1.2.22",
56
+ "@types/bun": "^1.2.23",
57
57
  "@vitest/coverage-v8": "^3.2.4",
58
58
  "bumpp": "^10.2.3",
59
59
  "eslint": "^9.36.0",
60
- "knip": "^5.63.1",
60
+ "knip": "^5.64.1",
61
61
  "stylelint": "^16.24.0",
62
62
  "taze": "^19.7.0",
63
- "tsdown": "^0.15.4",
64
- "typescript": "^5.9.2",
63
+ "tsdown": "^0.15.6",
64
+ "typescript": "^5.9.3",
65
65
  "vitest": "^3.2.4",
66
- "vue-tsc": "^3.0.7"
66
+ "vue-tsc": "^3.1.0"
67
67
  }
68
68
  }
@@ -13,21 +13,8 @@ jobs:
13
13
  name: Check
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
- - name: Checkout
17
- uses: actions/checkout@v4
18
-
19
- - name: Set up Bun
20
- uses: oven-sh/setup-bun@v2
21
- with:
22
- bun-version-file: package.json
23
-
24
- - name: Set up Node.js
25
- uses: actions/setup-node@v4
26
- with:
27
- node-version-file: package.json
28
-
29
- - name: Install dependencies
30
- run: bun install --frozen-lockfile
16
+ - name: Setup Bun
17
+ uses: kevinmarrec/workflows/setup-bun@v1
31
18
 
32
19
  - name: Check unused files, dependencies, and exports
33
20
  run: bun run check:unused
@@ -9,16 +9,16 @@
9
9
  "db:migrate": "bun --bun run drizzle-kit migrate --config src/database/drizzle/config.ts"
10
10
  },
11
11
  "dependencies": {
12
- "@orpc/server": "^1.8.9",
13
- "better-auth": "^1.3.13",
14
- "drizzle-orm": "^0.44.5",
15
- "pino": "^9.11.0",
12
+ "@orpc/server": "^1.9.2",
13
+ "better-auth": "^1.3.25",
14
+ "drizzle-orm": "^0.44.6",
15
+ "pino": "^9.13.0",
16
16
  "valibot": "^1.1.0"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@libsql/client": "^0.15.15",
20
- "@types/bun": "^1.2.22",
21
- "drizzle-kit": "^0.31.4",
20
+ "@types/bun": "^1.2.23",
21
+ "drizzle-kit": "^0.31.5",
22
22
  "pino-pretty": "^13.1.1"
23
23
  }
24
24
  }
@@ -9,24 +9,24 @@
9
9
  "preview": "vite preview --open"
10
10
  },
11
11
  "dependencies": {
12
- "@kevinmarrec/vue-i18n": "^1.1.0",
12
+ "@kevinmarrec/vue-i18n": "^1.1.1",
13
13
  "@orpc/client": "^1.8.9",
14
- "@orpc/tanstack-query": "1.6.4",
15
- "@tanstack/vue-query": "^5.89.0",
14
+ "@orpc/tanstack-query": "1.9.2",
15
+ "@tanstack/vue-query": "^5.90.2",
16
16
  "@unhead/vue": "^2.0.17",
17
- "unocss": "^66.5.1",
18
- "vue": "^3.5.21"
17
+ "unocss": "^66.5.2",
18
+ "vue": "^3.5.22"
19
19
  },
20
20
  "devDependencies": {
21
- "@kevinmarrec/unocss-config": "^1.3.0",
22
- "@kevinmarrec/vite-plugin-dark-mode": "^1.1.0",
21
+ "@kevinmarrec/unocss-config": "^1.3.2",
22
+ "@kevinmarrec/vite-plugin-dark-mode": "^1.1.1",
23
23
  "@modyfi/vite-plugin-yaml": "^1.1.1",
24
24
  "@unhead/addons": "^2.0.17",
25
- "@unocss/vite": "^66.5.1",
25
+ "@unocss/vite": "^66.5.2",
26
26
  "@vitejs/plugin-vue": "^6.0.1",
27
27
  "beasties": "^0.3.5",
28
- "rollup-plugin-visualizer": "^6.0.3",
29
- "vite": "^7.1.6",
28
+ "rollup-plugin-visualizer": "^6.0.4",
29
+ "vite": "^7.1.8",
30
30
  "vite-plugin-vue-devtools": "^8.0.2",
31
31
  "vite-ssg": "^28.1.0",
32
32
  "vite-tsconfig-paths": "^5.1.4"
@@ -21,15 +21,15 @@
21
21
  "lint:inspect": "bunx @eslint/config-inspector"
22
22
  },
23
23
  "devDependencies": {
24
- "@kevinmarrec/eslint-config": "^1.5.0",
25
- "@kevinmarrec/stylelint-config": "^1.2.0",
24
+ "@kevinmarrec/eslint-config": "^1.5.1",
25
+ "@kevinmarrec/stylelint-config": "^1.2.1",
26
26
  "@kevinmarrec/tsconfig": "^1.1.0",
27
27
  "concurrently": "^9.2.1",
28
28
  "eslint": "^9.36.0",
29
- "knip": "^5.63.1",
29
+ "knip": "^5.64.1",
30
30
  "stylelint": "^16.24.0",
31
31
  "taze": "^19.7.0",
32
- "typescript": "~5.9.2",
33
- "vue-tsc": "^3.0.7"
32
+ "typescript": "~5.9.3",
33
+ "vue-tsc": "^3.1.0"
34
34
  }
35
35
  }