mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 08:31:32 +03:00
a9dbebf3f3
- 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.
10 lines
328 B
TypeScript
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)
|