enso/app/ide-desktop/lib/client/dist.ts
somebody1234 a9dbebf3f3
Cognito auth 8/7 - fix prettier config; run prettier (#6003)
- Fixes prettier config to include `.tsx`
- `prettier -w .` has been run in `app/ide-desktop`
- `prettier -w .` has also been run in `pack/js`, however there were no changes.

# Important Notes
After this is merged, a PR SHOULD be created to add the following file to the root directory:
`.git-blame-ignore-revs`
```
# <name of the commit for this PR>
<hash of the commit for this PR>
```
This makes `git blame` ignore the commit, which is a good idea since this PR only does formatting changes.
2023-03-29 10:24:32 +00:00

10 lines
328 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 Arguments
*/
import * as electronBuilderConfig from './electron-builder-config'
await electronBuilderConfig.buildPackage(electronBuilderConfig.args)