mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 13:30:48 +00:00

* Migrate webpack to parcel * Always colour shell output * Fix typos * Fix updateImage function having undefined editorInstance * Readd webpack for deployment builds (licence checker) * Only use webpack for license generation * Re add typscript support * Fix cloudlare deploy * Bump wasm-pack version * Update ci script * Print versions in ci script * Use optional-dependencies for wasm-pack * Execute wget after rust install * Finding wasm-opt version * Print wasm-opt version * Revert test? * Try to revert * Deploy cloudflare via github actions * Fix indentation in ci script * Change project to graphite-dev * Trigger ci * Parcel ci (#1152) * CI Test * Add write permissions for pr * Manually add cloudflare ci comment to prs * Unskip cargo about * Make compile on new versions of npm * Add deployment script to rebuild editor.graphite.rs on tag creation * Remove deploy script * Comment out unused Svelte props causing warnings * Many small fixes, including fixing @ imports --------- Co-authored-by: hypercube <0hypercube@gmail.com> Co-authored-by: Keavon Chambers <keavon@keavon.com>
60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
|
"build": {
|
|
"beforeBuildCommand": "npm run tauri:build-wasm",
|
|
"beforeDevCommand": "npm run tauri:dev",
|
|
"distDir": "../dist",
|
|
"devPath": "http://127.0.0.1:8080/"
|
|
},
|
|
"package": {
|
|
"productName": "Graphite",
|
|
"version": "0.1.0"
|
|
},
|
|
"tauri": {
|
|
"allowlist": {
|
|
"all": true
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"category": "DeveloperTool",
|
|
"copyright": "",
|
|
"deb": {
|
|
"depends": ["librustc_codegen_spirv"]
|
|
},
|
|
"externalBin": [],
|
|
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
|
|
"identifier": "rs.graphite.editor",
|
|
"longDescription": "",
|
|
"macOS": {
|
|
"entitlements": null,
|
|
"exceptionDomain": "",
|
|
"frameworks": [],
|
|
"providerShortName": null,
|
|
"signingIdentity": null
|
|
},
|
|
"resources": [],
|
|
"shortDescription": "",
|
|
"targets": "all",
|
|
"windows": {
|
|
"certificateThumbprint": null,
|
|
"digestAlgorithm": "sha256",
|
|
"timestampUrl": ""
|
|
}
|
|
},
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"updater": {
|
|
"active": false
|
|
},
|
|
"windows": [
|
|
{
|
|
"fullscreen": false,
|
|
"height": 600,
|
|
"resizable": true,
|
|
"title": "Graphite",
|
|
"width": 800
|
|
}
|
|
]
|
|
}
|
|
}
|