forked from electron-userland/electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: LSTypeIsPackage for file associations
Closes electron-userland#995
- Loading branch information
Showing
27 changed files
with
509 additions
and
176 deletions.
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
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
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,281 @@ | ||
exports[`test cli 1`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "mac", | ||
"name": "mac", | ||
"nodeName": "darwin", | ||
} => Map { | ||
1 => Array [], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 2`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "mac", | ||
"name": "mac", | ||
"nodeName": "darwin", | ||
} => Map { | ||
1 => Array [ | ||
"dir", | ||
], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 3`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "mac", | ||
"name": "mac", | ||
"nodeName": "darwin", | ||
} => Map { | ||
1 => Array [ | ||
"dir", | ||
], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 4`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "mac", | ||
"name": "mac", | ||
"nodeName": "darwin", | ||
} => Map { | ||
1 => Array [ | ||
"dir", | ||
], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 5`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "linux", | ||
"name": "linux", | ||
"nodeName": "linux", | ||
} => Map { | ||
1 => Array [ | ||
"dir", | ||
], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 6`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "mac", | ||
"name": "mac", | ||
"nodeName": "darwin", | ||
} => Map { | ||
1 => Array [], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 7`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "mac", | ||
"name": "mac", | ||
"nodeName": "darwin", | ||
} => Map { | ||
1 => Array [], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 8`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "linux", | ||
"name": "linux", | ||
"nodeName": "linux", | ||
} => Map { | ||
1 => Array [], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 9`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "win", | ||
"name": "windows", | ||
"nodeName": "win32", | ||
} => Map { | ||
1 => Array [], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 10`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "mac", | ||
"name": "mac", | ||
"nodeName": "darwin", | ||
} => Map { | ||
1 => Array [], | ||
}, | ||
Platform { | ||
"buildConfigurationKey": "linux", | ||
"name": "linux", | ||
"nodeName": "linux", | ||
} => Map { | ||
1 => Array [], | ||
}, | ||
Platform { | ||
"buildConfigurationKey": "win", | ||
"name": "windows", | ||
"nodeName": "win32", | ||
} => Map { | ||
1 => Array [], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 11`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "linux", | ||
"name": "linux", | ||
"nodeName": "linux", | ||
} => Map { | ||
0 => Array [ | ||
"tar.gz", | ||
], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 12`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "linux", | ||
"name": "linux", | ||
"nodeName": "linux", | ||
} => Map { | ||
1 => Array [ | ||
"tar.gz", | ||
], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 13`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "linux", | ||
"name": "linux", | ||
"nodeName": "linux", | ||
} => Map { | ||
1 => Array [ | ||
"tar.gz", | ||
], | ||
}, | ||
}, | ||
} | ||
`; | ||
|
||
exports[`test cli 14`] = ` | ||
Object { | ||
"draft": undefined, | ||
"extraMetadata": undefined, | ||
"prerelease": undefined, | ||
"publish": undefined, | ||
"targets": Map { | ||
Platform { | ||
"buildConfigurationKey": "win", | ||
"name": "windows", | ||
"nodeName": "win32", | ||
} => Map { | ||
1 => Array [ | ||
"tar.gz", | ||
], | ||
}, | ||
}, | ||
} | ||
`; |
Oops, something went wrong.