Separate branded assets from monorepo (#3406)

* remove branded files

* use branding repo

* include favicons

* nixpkg fixup

* win fix ico path

* fix fmt

* skip licensenses for dev builds

* review fixup

* test

* test

* ci test

* ci test

* ci test

* fix ci
This commit is contained in:
Timon
2025-11-25 02:42:27 +00:00
committed by GitHub
parent a932eaedcf
commit 3f532e478c
252 changed files with 815 additions and 1640 deletions
+14 -13
View File
@@ -11,18 +11,18 @@
"profiling": "npm run setup && npm run wasm:build-profiling && concurrently -k -n \"VITE,RUST\" \"vite\" \"npm run wasm:watch-profiling\"",
"production": "npm run setup && npm run wasm:build-production && concurrently -k -n \"VITE,RUST\" \"vite\" \"npm run wasm:watch-production\"",
"---------- BUILDS ----------": "",
"build": "npm run wasm:build-production && vite build",
"build-dev": "npm run wasm:build-dev && vite build",
"build-native": "npm run native:build-production && vite build",
"build-native-dev": "npm run native:build-dev && vite build",
"build-profiling": "npm run wasm:build-profiling && vite build",
"build": "npm run setup && npm run wasm:build-production && vite build",
"build-dev": "npm run setup && npm run wasm:build-dev && vite build --mode dev",
"build-profiling": "npm run setup && npm run wasm:build-profiling && vite build --mode dev",
"build-native": "npm run setup && npm run native:build-production",
"build-native-dev": "npm run setup && npm run native:build-dev",
"---------- UTILITIES ----------": "",
"lint": "eslint . && tsc --noEmit",
"lint-fix": "eslint . --fix && tsc --noEmit",
"---------- INTERNAL ----------": "",
"setup": "node package-installer.js",
"native:build-dev": "wasm-pack build ./wasm --dev --target=web --no-default-features --features native",
"native:build-production": "wasm-pack build ./wasm --release --target=web --no-default-features --features native",
"setup": "node package-installer.js && node branding-installer.js",
"native:build-dev": "wasm-pack build ./wasm --dev --target=web --no-default-features --features native && vite build --mode dev",
"native:build-production": "wasm-pack build ./wasm --release --target=web --no-default-features --features native && vite build",
"wasm:build-dev": "wasm-pack build ./wasm --dev --target=web",
"wasm:build-profiling": "wasm-pack build ./wasm --profiling --target=web",
"wasm:build-production": "wasm-pack build ./wasm --release --target=web",
@@ -51,18 +51,19 @@
"eslint-plugin-svelte": "^3.11.0",
"globals": "^16.3.0",
"postcss": "^8.5.6",
"prettier-plugin-svelte": "^3.4.0",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"process": "^0.11.10",
"rollup-plugin-license": "^3.6.0",
"sass": "^1.91.0",
"svelte-preprocess": "^6.0.3",
"svelte": "4.2.20",
"svelte-preprocess": "^6.0.3",
"tar": "^7.5.2",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.41.0",
"typescript": "^5.9.2",
"vite-multiple-assets": "2.2.5",
"vite": "^5.4.19"
"typescript-eslint": "^8.41.0",
"vite": "^5.4.19",
"vite-multiple-assets": "2.2.5"
},
"homepage": "https://graphite.rs",
"license": "Apache-2.0",