Skip to content

Commit 18939aa

Browse files
committed
chore: update Node.js version to 22.12.0 and increment package version to 0.0.11
1 parent 12f3db1 commit 18939aa

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Node.js
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: "20"
23+
node-version: "22.12.0"
2424
cache: "npm"
2525

2626
- name: Install dependencies
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Node.js
4747
uses: actions/setup-node@v4
4848
with:
49-
node-version: "20"
49+
node-version: "22.12.0"
5050
cache: "npm"
5151
registry-url: "https://registry.npmjs.org"
5252

bin/nuxt-electron-init.cjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ function checkNuxtInstallation() {
260260
return
261261
}
262262

263-
console.log("⚠️ Nuxt is not installed. Installing now...")
263+
console.log("⚠️ Nuxt is not installed. Installing now...")
264264
console.log("🚀 Running: npm create nuxt@latest new-nuxt-electron\n")
265265
execSync("npm create nuxt@latest new-nuxt-electron", {
266266
stdio: "inherit",
@@ -279,7 +279,7 @@ function updateNuxtConfig() {
279279
const nuxtConfigPath = path.join(process.cwd(), "nuxt.config.ts")
280280

281281
if (!fs.existsSync(nuxtConfigPath)) {
282-
console.log("⚠️ nuxt.config.ts not found, skipping...")
282+
console.log("⚠️ nuxt.config.ts not found, skipping...")
283283
return
284284
}
285285

@@ -317,7 +317,7 @@ checkNuxtInstallation()
317317
Object.entries(templates).forEach(([filename, content]) => {
318318
const filePath = path.join(process.cwd(), filename)
319319
if (fs.existsSync(filePath)) {
320-
console.log(`⚠️ ${filename} already exists, skipping...`)
320+
console.log(`⚠️ ${filename} already exists, skipping...`)
321321
} else {
322322
createFile(filePath, content)
323323
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@atmoner/nuxt-electron",
3-
"version": "0.0.10",
3+
"version": "0.0.11",
44
"description": "Nuxt 4 module for Electron integration with Electron Forge",
55
"author": "atmoner",
66
"license": "MIT",

0 commit comments

Comments
 (0)