enso/app/ide-desktop/lib/client/dist.ts
somebody1234 658395e011
Enable require-jsdoc lint and add two lints related to React (#6403)
- Enables the `require-jsdoc` lint
- Fixes all lint errors caused by enabling this lint.

# Important Notes
- There is no option to require JSDoc for other constructs, like top-level constants.
2023-05-19 19:55:29 +00:00

13 lines
450 B
TypeScript

/** @file This script creates a packaged IDE distribution using electron-builder.
* Behaviour details are controlled by the environment variables or CLI arguments.
* @see electronBuilderConfig.Arguments
*/
import * as electronBuilderConfig from './electron-builder-config'
// ==============================
// === Build Electron package ===
// ==============================
await electronBuilderConfig.buildPackage(electronBuilderConfig.args)