Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion frontend/package.tmpl.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration production --output-hashing none",
"build:dev": "ng build --configuration development --delete-output-path false --output-hashing none",
"watch": "ng build --watch --configuration development --delete-output-path false --output-hashing none",
"test": "ng test"
},
Expand Down Expand Up @@ -39,4 +40,4 @@
"karma-jasmine-html-reporter": "~1.7.0",
"typescript": "~4.3.5"
}
}
}
5 changes: 3 additions & 2 deletions wails.tmpl.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
"assetdir": "frontend/dist",
"frontend:build": "npm run build",
"frontend:install": "npm install",
"frontend:dev": "npm run watch",
"frontend:dev": "npm run build:dev",
"frontend:dev:watcher": "npm run watch",
"wailsjsdir": "./frontend",
"outputfilename": "{{.BinaryName}}",
"Author": {
"name": "{{.AuthorName}}",
"email": "{{.AuthorEmail}}"
}
}
}