Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
b0bc321cc2 | |||
8c3214b872 | |||
bc1a89e3c7 | |||
92ae017d0f |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pushrocks/smartmanifest",
|
||||
"version": "1.0.9",
|
||||
"version": "2.0.1",
|
||||
"private": false,
|
||||
"description": "a module for creating web app manifests",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@pushrocks/smartmanifest',
|
||||
version: '1.0.9',
|
||||
version: '2.0.1',
|
||||
description: 'a module for creating web app manifests'
|
||||
}
|
||||
|
@ -17,6 +17,9 @@ export interface ISmartManifestConstructorOptions {
|
||||
platform: 'play' | string;
|
||||
id: string;
|
||||
}>;
|
||||
scope: string;
|
||||
lang: string;
|
||||
display_override: 'window-controls-overlay'[];
|
||||
}
|
||||
|
||||
const defaultConstructorOptions: ISmartManifestConstructorOptions = {
|
||||
@ -45,6 +48,9 @@ const defaultConstructorOptions: ISmartManifestConstructorOptions = {
|
||||
},
|
||||
],
|
||||
related_applications: [],
|
||||
scope: '/',
|
||||
lang: 'en',
|
||||
display_override: ['window-controls-overlay'],
|
||||
};
|
||||
|
||||
export class SmartManifest {
|
||||
|
Reference in New Issue
Block a user