Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jgraph/drawio-desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benson [draw.io] <david@jgraph.com>2020-07-15 18:59:05 +0300
committerDavid Benson [draw.io] <david@jgraph.com>2020-07-15 18:59:05 +0300
commitd3a430e64cdfd0e3597a63d2a50daf9e733b25c5 (patch)
tree65abe33ab4f1553f440bed5070ee770bc6e33f6e /electron-builder-appx.json
parent63d9b04427247a2c0eedf157c13733a34c1987fc (diff)
Splits appx build into own builder
Diffstat (limited to 'electron-builder-appx.json')
-rw-r--r--electron-builder-appx.json50
1 files changed, 50 insertions, 0 deletions
diff --git a/electron-builder-appx.json b/electron-builder-appx.json
new file mode 100644
index 0000000..8c71d49
--- /dev/null
+++ b/electron-builder-appx.json
@@ -0,0 +1,50 @@
+{
+ "appId": "com.jgraph.drawio.desktop",
+ "copyright": "Copyright 2017-2019 draw.io",
+ "asar": true,
+ "files": [
+ "**/*",
+ "!**/WEB-INF{,/**}"
+ ],
+ "artifactName": "${productName}-${arch}-${version}.${ext}",
+ "directories": {
+ "app": "./drawio/src/main/webapp",
+ "output": "./dist/"
+ },
+ "npmRebuild": false,
+ "publish": {
+ "provider": "github"
+ },
+ "win": {
+ "target": [
+ {
+ "target": "appx",
+ "arch": [
+ "x64"
+ ]
+ }
+ ]
+ },
+ "appx": {
+ "displayName": "draw.io Diagrams",
+ "publisherDisplayName": "JGraph Ltd",
+ "identityName": "draw.io.draw.ioDiagrams",
+ "publisher": "CN=9E628CCB-BE04-4557-A5A8-81EC34B09733"
+ },
+ "fileAssociations": [
+ {
+ "ext": "drawio",
+ "name": "draw.io Diagram",
+ "description": "draw.io Diagram",
+ "mimeType": "application/vnd.jgraph.mxfile",
+ "role": "Editor"
+ },
+ {
+ "ext": "vsdx",
+ "name": "VSDX Document",
+ "description": "VSDX Document",
+ "mimeType": "application/vnd.visio",
+ "role": "Editor"
+ }
+ ]
+}