Advertisement
Guest User

Untitled

a guest
Jun 18th, 2023
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. appId: com.electron.app
  2. productName: mfd
  3. directories:
  4. buildResources: build
  5. files:
  6. - '!**/.vscode/*'
  7. - '!src/*'
  8. - '!electron.vite.config.{js,ts,mjs,cjs}'
  9. - '!{.eslintignore,.eslintrc.cjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,CHANGELOG.md,README.md}'
  10. - '!{.env,.env.*,.npmrc,pnpm-lock.yaml}'
  11. - '!{tsconfig.json,tsconfig.node.json,tsconfig.web.json}'
  12. asarUnpack:
  13. - resources/**
  14. afterSign: build/notarize.js
  15. win:
  16. executableName: mfd
  17. nsis:
  18. artifactName: ${name}-${version}-setup.${ext}
  19. shortcutName: ${productName}
  20. uninstallDisplayName: ${productName}
  21. createDesktopShortcut: always
  22. mac:
  23. entitlementsInherit: build/entitlements.mac.plist
  24. extendInfo:
  25. - NSCameraUsageDescription: Application requests access to the device's camera.
  26. - NSMicrophoneUsageDescription: Application requests access to the device's microphone.
  27. - NSDocumentsFolderUsageDescription: Application requests access to the user's Documents folder.
  28. - NSDownloadsFolderUsageDescription: Application requests access to the user's Downloads folder.
  29. dmg:
  30. artifactName: ${name}-${version}.${ext}
  31. linux:
  32. target:
  33. - AppImage
  34. - snap
  35. - deb
  36. maintainer: electronjs.org
  37. category: Utility
  38. appImage:
  39. artifactName: ${name}-${version}.${ext}
  40. npmRebuild: false
  41. publish:
  42. provider: generic
  43. url: https://example.com/auto-updates
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement