@textadventures/squiffy-packager 6.0.0-alpha.20 → 6.0.0-beta.1

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2014-2024 Alex Warren, textadventures.co.uk and contributors
3
+ Copyright (c) 2014-2026 Alex Warren, textadventures.co.uk and contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -3,4 +3,8 @@ export interface Package {
3
3
  files: Record<string, string>;
4
4
  zip?: Uint8Array;
5
5
  }
6
- export declare const createPackage: (input: CompileSuccess, createZip: boolean) => Promise<Package>;
6
+ export interface PackageOptions {
7
+ createZip?: boolean;
8
+ inlineHtml?: boolean;
9
+ }
10
+ export declare const createPackage: (input: CompileSuccess, createZipOrOptions?: boolean | PackageOptions) => Promise<Package>;