@stacksjs/desktop 0.2.112 → 0.2.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/dist/index.js +44412 -130
- package/dist/index.js.map +214 -4
- package/dist/packaging.d.ts +23 -0
- package/dist/test-utils.js +46 -1
- package/dist/test-utils.js.map +2 -2
- package/dist/types.d.ts +3 -0
- package/dist/window.d.ts +13 -5
- package/package.json +3 -8
package/dist/index.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export type {
|
|
|
73
73
|
WindowOptions,
|
|
74
74
|
} from './types';
|
|
75
75
|
export type { DesktopConfig } from './window';
|
|
76
|
+
export type { PackageConfig, PackageResult } from './packaging';
|
|
76
77
|
export type {
|
|
77
78
|
CaffeinateInstance,
|
|
78
79
|
CaffeinateOptions,
|
|
@@ -362,6 +363,7 @@ export {
|
|
|
362
363
|
// =============================================================================
|
|
363
364
|
export {
|
|
364
365
|
closeAllWindows,
|
|
366
|
+
craftWindowArguments,
|
|
365
367
|
createWindow,
|
|
366
368
|
createWindowWithHTML,
|
|
367
369
|
getActiveWindowIds,
|
|
@@ -374,6 +376,10 @@ export {
|
|
|
374
376
|
setDesktopConfig,
|
|
375
377
|
} from './window';
|
|
376
378
|
// =============================================================================
|
|
379
|
+
// Packaging & Code Signing (re-exported from Craft)
|
|
380
|
+
// =============================================================================
|
|
381
|
+
export { pack, packageApp } from './packaging';
|
|
382
|
+
// =============================================================================
|
|
377
383
|
// Power Management / Caffeinate
|
|
378
384
|
// =============================================================================
|
|
379
385
|
export {
|