Skip to content

Commit

Permalink
chore: moved to vite
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarolorentedev committed Aug 5, 2024
1 parent ab59bd2 commit a487691
Show file tree
Hide file tree
Showing 56 changed files with 7,635 additions and 11,710 deletions.
9 changes: 4 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@
"plugin:import/electron",
"plugin:import/typescript"
],
"rules": {
"@typescript-eslint/no-explicit-any": ["off"],
"@typescript-eslint/no-unused-vars": ["off"]
},
"parser": "@typescript-eslint/parser"
"parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
Set-Content -Path certificate\certificate.txt -Value '${{ secrets.SIGNING_CERTIFICATE_BASE64 }}'
certutil -decode certificate\certificate.txt certificate\certificate.pfx
- name: OSX install setuptools
if: matrix.os == 'macOS-latest'
if: matrix.os == 'macOS-latest' && startsWith(github.event.head_commit.message,'v2.')
run: python3 -m pip install setuptools --break-system-packages
- name: OSX Codesign executable
if: matrix.os == 'macOS-latest' && startsWith(github.event.head_commit.message,'v2.')
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,8 @@ typings/
# Webpack
.webpack/

# Vite
.vite/

# Electron-Forge
out/
8 changes: 8 additions & 0 deletions .vitest/setup.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { afterEach } from 'vitest';
import { cleanup } from '@testing-library/react';
import '@testing-library/jest-dom/vitest';

// runs a clean after each test case (e.g. clearing jsdom)
afterEach(() => {
cleanup();
});
201 changes: 0 additions & 201 deletions LICENSE.md

This file was deleted.

62 changes: 0 additions & 62 deletions README.md

This file was deleted.

78 changes: 0 additions & 78 deletions forge.config.js

This file was deleted.

Loading

0 comments on commit a487691

Please sign in to comment.