Skip to content

Commit

Permalink
Rename for clarity: vite.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
webfiltered committed Dec 20, 2024
1 parent dcae8aa commit 49434fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,14 @@
"publish:staging": "yarn run vite:compile && todesktop build --config=./todesktop.staging.json --async",
"reset-install": "node scripts/resetInstall.js",
"sign": "node debug/sign.js",
"start": "yarn vite --config vite.main.config.ts",
"start": "vite",
"test:e2e": "npx playwright test",
"test:unit": "vitest run",
"test:update-snapshots": "npx playwright test --update-snapshots",
"todesktop:afterPack": "./scripts/todesktop/afterPack.cjs",
"todesktop:beforeInstall": "./scripts/todesktop/beforeInstall.cjs",
"typescript": "tsc -p tsconfig.build.json",
"vite:compile": "yarn run typescript && vite build --config vite.main.config.ts && vite build --config vite.preload.config.ts",
"vite:compile": "yarn run typescript && vite build && vite build --config vite.preload.config.ts",
"vite:types": "yarn run typescript && vite build --config vite.types.config.ts && node scripts/prepareTypes.js",
"release:types": "node scripts/releaseTypes.js",
"update:frontend": "node scripts/updateFrontend.js"
Expand Down
2 changes: 1 addition & 1 deletion scripts/launchCI.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function setupMainPackageWatcher() {
return build({
mode,
logLevel,
configFile: 'vite.main.config.ts',
configFile: 'vite.config.ts',
plugins: [runAppAfterBuild()],
});
}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion vitest.workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { defineWorkspace } from 'vitest/config';

export default defineWorkspace([
{
extends: './vite.main.config.ts',
extends: './vite.config.ts',
},
{
extends: './vite.preload.config.ts',
Expand Down

0 comments on commit 49434fb

Please sign in to comment.