Skip to content

Commit

Permalink
Merge pull request #6 from caoxiemeihao/v0.3.0
Browse files Browse the repository at this point in the history
V0.3.0
  • Loading branch information
caoxiemeihao authored Jan 1, 2023
2 parents b4822c8 + 775caaa commit 61ad6ec
Show file tree
Hide file tree
Showing 6 changed files with 219 additions and 154 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.3.0 (2022-12-31)

- 5d90902 refactor: `vite-electron-plugin` instead `notbundle`
- b4822c8 Merge pull request #5 from gurvancampion/main
- 1a4fddb fix: build path & 404 error in production

## 0.2.0 (2022-12-12)

#### Break!
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Integrate Nuxt and Electron
## Install

```sh
npm i nuxt-electron electron electron-builder -D
npm i -D nuxt-electron vite-electron-plugin electron electron-builder
```

## Examples
Expand All @@ -34,5 +34,7 @@ export default defineNuxtConfig({
})
```

This is based on the `vite-electron-plugin` package, see the **[Documents](https://github.com/electron-vite/vite-electron-plugin#configuration)** for more detailed configuration information.

## Notes
By default, we force the App to run in SPA mode since we don't need SSR for desktop apps.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nuxt-electron",
"version": "0.2.0",
"version": "0.3.0",
"description": "Nuxt Integration with Electron",
"main": "index.mjs",
"types": "types",
Expand All @@ -23,17 +23,16 @@
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"esbuild": "*"
},
"dependencies": {
"notbundle": "^0.1.1"
"esbuild": "*",
"vite-electron-plugin": "*"
},
"devDependencies": {
"@types/node": "^18.7.18",
"esbuild": "^0.15.16",
"@types/node": "^18.11.18",
"esbuild": "^0.16.12",
"nuxt": "^3.0.0",
"typescript": "^4.9.3",
"vite": "^4.0.0"
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-electron-plugin": "^0.7.1"
},
"files": [
"electron-env.d.ts",
Expand All @@ -44,6 +43,7 @@
"keywords": [
"nuxt",
"plugin",
"module",
"electron"
]
}
Loading

0 comments on commit 61ad6ec

Please sign in to comment.