-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
module.exports = async ({ appOutDir, packager }) => { | ||
/** | ||
* appPkgName - string - the name of the app package | ||
* appId - string - the app id | ||
* shouldCodeSign - boolean - whether the app will be code signed or not | ||
* outDir - string - the path to the output directory | ||
* appOutDir - string - the path to the app output directory | ||
* packager - object - the packager object | ||
* arch - number - the architecture of the app. ia32 = 0, x64 = 1, armv7l = 2, arm64 = 3, universal = 4. | ||
*/ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
module.exports = async ({ pkgJsonPath, pkgJson, appDir, hookName }) => { | ||
/** | ||
* pkgJsonPath - string - path to the package.json file | ||
* pkgJson - object - the parsed package.json file | ||
* appDir - string - the path to the app directory | ||
* hookName - string - the name of the hook ("todesktop:beforeInstall" or "todesktop:afterPack") | ||
*/ | ||
}; |