Skip to content

Commit 3d44c2f

Browse files
committed
init: use template and modify
0 parents  commit 3d44c2f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+7141
-0
lines changed

.editorconfig

+685
Large diffs are not rendered by default.

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
node_modules
2+
.DS_Store
3+
dist
4+
dist-ssr
5+
*.local
6+
7+
tmp
8+
**/.tmp
9+
release
10+
11+
.pnp.*
12+
.yarn/*
13+
!.yarn/patches
14+
!.yarn/plugins
15+
!.yarn/releases
16+
!.yarn/sdks
17+
!.yarn/versions

.idea/.gitignore

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/ClassTools-Reborn.iml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.vscode/extensions.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"arcanis.vscode-zipfs"
4+
]
5+
}

.vscode/launch.json

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "launch",
7+
"name": "Main(inspector)",
8+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
9+
"runtimeArgs": [
10+
"--remote-debugging-port=9222",
11+
"${workspaceFolder}/dist/main/index.cjs",
12+
],
13+
"env": {
14+
"DEBUG": "true",
15+
},
16+
"windows": {
17+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
18+
},
19+
"sourceMaps": true
20+
},
21+
{
22+
"type": "chrome",
23+
"request": "launch",
24+
"name": "Renderer(inspector)",
25+
"url": "http://localhost:9222",
26+
"webRoot": "${workspaceFolder}/dist/packages/renderer",
27+
},
28+
{
29+
"type": "node",
30+
"request": "launch",
31+
"name": "Main(vite)",
32+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
33+
"runtimeArgs": [
34+
"${workspaceFolder}/dist/main/index.cjs",
35+
],
36+
"env": {
37+
"VITE_DEV_SERVER_HOST": "127.0.0.1",
38+
"VITE_DEV_SERVER_PORT": "3344",
39+
},
40+
"windows": {
41+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
42+
},
43+
"sourceMaps": true
44+
},
45+
{
46+
"type": "chrome",
47+
"request": "launch",
48+
"name": "Renderer(vite)",
49+
"url": "http://localhost:3344",
50+
"webRoot": "${workspaceFolder}/packages/renderer",
51+
},
52+
],
53+
"compounds": [
54+
{
55+
"name": "All(inspector)",
56+
"configurations": [
57+
"Renderer(inspector)",
58+
"Main(inspector)",
59+
],
60+
"preLaunchTask": "npm: prebuild"
61+
},
62+
{
63+
"name": "All(vite serve)",
64+
"configurations": [
65+
"Renderer(vite)",
66+
"Main(vite)",
67+
],
68+
"preLaunchTask": "npm: debug"
69+
}
70+
]
71+
}

.vscode/settings.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"search.exclude": {
3+
"**/.yarn": true,
4+
"**/.pnp.*": true
5+
},
6+
"typescript.tsdk": ".yarn/sdks/typescript/lib",
7+
"typescript.enablePromptUseWorkspaceTsdk": true
8+
}

.vscode/tasks.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "prebuild",
7+
"group": "build",
8+
"problemMatcher": [],
9+
"label": "npm: prebuild",
10+
"detail": "vue-tsc --project packages/renderer/tsconfig.json --noEmit && node scripts/build.mjs"
11+
},
12+
{
13+
"type": "npm",
14+
"script": "debug",
15+
"problemMatcher": [],
16+
"label": "npm: debug",
17+
"detail": "npm run prebuild && vite ./packages/renderer",
18+
"group": "build"
19+
},
20+
]
21+
}

.yarn/releases/yarn-3.2.0.cjs

+785
Large diffs are not rendered by default.

.yarn/sdks/integrations.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# This file is automatically generated by @yarnpkg/sdks.
2+
# Manual changes might be lost!
3+
4+
integrations:
5+
- vscode

.yarn/sdks/typescript/bin/tsc

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env node
2+
3+
const {existsSync} = require(`fs`);
4+
const {createRequire, createRequireFromPath} = require(`module`);
5+
const {resolve} = require(`path`);
6+
7+
const relPnpApiPath = "../../../../.pnp.cjs";
8+
9+
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10+
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
11+
12+
if (existsSync(absPnpApiPath)) {
13+
if (!process.versions.pnp) {
14+
// Setup the environment to be able to require typescript/bin/tsc
15+
require(absPnpApiPath).setup();
16+
}
17+
}
18+
19+
// Defer to the real typescript/bin/tsc your application uses
20+
module.exports = absRequire(`typescript/bin/tsc`);

.yarn/sdks/typescript/bin/tsserver

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env node
2+
3+
const {existsSync} = require(`fs`);
4+
const {createRequire, createRequireFromPath} = require(`module`);
5+
const {resolve} = require(`path`);
6+
7+
const relPnpApiPath = "../../../../.pnp.cjs";
8+
9+
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10+
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
11+
12+
if (existsSync(absPnpApiPath)) {
13+
if (!process.versions.pnp) {
14+
// Setup the environment to be able to require typescript/bin/tsserver
15+
require(absPnpApiPath).setup();
16+
}
17+
}
18+
19+
// Defer to the real typescript/bin/tsserver your application uses
20+
module.exports = absRequire(`typescript/bin/tsserver`);

.yarn/sdks/typescript/lib/tsc.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env node
2+
3+
const {existsSync} = require(`fs`);
4+
const {createRequire, createRequireFromPath} = require(`module`);
5+
const {resolve} = require(`path`);
6+
7+
const relPnpApiPath = "../../../../.pnp.cjs";
8+
9+
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10+
const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
11+
12+
if (existsSync(absPnpApiPath)) {
13+
if (!process.versions.pnp) {
14+
// Setup the environment to be able to require typescript/lib/tsc.js
15+
require(absPnpApiPath).setup();
16+
}
17+
}
18+
19+
// Defer to the real typescript/lib/tsc.js your application uses
20+
module.exports = absRequire(`typescript/lib/tsc.js`);

0 commit comments

Comments
 (0)