create-nuxt-base 0.3.6 → 0.3.8

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/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.3.8](https://github.com/lenneTech/nuxt-base-starter/compare/v0.3.7...v0.3.8) (2025-02-17)
6
+
7
+
8
+ ### Features
9
+
10
+ * update packages ([786c54c](https://github.com/lenneTech/nuxt-base-starter/commit/786c54c26a074d8cef31805fe5d7737f2a966d35))
11
+
12
+ ### [0.3.7](https://github.com/lenneTech/nuxt-base-starter/compare/v0.3.6...v0.3.7) (2025-02-17)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * change commands from npm to pnpm ([0e513ee](https://github.com/lenneTech/nuxt-base-starter/commit/0e513eeb14c122cdbeb76fb2344ac60dd731d8bd))
18
+
5
19
  ### [0.3.6](https://github.com/lenneTech/nuxt-base-starter/compare/v0.3.5...v0.3.6) (2025-02-17)
6
20
 
7
21
 
package/index.js CHANGED
@@ -62,8 +62,8 @@ async function create() {
62
62
  await waitForChildProcess(gitInit);
63
63
 
64
64
  console.log('Installing dependencies ...');
65
- const npmInstall = spawn('npm', ['install'], { stdio: 'inherit' });
66
- await waitForSpawn(npmInstall);
65
+ const runInstall = spawn('pnpm', ['install'], { stdio: 'inherit' });
66
+ await waitForSpawn(runInstall);
67
67
 
68
68
  const removeGit = spawn('npx', ['rimraf', '.git'], { stdio: 'inherit' });
69
69
  await waitForSpawn(removeGit);
@@ -72,8 +72,8 @@ async function create() {
72
72
 
73
73
  if (autoStart) {
74
74
  console.log('Building Project ...');
75
- const npmRunBuild = spawn('npm', ['run', 'build'], { stdio: 'inherit' });
76
- await waitForSpawn(npmRunBuild)
75
+ const runBuild = spawn('pnpm', ['build'], { stdio: 'inherit' });
76
+ await waitForSpawn(runBuild)
77
77
  .then(() => console.log('✅ Project was successfully built'))
78
78
  .catch(() => console.log('❌ Error while building the project'));
79
79
 
@@ -86,8 +86,8 @@ async function create() {
86
86
  await waitForMS(1000);
87
87
  console.log(`Launching ${projectName} ... 🚀`);
88
88
  await waitForMS(1000);
89
- const npmRunDev = spawn('npm', ['run', 'start'], { stdio: 'inherit' });
90
- await waitForSpawn(npmRunDev);
89
+ const runDev = spawn('pnpm', ['start'], { stdio: 'inherit' });
90
+ await waitForSpawn(runDev);
91
91
  }
92
92
  }
93
93
 
@@ -51,6 +51,7 @@ export default defineNuxtConfig({
51
51
  ],
52
52
 
53
53
  nuxtBase: {
54
+ disableGraphql: false,
54
55
  generateTypes: process.env['GENERATE_TYPES'] === '1',
55
56
  gqlHost: process.env.API_URL + '/graphql',
56
57
  host: process.env.API_URL,
@@ -33,37 +33,36 @@
33
33
  "dependencies": {
34
34
  "@egoist/tailwindcss-icons": "1.9.0",
35
35
  "@iconify-json/bi": "1.2.2",
36
- "@lenne.tech/nuxt-base": "3.25.0",
36
+ "@lenne.tech/nuxt-base": "3.27.0",
37
37
  "@nuxt/image": "1.9.0",
38
38
  "@vee-validate/yup": "4.15.0",
39
- "@vueuse/core": "12.5.0",
40
- "@vueuse/integrations": "12.5.0",
41
- "@vueuse/nuxt": "12.5.0",
39
+ "@vueuse/core": "12.7.0",
40
+ "@vueuse/integrations": "12.7.0",
41
+ "@vueuse/nuxt": "12.7.0",
42
42
  "ios-pwa-splash": "1.0.0",
43
- "pinia": "2.3.1",
44
43
  "rimraf": "6.0.1",
45
44
  "tailwind-merge": "3.0.1",
46
- "tailwindcss": "^4.0.3",
45
+ "tailwindcss": "^4.0.6",
47
46
  "vee-validate": "4.15.0"
48
47
  },
49
48
  "devDependencies": {
50
49
  "@lenne.tech/eslint-config-vue": "1.0.5",
51
- "@nuxt/devtools": "2.0.0",
50
+ "@nuxt/devtools": "2.1.0",
52
51
  "@nuxt/test-utils": "3.15.4",
53
52
  "@nuxtjs/color-mode": "3.5.2",
54
53
  "@nuxtjs/google-fonts": "3.2.0",
55
54
  "@nuxtjs/plausible": "1.2.0",
56
55
  "@nuxtjs/robots": "5.2.2",
57
- "@nuxtjs/sitemap": "7.2.4",
56
+ "@nuxtjs/sitemap": "7.2.5",
58
57
  "@nuxtjs/tailwindcss": "6.13.1",
59
58
  "@playwright/test": "1.50.1",
60
59
  "@tailwindcss/forms": "0.5.10",
61
- "@tailwindcss/vite": "4.0.3",
60
+ "@tailwindcss/vite": "4.0.6",
62
61
  "@tailwindcss/typography": "0.5.16",
63
- "@types/node": "22.13.1",
62
+ "@types/node": "22.13.4",
64
63
  "@vitejs/plugin-vue": "5.2.1",
65
64
  "@vue/test-utils": "2.4.6",
66
- "eslint": "9.19.0",
65
+ "eslint": "9.20.1",
67
66
  "jsdom": "26.0.0",
68
67
  "nuxt": "3.15.4",
69
68
  "ts-loader": "9.5.2",