4 changed files with 612 additions and 519 deletions
@ -5,13 +5,13 @@ |
|||||
"description": "Meshtastic web client", |
"description": "Meshtastic web client", |
||||
"license": "GPL-3.0-only", |
"license": "GPL-3.0-only", |
||||
"scripts": { |
"scripts": { |
||||
"build": "pnpm check && rsbuild build", |
"build": "vite build", |
||||
"build:analyze": "BUNDLE_ANALYZE=true rsbuild build", |
"build:analyze": "BUNDLE_ANALYZE=true vite build", |
||||
"check": "biome check src/", |
"check": "biome check src/", |
||||
"check:fix": "pnpm check --write src/", |
"check:fix": "pnpm check --write src/", |
||||
"format": "biome format --write src/", |
"format": "biome format --write src/", |
||||
"dev": "rsbuild dev --open", |
"dev": "vite dev --open", |
||||
"preview": "rsbuild preview", |
"preview": "vite preview", |
||||
"package": "gzipper c -i html,js,css,png,ico,svg,webmanifest,txt dist dist/output && tar -cvf dist/build.tar -C ./dist/output/ $(ls ./dist/output/)", |
"package": "gzipper c -i html,js,css,png,ico,svg,webmanifest,txt dist dist/output && tar -cvf dist/build.tar -C ./dist/output/ $(ls ./dist/output/)", |
||||
"postinstall": "npx simple-git-hooks" |
"postinstall": "npx simple-git-hooks" |
||||
}, |
}, |
||||
@ -19,7 +19,10 @@ |
|||||
"pre-commit": "npm run check:fix && npm run format" |
"pre-commit": "npm run check:fix && npm run format" |
||||
}, |
}, |
||||
"lint-staged": { |
"lint-staged": { |
||||
"*.{ts,tsx}": ["npm run check:fix", "npm run format"] |
"*.{ts,tsx}": [ |
||||
|
"npm run check:fix", |
||||
|
"npm run format" |
||||
|
] |
||||
}, |
}, |
||||
"repository": { |
"repository": { |
||||
"type": "git", |
"type": "git", |
||||
@ -71,8 +74,6 @@ |
|||||
}, |
}, |
||||
"devDependencies": { |
"devDependencies": { |
||||
"@biomejs/biome": "^1.9.4", |
"@biomejs/biome": "^1.9.4", |
||||
"@rsbuild/core": "^1.2.3", |
|
||||
"@rsbuild/plugin-react": "^1.1.0", |
|
||||
"@types/chrome": "^0.0.299", |
"@types/chrome": "^0.0.299", |
||||
"@types/js-cookie": "^3.0.6", |
"@types/js-cookie": "^3.0.6", |
||||
"@types/node": "^22.12.0", |
"@types/node": "^22.12.0", |
||||
@ -80,6 +81,7 @@ |
|||||
"@types/react-dom": "^19.0.3", |
"@types/react-dom": "^19.0.3", |
||||
"@types/w3c-web-serial": "^1.0.7", |
"@types/w3c-web-serial": "^1.0.7", |
||||
"@types/web-bluetooth": "^0.0.20", |
"@types/web-bluetooth": "^0.0.20", |
||||
|
"@vitejs/plugin-react": "^4.3.4", |
||||
"autoprefixer": "^10.4.20", |
"autoprefixer": "^10.4.20", |
||||
"gzipper": "^8.2.0", |
"gzipper": "^8.2.0", |
||||
"postcss": "^8.5.1", |
"postcss": "^8.5.1", |
||||
@ -88,7 +90,8 @@ |
|||||
"tailwindcss": "^3.4.17", |
"tailwindcss": "^3.4.17", |
||||
"tailwindcss-animate": "^1.0.7", |
"tailwindcss-animate": "^1.0.7", |
||||
"tar": "^7.4.3", |
"tar": "^7.4.3", |
||||
"typescript": "^5.7.3" |
"typescript": "^5.7.3", |
||||
|
"vite": "^6.1.0" |
||||
}, |
}, |
||||
"packageManager": "[email protected]" |
"packageManager": "[email protected]" |
||||
} |
} |
||||
|
|||||
File diff suppressed because it is too large
@ -1,30 +0,0 @@ |
|||||
import { execSync } from "node:child_process"; |
|
||||
import { defineConfig } from "@rsbuild/core"; |
|
||||
import { pluginReact } from "@rsbuild/plugin-react"; |
|
||||
|
|
||||
let hash = ""; |
|
||||
|
|
||||
try { |
|
||||
hash = execSync("git rev-parse --short HEAD").toString().trim(); |
|
||||
} catch (error) { |
|
||||
hash = "DEV"; |
|
||||
} |
|
||||
|
|
||||
export default defineConfig({ |
|
||||
plugins: [pluginReact()], |
|
||||
source: { |
|
||||
define: { |
|
||||
"process.env.COMMIT_HASH": JSON.stringify(hash), |
|
||||
}, |
|
||||
alias: { |
|
||||
"@app": "./src", |
|
||||
"@pages": "./src/pages", |
|
||||
"@components": "./src/components", |
|
||||
"@core": "./src/core", |
|
||||
"@layouts": "./src/layouts", |
|
||||
}, |
|
||||
}, |
|
||||
html: { |
|
||||
title: "Meshtastic Web", |
|
||||
}, |
|
||||
}); |
|
||||
@ -1,45 +1,30 @@ |
|||||
import { execSync } from "node:child_process"; |
import { defineConfig } from 'vite'; |
||||
import { resolve } from "node:path"; |
import react from '@vitejs/plugin-react'; |
||||
import react from "@vitejs/plugin-react"; |
import { execSync } from 'node:child_process'; |
||||
import { visualizer } from "rollup-plugin-visualizer"; |
import path from 'path'; |
||||
import { defineConfig } from "vite"; |
|
||||
import EnvironmentPlugin from "vite-plugin-environment"; |
|
||||
|
|
||||
let hash = ""; |
|
||||
|
|
||||
|
let hash = ''; |
||||
try { |
try { |
||||
hash = execSync("git rev-parse --short HEAD").toString().trim(); |
hash = execSync('git rev-parse --short HEAD').toString().trim(); |
||||
} catch (error) { |
} catch (error) { |
||||
hash = "DEVELOPMENT"; |
hash = 'DEV'; |
||||
} |
} |
||||
|
|
||||
export default defineConfig({ |
export default defineConfig({ |
||||
plugins: [ |
plugins: [react()], |
||||
react(), |
define: { |
||||
EnvironmentPlugin({ |
'process.env.COMMIT_HASH': JSON.stringify(hash), |
||||
COMMIT_HASH: hash, |
|
||||
}), |
|
||||
// VitePWA({
|
|
||||
// registerType: "autoUpdate",
|
|
||||
// devOptions: {
|
|
||||
// enabled: true
|
|
||||
// }
|
|
||||
// })
|
|
||||
], |
|
||||
build: { |
|
||||
target: "esnext", |
|
||||
assetsDir: "", |
|
||||
rollupOptions: { |
|
||||
plugins: [visualizer()], |
|
||||
}, |
|
||||
}, |
}, |
||||
resolve: { |
resolve: { |
||||
alias: { |
alias: { |
||||
"@app": resolve(__dirname, "./src"), |
'@app': path.resolve(__dirname, './src'), |
||||
"@pages": resolve(__dirname, "./src/pages"), |
'@pages': path.resolve(__dirname, './src/pages'), |
||||
"@components": resolve(__dirname, "./src/components"), |
'@components': path.resolve(__dirname, './src/components'), |
||||
"@core": resolve(__dirname, "./src/core"), |
'@core': path.resolve(__dirname, './src/core'), |
||||
"@layouts": resolve(__dirname, "./src/layouts"), |
'@layouts': path.resolve(__dirname, './src/layouts'), |
||||
}, |
}, |
||||
}, |
}, |
||||
}); |
server: { |
||||
|
port: 3000 |
||||
|
} |
||||
|
}); |
||||
Loading…
Reference in new issue