-
-
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.
Merge pull request #18 from studiorack/feature/clean-start
Pure ES modules, vitest and TypeScript upgrade
- Loading branch information
Showing
77 changed files
with
9,361 additions
and
8,466 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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ name: Test | |
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
test_code: | ||
|
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 |
---|---|---|
@@ -1,38 +1,33 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
# Dependencies | ||
node_modules/ | ||
|
||
# testing | ||
/coverage | ||
# Coverage | ||
coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
/renderer/.next/ | ||
/renderer/out/ | ||
/main/ | ||
/dist/ | ||
# Transpiled files | ||
build/ | ||
main/ | ||
out/ | ||
.next/ | ||
test/tool | ||
|
||
# production | ||
/build | ||
# VS Code | ||
.vscode | ||
!.vscode/tasks.js | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
# JetBrains IDEs | ||
.idea/ | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
# Optional npm cache directory | ||
.npm | ||
|
||
# local env files | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# vercel | ||
.vercel | ||
# Misc | ||
.DS_Store |
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
{ | ||
"arrowParens": "avoid", | ||
"bracketSpacing": true, | ||
"endOfLine": "lf", | ||
"bracketSameLine": false, | ||
"jsxSingleQuote": false, | ||
"printWidth": 120, | ||
"proseWrap": "preserve", | ||
"quoteProps": "as-needed", | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"useTabs": false | ||
} |
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
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
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
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 @@ | ||
// This file is intentionally .mjs to ensure Electron treats it as an ES module. | ||
// https://www.electronjs.org/docs/latest/tutorial/esm | ||
import { contextBridge } from 'electron'; | ||
import api from './api.js'; | ||
|
||
contextBridge.exposeInMainWorld('electronAPI', api); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.