fix(core): update
This commit is contained in:
parent
bc1a89e3c7
commit
8c3214b872
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@pushrocks/smartmanifest',
|
name: '@pushrocks/smartmanifest',
|
||||||
version: '2.0.0',
|
version: '2.0.1',
|
||||||
description: 'a module for creating web app manifests'
|
description: 'a module for creating web app manifests'
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,9 @@ export interface ISmartManifestConstructorOptions {
|
|||||||
platform: 'play' | string;
|
platform: 'play' | string;
|
||||||
id: string;
|
id: string;
|
||||||
}>;
|
}>;
|
||||||
|
scope: string;
|
||||||
|
lang: string;
|
||||||
|
display_override: 'window-controls-overlay'[];
|
||||||
}
|
}
|
||||||
|
|
||||||
const defaultConstructorOptions: ISmartManifestConstructorOptions = {
|
const defaultConstructorOptions: ISmartManifestConstructorOptions = {
|
||||||
@ -45,6 +48,9 @@ const defaultConstructorOptions: ISmartManifestConstructorOptions = {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
related_applications: [],
|
related_applications: [],
|
||||||
|
scope: '/',
|
||||||
|
lang: 'en',
|
||||||
|
display_override: ['window-controls-overlay'],
|
||||||
};
|
};
|
||||||
|
|
||||||
export class SmartManifest {
|
export class SmartManifest {
|
||||||
|
Loading…
Reference in New Issue
Block a user