forked from LokerL/tts-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ed494f3
Showing
39 changed files
with
10,690 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
|
||
name: 🐞 Bug report | ||
about: Create a report to help us improve | ||
title: "[Bug] the title of bug report" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### Describe the bug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
name: 🥺 Help wanted | ||
about: Confuse about the use of electron-vue-vite | ||
title: "[Help] the title of help wanted report" | ||
labels: help wanted | ||
assignees: '' | ||
|
||
--- | ||
|
||
#### Describe the problem you confuse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!-- Thank you for contributing! --> | ||
|
||
### Description | ||
|
||
<!-- Please insert your description here and provide especially info about the "what" this PR is solving --> | ||
|
||
### What is the purpose of this pull request? <!-- (put an "X" next to an item) --> | ||
|
||
- [ ] Bug fix | ||
- [ ] New Feature | ||
- [ ] Documentation update | ||
- [ ] Other |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "monthly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
release: | ||
branches: [main] | ||
types: | ||
- published | ||
paths-ignore: | ||
- "**.md" | ||
- "**.spec.js" | ||
- ".idea" | ||
- ".vscode" | ||
- ".dockerignore" | ||
- "Dockerfile" | ||
- ".gitignore" | ||
- ".github/**" | ||
- "!.github/workflows/release.yml" | ||
|
||
defaults: | ||
run: | ||
shell: "bash" | ||
|
||
jobs: | ||
build: | ||
# see more environment https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on | ||
runs-on: [ubuntu-20.04] | ||
# https://www.electron.build/multi-platform-build#provided-docker-images | ||
container: electronuserland/builder:wine | ||
|
||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ELECTRON_BUILDER_CACHE: "/root/.cache/electron-builder" | ||
ELECTRON_CACHE: "/root/.cache/electron" | ||
|
||
strategy: | ||
matrix: | ||
node: ["14"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Use Node.js ${{ matrix.node }} | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
|
||
- name: Install dependencies | ||
run: npm i | ||
|
||
# - name: Run tests | ||
# run: npm run test | ||
|
||
# - name: Build dependencies | ||
# run: npm run build | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# - uses: actions/upload-artifact@v2 | ||
# with: | ||
# name: upload-artifact | ||
# path: | | ||
# release/electron-vue-vite*.exe | ||
# release/electron-vue-vite*.AppImage | ||
# release/electron-vue-vite*.snap | ||
|
||
# https://github.com/marketplace/actions/electron-builder-action | ||
- name: Compile & Release Electron app | ||
uses: samuelmeuli/action-electron-builder@v1 | ||
with: | ||
build_script_name: prebuild | ||
args: --config electron-builder.json5 | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
release: ${{ startsWith(github.ref, 'refs/tags/v') && github.event_name == 'push' && needs.get_metadata.outputs.branch == 'main'}} | ||
max_attempts: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
||
release | ||
.vscode/.debug.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import fs from 'fs' | ||
import path from 'path' | ||
import { fileURLToPath } from 'url' | ||
import { createRequire } from 'module' | ||
import { spawn } from 'child_process' | ||
|
||
const pkg = createRequire(import.meta.url)('../package.json') | ||
const __dirname = path.dirname(fileURLToPath(import.meta.url)) | ||
|
||
// write .debug.env | ||
const envContent = Object.entries(pkg.env).map(([key, val]) => `${key}=${val}`) | ||
fs.writeFileSync(path.join(__dirname, '.debug.env'), envContent.join('\n')) | ||
|
||
// bootstrap | ||
spawn( | ||
// TODO: terminate `npm run dev` when Debug exits. | ||
process.platform === 'win32' ? 'npm.cmd' : 'npm', | ||
['run', 'dev'], | ||
{ | ||
stdio: 'inherit', | ||
env: Object.assign(process.env, { VSCODE_DEBUG: 'true' }), | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"recommendations": [ | ||
"Vue.volar", | ||
"Vue.vscode-typescript-vue-plugin" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"compounds": [ | ||
{ | ||
"name": "Debug App", | ||
"preLaunchTask": "Before Debug", | ||
"configurations": [ | ||
"Debug Main Process", | ||
"Debug Renderer Process" | ||
], | ||
"presentation": { | ||
"hidden": false, | ||
"group": "", | ||
"order": 1 | ||
}, | ||
"stopAll": true | ||
} | ||
], | ||
"configurations": [ | ||
{ | ||
"name": "Debug Main Process", | ||
"type": "pwa-node", | ||
"request": "launch", | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron", | ||
"windows": { | ||
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd" | ||
}, | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9229", | ||
"." | ||
], | ||
"envFile": "${workspaceFolder}/.vscode/.debug.env" | ||
}, | ||
{ | ||
"name": "Debug Renderer Process", | ||
"port": 9229, | ||
"request": "attach", | ||
"type": "pwa-chrome" | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Before Debug", | ||
"type": "shell", | ||
"command": "node .vscode/.debug.script.mjs", | ||
"isBackground": true, | ||
"problemMatcher": { | ||
"owner": "typescript", | ||
"fileLocation": "relative", | ||
"pattern": { | ||
"regexp": "^([a-zA-Z]\\:\/?([\\w\\-]\/?)+\\.\\w+):(\\d+):(\\d+): (ERROR|WARNING)\\: (.*)$", | ||
"file": 1, | ||
"line": 3, | ||
"column": 4, | ||
"code": 5, | ||
"message": 6 | ||
}, | ||
"background": { | ||
"activeOnStart": true, | ||
"beginsPattern": "^.*building for development.*$", | ||
"endsPattern": "built in [0-9]*ms.*$", | ||
} | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## 2022-06-04 | ||
|
||
[v2.0.0](https://github.com/electron-vite/electron-vite-vue/pull/156) | ||
|
||
- 🖖 Based on the `vue-ts` template created by `npm create vite`, integrate `vite-plugin-electron` | ||
- ⚡️ More simplify, is in line with Vite project structure | ||
|
||
## 2022-01-30 | ||
|
||
[v1.0.0](https://github.com/electron-vite/electron-vite-vue/releases/tag/v1.0.0) | ||
|
||
- ⚡️ Main、Renderer、preload, all built with vite | ||
|
||
## 2022-01-27 | ||
- Refactor the scripts part. | ||
- Remove `configs` directory. | ||
|
||
## 2021-11-11 | ||
- Refactor the project. Use vite.config.ts build `Main-process`, `Preload-script` and `Renderer-process` alternative rollup. | ||
- Scenic `Vue>=3.2.13`, `@vue/compiler-sfc` is no longer necessary. | ||
- If you prefer Rollup, Use rollup branch. | ||
|
||
```bash | ||
Error: @vitejs/plugin-vue requires vue (>=3.2.13) or @vue/compiler-sfc to be present in the dependency tree. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 草鞋没号 | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# electron-vite-vue | ||
|
||
🥳 Really simple `Electron` + `Vue` + `Vite` boilerplate. | ||
|
||
[![awesome-vite](https://awesome.re/mentioned-badge.svg)](https://github.com/vitejs/awesome-vite) | ||
[![Netlify Status](https://api.netlify.com/api/v1/badges/ae3863e3-1aec-4eb1-8f9f-1890af56929d/deploy-status)](https://app.netlify.com/sites/electron-vite/deploys) | ||
![GitHub license](https://img.shields.io/github/license/caoxiemeihao/electron-vite-vue?style=flat) | ||
![GitHub stars](https://img.shields.io/github/stars/caoxiemeihao/electron-vite-vue?color=fa6470&style=flat) | ||
![GitHub forks](https://img.shields.io/github/forks/caoxiemeihao/electron-vite-vue?style=flat) | ||
|
||
## Features | ||
|
||
📦 Out of the box | ||
🎯 Based on the official [vue-ts](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-vue-ts) template, less invasive | ||
🌱 Extensible, really simple directory structure | ||
💪 Support using Node.js API in Electron-Renderer | ||
🔩 Support C/C++ native addons | ||
🖥 It's easy to implement multiple windows | ||
|
||
## Quick Start | ||
|
||
```sh | ||
npm create electron-vite | ||
``` | ||
|
||
<!-- [![quick-start](https://asciinema.org/a/483731.svg)](https://asciinema.org/a/483731) --> | ||
|
||
![electron-vite-vue.gif](https://github.com/electron-vite/electron-vite-vue/blob/main/public/electron-vite-vue.gif?raw=true) | ||
|
||
## Debug | ||
|
||
![electron-vite-react-debug.gif](https://github.com/electron-vite/electron-vite-react/blob/main/public/electron-vite-react-debug.gif?raw=true) | ||
|
||
## Directory | ||
|
||
```diff | ||
+ ├─┬ electron | ||
+ │ ├─┬ main | ||
+ │ │ └── index.ts entry of Electron-Main | ||
+ │ └─┬ preload | ||
+ │ └── index.ts entry of Preload-Scripts | ||
├─┬ src | ||
│ └── main.ts entry of Electron-Renderer | ||
├── index.html | ||
├── package.json | ||
└── vite.config.ts | ||
``` | ||
|
||
## 🚨 Be aware | ||
|
||
By default, this template integrates Node.js in the Renderer process. If you don't need it, you just remove the option below. [Because it will modify the default config of Vite](https://github.com/electron-vite/vite-plugin-electron/tree/main/packages/electron-renderer#config-presets-opinionated). | ||
|
||
```diff | ||
# vite.config.ts | ||
|
||
electron({ | ||
- renderer: {} | ||
}) | ||
``` | ||
|
||
## FAQ | ||
|
||
- [dependencies vs devDependencies](https://github.com/electron-vite/vite-plugin-electron/tree/main/packages/electron-renderer#dependencies-vs-devdependencies) | ||
- [Using C/C++ native addons in Electron-Renderer](https://github.com/electron-vite/vite-plugin-electron/tree/main/packages/electron-renderer#load-nodejs-cc-native-modules) | ||
- [Node.js ESM packages](https://github.com/electron-vite/vite-plugin-electron/tree/main/packages/electron-renderer#nodejs-esm-packages) (e.g. `execa` `node-fetch`) |
Oops, something went wrong.