@microsoft/sp-module-interfaces
Advanced tools
Comparing version 1.15.0-beta.1 to 1.15.0-beta.6
@@ -978,3 +978,4 @@ /** | ||
*/ | ||
export declare interface IComponentModuleConfiguration extends IModuleConfiguration { | ||
export declare interface IComponentModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'component'; | ||
/** | ||
@@ -1015,6 +1016,22 @@ * The version of the framework-supplied component to be loaded. For framework runtime component such as | ||
*/ | ||
failoverPath?: string | IPath; | ||
failoverPath?: string | IIntegrityPath; | ||
} | ||
/** | ||
* A path with the subresource integrity hash of the resource. | ||
* | ||
* @beta | ||
*/ | ||
export declare interface IIntegrityPath { | ||
/** | ||
* The path to the resource. | ||
*/ | ||
path: string; | ||
/** | ||
* The subresource integrity hash of the resource referenced in {@link IIntegrityPath.path}. | ||
*/ | ||
integrity?: string; | ||
} | ||
/** | ||
* This is the interface for a script module with the "localizedPath" type. | ||
@@ -1029,3 +1046,4 @@ * | ||
*/ | ||
export declare interface ILocalizedPathModuleConfiguration extends IModuleConfiguration { | ||
export declare interface ILocalizedPathModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'localizedPath'; | ||
/** | ||
@@ -1045,3 +1063,3 @@ * A path to this module's default locale javascript resource either as a fully-qualified URL or as a | ||
*/ | ||
defaultPath: string | IPath; | ||
defaultPath: string | IIntegrityPath; | ||
/** | ||
@@ -1073,3 +1091,3 @@ * This is a dictionary of locale keys (in the `"ll-cc"` format) to paths to this module's locale | ||
paths?: { | ||
[locale: string]: string | IPath; | ||
[locale: string]: string | IIntegrityPath; | ||
}; | ||
@@ -1125,2 +1143,7 @@ } | ||
/** | ||
* @beta | ||
*/ | ||
export declare type IModuleConfiguration = IComponentModuleConfiguration | IPathModuleConfiguration | ILocalizedPathModuleConfiguration; | ||
/** | ||
* This is the base interface for a script module's definition. | ||
@@ -1130,3 +1153,3 @@ * | ||
*/ | ||
export declare interface IModuleConfiguration { | ||
export declare interface IModuleConfigurationBase { | ||
/** | ||
@@ -1164,37 +1187,2 @@ * The type of the script block. `"component"` modules come from a component, | ||
/** | ||
* This is the base interface for a set of debug and non-debug/minimized paths. The paths in this object are | ||
* loaded in exactly the same way as any other internal path. | ||
* | ||
* @beta | ||
*/ | ||
export declare interface IPath { | ||
/** | ||
* A path to this module's javascript resource either as a fully-qualified URL or as a path under the | ||
* paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is loaded by default | ||
* unless a debug version of the script is provided and explicitly requested. | ||
* | ||
* @remarks | ||
* | ||
* Supported values: The path to the default/non-debug script either as a fully-qualified URL or as a path under the | ||
* paths provided in the "internalModuleBaseUrls" field. | ||
* | ||
* Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"` | ||
*/ | ||
default: string; | ||
/** | ||
* A path to this module's debug javascript resource either as a fully-qualified URL or as a path under | ||
* the paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is only loaded if | ||
* it is present and debug scripts are explicitly requested. | ||
* | ||
* @remarks | ||
* | ||
* Supported values: The path to the debug script either as a fully-qualified URL or as a path under the | ||
* paths provided in the `"internalModuleBaseUrls"` field. | ||
* | ||
* Example: `"master_2015-04-20/my-application.bundle_18182c39.debug.js"` | ||
*/ | ||
debug?: string; | ||
} | ||
/** | ||
* This is the interface for a script module with the "path" type. Modules of this type must be provided by the | ||
@@ -1205,3 +1193,4 @@ * component developer. | ||
*/ | ||
export declare interface IPathModuleConfiguration extends IModuleConfiguration { | ||
export declare interface IPathModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'path'; | ||
/** | ||
@@ -1227,3 +1216,3 @@ * A path to this module's javascript resource either as a fully-qualified URL or as a path under the | ||
*/ | ||
path: string | IPath; | ||
path: string | IIntegrityPath; | ||
/** | ||
@@ -1230,0 +1219,0 @@ * If this property is specified, this module is considered non-AMD and |
@@ -567,2 +567,4 @@ /** | ||
/* Excluded from this release type: IIntegrityPath */ | ||
/* Excluded from this release type: ILocalizedPathModuleConfiguration */ | ||
@@ -618,3 +620,3 @@ | ||
/* Excluded from this release type: IPath */ | ||
/* Excluded from this release type: IModuleConfigurationBase */ | ||
@@ -621,0 +623,0 @@ /* Excluded from this release type: IPathModuleConfiguration */ |
@@ -978,3 +978,4 @@ /** | ||
*/ | ||
export declare interface IComponentModuleConfiguration extends IModuleConfiguration { | ||
export declare interface IComponentModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'component'; | ||
/** | ||
@@ -1015,6 +1016,22 @@ * The version of the framework-supplied component to be loaded. For framework runtime component such as | ||
*/ | ||
failoverPath?: string | IPath; | ||
failoverPath?: string | IIntegrityPath; | ||
} | ||
/** | ||
* A path with the subresource integrity hash of the resource. | ||
* | ||
* @beta | ||
*/ | ||
export declare interface IIntegrityPath { | ||
/** | ||
* The path to the resource. | ||
*/ | ||
path: string; | ||
/** | ||
* The subresource integrity hash of the resource referenced in {@link IIntegrityPath.path}. | ||
*/ | ||
integrity?: string; | ||
} | ||
/** | ||
* This is the interface for a script module with the "localizedPath" type. | ||
@@ -1029,3 +1046,4 @@ * | ||
*/ | ||
export declare interface ILocalizedPathModuleConfiguration extends IModuleConfiguration { | ||
export declare interface ILocalizedPathModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'localizedPath'; | ||
/** | ||
@@ -1045,3 +1063,3 @@ * A path to this module's default locale javascript resource either as a fully-qualified URL or as a | ||
*/ | ||
defaultPath: string | IPath; | ||
defaultPath: string | IIntegrityPath; | ||
/** | ||
@@ -1073,3 +1091,3 @@ * This is a dictionary of locale keys (in the `"ll-cc"` format) to paths to this module's locale | ||
paths?: { | ||
[locale: string]: string | IPath; | ||
[locale: string]: string | IIntegrityPath; | ||
}; | ||
@@ -1125,2 +1143,7 @@ } | ||
/** | ||
* @beta | ||
*/ | ||
export declare type IModuleConfiguration = IComponentModuleConfiguration | IPathModuleConfiguration | ILocalizedPathModuleConfiguration; | ||
/** | ||
* This is the base interface for a script module's definition. | ||
@@ -1130,3 +1153,3 @@ * | ||
*/ | ||
export declare interface IModuleConfiguration { | ||
export declare interface IModuleConfigurationBase { | ||
/** | ||
@@ -1164,37 +1187,2 @@ * The type of the script block. `"component"` modules come from a component, | ||
/** | ||
* This is the base interface for a set of debug and non-debug/minimized paths. The paths in this object are | ||
* loaded in exactly the same way as any other internal path. | ||
* | ||
* @beta | ||
*/ | ||
export declare interface IPath { | ||
/** | ||
* A path to this module's javascript resource either as a fully-qualified URL or as a path under the | ||
* paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is loaded by default | ||
* unless a debug version of the script is provided and explicitly requested. | ||
* | ||
* @remarks | ||
* | ||
* Supported values: The path to the default/non-debug script either as a fully-qualified URL or as a path under the | ||
* paths provided in the "internalModuleBaseUrls" field. | ||
* | ||
* Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"` | ||
*/ | ||
default: string; | ||
/** | ||
* A path to this module's debug javascript resource either as a fully-qualified URL or as a path under | ||
* the paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is only loaded if | ||
* it is present and debug scripts are explicitly requested. | ||
* | ||
* @remarks | ||
* | ||
* Supported values: The path to the debug script either as a fully-qualified URL or as a path under the | ||
* paths provided in the `"internalModuleBaseUrls"` field. | ||
* | ||
* Example: `"master_2015-04-20/my-application.bundle_18182c39.debug.js"` | ||
*/ | ||
debug?: string; | ||
} | ||
/** | ||
* This is the interface for a script module with the "path" type. Modules of this type must be provided by the | ||
@@ -1205,3 +1193,4 @@ * component developer. | ||
*/ | ||
export declare interface IPathModuleConfiguration extends IModuleConfiguration { | ||
export declare interface IPathModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'path'; | ||
/** | ||
@@ -1227,3 +1216,3 @@ * A path to this module's javascript resource either as a fully-qualified URL or as a path under the | ||
*/ | ||
path: string | IPath; | ||
path: string | IIntegrityPath; | ||
/** | ||
@@ -1230,0 +1219,0 @@ * If this property is specified, this module is considered non-AMD and |
@@ -29,3 +29,3 @@ "use strict"; | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
} | ||
@@ -38,4 +38,4 @@ }, | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -61,3 +61,3 @@ }, | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -71,4 +71,4 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -95,3 +95,3 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -105,4 +105,4 @@ shouldNotPreload: false | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -118,4 +118,4 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyA.script.js', | ||
debug: 'dependencyA.debug.script.js' | ||
path: 'dependencyA.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -126,3 +126,3 @@ }, | ||
path: { | ||
default: 'dependencyB.script.js' | ||
path: 'dependencyB.script.js' | ||
} | ||
@@ -137,4 +137,4 @@ }, | ||
path: { | ||
default: 'dependencyD.script.js', | ||
debug: 'dependencyD.debug.script.js' | ||
path: 'dependencyD.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -146,3 +146,3 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyE.script.js' | ||
path: 'dependencyE.script.js' | ||
}, | ||
@@ -159,4 +159,4 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyG.script.js', | ||
debug: 'dependencyG.debug.script.js' | ||
path: 'dependencyG.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -168,3 +168,3 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyH.script.js' | ||
path: 'dependencyH.script.js' | ||
}, | ||
@@ -185,4 +185,4 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsB_default.js', | ||
debug: 'stringsB_default.debug.js' | ||
path: 'stringsB_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -193,3 +193,3 @@ }, | ||
defaultPath: { | ||
default: 'stringsC_default.js' | ||
path: 'stringsC_default.js' | ||
} | ||
@@ -210,3 +210,3 @@ }, | ||
'en-us': { | ||
default: 'stringsE_en-us.js' | ||
path: 'stringsE_en-us.js' | ||
}, | ||
@@ -221,4 +221,4 @@ 'fr-fr': 'stringsE_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsF_en-us.js', | ||
debug: 'stringsF_en-us.debug.js' | ||
path: 'stringsF_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -236,4 +236,4 @@ 'fr-fr': 'stringsF_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsH_default.js', | ||
debug: 'stringsH_default.debug.js' | ||
path: 'stringsH_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -245,3 +245,3 @@ shouldNotPreload: true | ||
defaultPath: { | ||
default: 'stringsI_default.js' | ||
path: 'stringsI_default.js' | ||
}, | ||
@@ -264,3 +264,3 @@ shouldNotPreload: true | ||
'en-us': { | ||
default: 'stringsK_en-us.js' | ||
path: 'stringsK_en-us.js' | ||
}, | ||
@@ -276,4 +276,4 @@ 'fr-fr': 'stringsK_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsL_en-us.js', | ||
debug: 'stringsL_en-us.debug.js' | ||
path: 'stringsL_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -292,4 +292,4 @@ 'fr-fr': 'stringsL_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsN_default.js', | ||
debug: 'stringsN_default.debug.js' | ||
path: 'stringsN_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -301,3 +301,3 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsO_default.js' | ||
path: 'stringsO_default.js' | ||
}, | ||
@@ -320,3 +320,3 @@ shouldNotPreload: false | ||
'en-us': { | ||
default: 'stringsQ_en-us.js' | ||
path: 'stringsQ_en-us.js' | ||
}, | ||
@@ -332,4 +332,4 @@ 'fr-fr': 'stringsQ_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsR_en-us.js', | ||
debug: 'stringsR_en-us.debug.js' | ||
path: 'stringsR_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -336,0 +336,0 @@ 'fr-fr': 'stringsR_fr-fr.js' |
@@ -29,3 +29,3 @@ { | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
} | ||
@@ -38,4 +38,4 @@ }, | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -61,3 +61,3 @@ }, | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -71,4 +71,4 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -95,3 +95,3 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -105,4 +105,4 @@ "shouldNotPreload": false | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -118,4 +118,4 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyA.script.js", | ||
"debug": "dependencyA.debug.script.js" | ||
"path": "dependencyA.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -126,3 +126,3 @@ }, | ||
"path": { | ||
"default": "dependencyB.script.js" | ||
"path": "dependencyB.script.js" | ||
} | ||
@@ -137,4 +137,4 @@ }, | ||
"path": { | ||
"default": "dependencyD.script.js", | ||
"debug": "dependencyD.debug.script.js" | ||
"path": "dependencyD.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -146,3 +146,3 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyE.script.js" | ||
"path": "dependencyE.script.js" | ||
}, | ||
@@ -159,4 +159,4 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyG.script.js", | ||
"debug": "dependencyG.debug.script.js" | ||
"path": "dependencyG.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -168,3 +168,3 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyH.script.js" | ||
"path": "dependencyH.script.js" | ||
}, | ||
@@ -185,4 +185,4 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsB_default.js", | ||
"debug": "stringsB_default.debug.js" | ||
"path": "stringsB_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -193,3 +193,3 @@ }, | ||
"defaultPath": { | ||
"default": "stringsC_default.js" | ||
"path": "stringsC_default.js" | ||
} | ||
@@ -210,3 +210,3 @@ }, | ||
"en-us": { | ||
"default": "stringsE_en-us.js" | ||
"path": "stringsE_en-us.js" | ||
}, | ||
@@ -221,4 +221,4 @@ "fr-fr": "stringsE_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsF_en-us.js", | ||
"debug": "stringsF_en-us.debug.js" | ||
"path": "stringsF_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -236,4 +236,4 @@ "fr-fr": "stringsF_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsH_default.js", | ||
"debug": "stringsH_default.debug.js" | ||
"path": "stringsH_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -245,3 +245,3 @@ "shouldNotPreload": true | ||
"defaultPath": { | ||
"default": "stringsI_default.js" | ||
"path": "stringsI_default.js" | ||
}, | ||
@@ -264,3 +264,3 @@ "shouldNotPreload": true | ||
"en-us": { | ||
"default": "stringsK_en-us.js" | ||
"path": "stringsK_en-us.js" | ||
}, | ||
@@ -276,4 +276,4 @@ "fr-fr": "stringsK_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsL_en-us.js", | ||
"debug": "stringsL_en-us.debug.js" | ||
"path": "stringsL_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -292,4 +292,4 @@ "fr-fr": "stringsL_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsN_default.js", | ||
"debug": "stringsN_default.debug.js" | ||
"path": "stringsN_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -301,3 +301,3 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsO_default.js" | ||
"path": "stringsO_default.js" | ||
}, | ||
@@ -320,3 +320,3 @@ "shouldNotPreload": false | ||
"en-us": { | ||
"default": "stringsQ_en-us.js" | ||
"path": "stringsQ_en-us.js" | ||
}, | ||
@@ -332,4 +332,4 @@ "fr-fr": "stringsQ_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsR_en-us.js", | ||
"debug": "stringsR_en-us.debug.js" | ||
"path": "stringsR_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -336,0 +336,0 @@ "fr-fr": "stringsR_fr-fr.js" |
@@ -30,3 +30,3 @@ "use strict"; | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
} | ||
@@ -39,4 +39,4 @@ }, | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -62,3 +62,3 @@ }, | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -72,4 +72,4 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -96,3 +96,3 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -106,4 +106,4 @@ shouldNotPreload: false | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -119,4 +119,4 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyA.script.js', | ||
debug: 'dependencyA.debug.script.js' | ||
path: 'dependencyA.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -127,3 +127,3 @@ }, | ||
path: { | ||
default: 'dependencyB.script.js' | ||
path: 'dependencyB.script.js' | ||
} | ||
@@ -138,4 +138,4 @@ }, | ||
path: { | ||
default: 'dependencyD.script.js', | ||
debug: 'dependencyD.debug.script.js' | ||
path: 'dependencyD.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -147,3 +147,3 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyE.script.js' | ||
path: 'dependencyE.script.js' | ||
}, | ||
@@ -160,4 +160,4 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyG.script.js', | ||
debug: 'dependencyG.debug.script.js' | ||
path: 'dependencyG.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -169,3 +169,3 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyH.script.js' | ||
path: 'dependencyH.script.js' | ||
}, | ||
@@ -186,4 +186,4 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsB_default.js', | ||
debug: 'stringsB_default.debug.js' | ||
path: 'stringsB_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -194,3 +194,3 @@ }, | ||
defaultPath: { | ||
default: 'stringsC_default.js' | ||
path: 'stringsC_default.js' | ||
} | ||
@@ -211,3 +211,3 @@ }, | ||
'en-us': { | ||
default: 'stringsE_en-us.js' | ||
path: 'stringsE_en-us.js' | ||
}, | ||
@@ -222,4 +222,4 @@ 'fr-fr': 'stringsE_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsF_en-us.js', | ||
debug: 'stringsF_en-us.debug.js' | ||
path: 'stringsF_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -237,4 +237,4 @@ 'fr-fr': 'stringsF_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsH_default.js', | ||
debug: 'stringsH_default.debug.js' | ||
path: 'stringsH_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -246,3 +246,3 @@ shouldNotPreload: true | ||
defaultPath: { | ||
default: 'stringsI_default.js' | ||
path: 'stringsI_default.js' | ||
}, | ||
@@ -265,3 +265,3 @@ shouldNotPreload: true | ||
'en-us': { | ||
default: 'stringsK_en-us.js' | ||
path: 'stringsK_en-us.js' | ||
}, | ||
@@ -277,4 +277,4 @@ 'fr-fr': 'stringsK_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsL_en-us.js', | ||
debug: 'stringsL_en-us.debug.js' | ||
path: 'stringsL_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -293,4 +293,4 @@ 'fr-fr': 'stringsL_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsN_default.js', | ||
debug: 'stringsN_default.debug.js' | ||
path: 'stringsN_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -302,3 +302,3 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsO_default.js' | ||
path: 'stringsO_default.js' | ||
}, | ||
@@ -321,3 +321,3 @@ shouldNotPreload: false | ||
'en-us': { | ||
default: 'stringsQ_en-us.js' | ||
path: 'stringsQ_en-us.js' | ||
}, | ||
@@ -333,4 +333,4 @@ 'fr-fr': 'stringsQ_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsR_en-us.js', | ||
debug: 'stringsR_en-us.debug.js' | ||
path: 'stringsR_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -337,0 +337,0 @@ 'fr-fr': 'stringsR_fr-fr.js' |
{ | ||
"$schema": "./../jsonSchemas/clientSideAssemblyManifestSchema.json", | ||
"$schema": "./../jsonSchemas/client-side-library-manifest.schema.json", | ||
@@ -31,3 +31,3 @@ "manifestVersion": 2, | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
} | ||
@@ -40,4 +40,4 @@ }, | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -63,3 +63,3 @@ }, | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -73,4 +73,4 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -97,3 +97,3 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -107,4 +107,4 @@ "shouldNotPreload": false | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -120,4 +120,4 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyA.script.js", | ||
"debug": "dependencyA.debug.script.js" | ||
"path": "dependencyA.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -128,3 +128,3 @@ }, | ||
"path": { | ||
"default": "dependencyB.script.js" | ||
"path": "dependencyB.script.js" | ||
} | ||
@@ -139,4 +139,4 @@ }, | ||
"path": { | ||
"default": "dependencyD.script.js", | ||
"debug": "dependencyD.debug.script.js" | ||
"path": "dependencyD.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -148,3 +148,3 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyE.script.js" | ||
"path": "dependencyE.script.js" | ||
}, | ||
@@ -161,4 +161,4 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyG.script.js", | ||
"debug": "dependencyG.debug.script.js" | ||
"path": "dependencyG.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -170,3 +170,3 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyH.script.js" | ||
"path": "dependencyH.script.js" | ||
}, | ||
@@ -187,4 +187,4 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsB_default.js", | ||
"debug": "stringsB_default.debug.js" | ||
"path": "stringsB_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -195,3 +195,3 @@ }, | ||
"defaultPath": { | ||
"default": "stringsC_default.js" | ||
"path": "stringsC_default.js" | ||
} | ||
@@ -212,3 +212,3 @@ }, | ||
"en-us": { | ||
"default": "stringsE_en-us.js" | ||
"path": "stringsE_en-us.js" | ||
}, | ||
@@ -223,4 +223,4 @@ "fr-fr": "stringsE_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsF_en-us.js", | ||
"debug": "stringsF_en-us.debug.js" | ||
"path": "stringsF_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -238,4 +238,4 @@ "fr-fr": "stringsF_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsH_default.js", | ||
"debug": "stringsH_default.debug.js" | ||
"path": "stringsH_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -247,3 +247,3 @@ "shouldNotPreload": true | ||
"defaultPath": { | ||
"default": "stringsI_default.js" | ||
"path": "stringsI_default.js" | ||
}, | ||
@@ -266,3 +266,3 @@ "shouldNotPreload": true | ||
"en-us": { | ||
"default": "stringsK_en-us.js" | ||
"path": "stringsK_en-us.js" | ||
}, | ||
@@ -278,4 +278,4 @@ "fr-fr": "stringsK_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsL_en-us.js", | ||
"debug": "stringsL_en-us.debug.js" | ||
"path": "stringsL_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -294,4 +294,4 @@ "fr-fr": "stringsL_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsN_default.js", | ||
"debug": "stringsN_default.debug.js" | ||
"path": "stringsN_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -303,3 +303,3 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsO_default.js" | ||
"path": "stringsO_default.js" | ||
}, | ||
@@ -322,3 +322,3 @@ "shouldNotPreload": false | ||
"en-us": { | ||
"default": "stringsQ_en-us.js" | ||
"path": "stringsQ_en-us.js" | ||
}, | ||
@@ -334,4 +334,4 @@ "fr-fr": "stringsQ_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsR_en-us.js", | ||
"debug": "stringsR_en-us.debug.js" | ||
"path": "stringsR_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -338,0 +338,0 @@ "fr-fr": "stringsR_fr-fr.js" |
@@ -29,3 +29,3 @@ "use strict"; | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
} | ||
@@ -38,4 +38,4 @@ }, | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -61,3 +61,3 @@ }, | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -71,4 +71,4 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -95,3 +95,3 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -105,4 +105,4 @@ shouldNotPreload: false | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -118,4 +118,4 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyA.script.js', | ||
debug: 'dependencyA.debug.script.js' | ||
path: 'dependencyA.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -126,3 +126,3 @@ }, | ||
path: { | ||
default: 'dependencyB.script.js' | ||
path: 'dependencyB.script.js' | ||
} | ||
@@ -137,4 +137,4 @@ }, | ||
path: { | ||
default: 'dependencyD.script.js', | ||
debug: 'dependencyD.debug.script.js' | ||
path: 'dependencyD.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -146,3 +146,3 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyE.script.js' | ||
path: 'dependencyE.script.js' | ||
}, | ||
@@ -159,4 +159,4 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyG.script.js', | ||
debug: 'dependencyG.debug.script.js' | ||
path: 'dependencyG.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -168,3 +168,3 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyH.script.js' | ||
path: 'dependencyH.script.js' | ||
}, | ||
@@ -185,4 +185,4 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsB_default.js', | ||
debug: 'stringsB_default.debug.js' | ||
path: 'stringsB_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -193,3 +193,3 @@ }, | ||
defaultPath: { | ||
default: 'stringsC_default.js' | ||
path: 'stringsC_default.js' | ||
} | ||
@@ -210,3 +210,3 @@ }, | ||
'en-us': { | ||
default: 'stringsE_en-us.js' | ||
path: 'stringsE_en-us.js' | ||
}, | ||
@@ -221,4 +221,4 @@ 'fr-fr': 'stringsE_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsF_en-us.js', | ||
debug: 'stringsF_en-us.debug.js' | ||
path: 'stringsF_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -236,4 +236,4 @@ 'fr-fr': 'stringsF_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsH_default.js', | ||
debug: 'stringsH_default.debug.js' | ||
path: 'stringsH_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -245,3 +245,3 @@ shouldNotPreload: true | ||
defaultPath: { | ||
default: 'stringsI_default.js' | ||
path: 'stringsI_default.js' | ||
}, | ||
@@ -264,3 +264,3 @@ shouldNotPreload: true | ||
'en-us': { | ||
default: 'stringsK_en-us.js' | ||
path: 'stringsK_en-us.js' | ||
}, | ||
@@ -276,4 +276,4 @@ 'fr-fr': 'stringsK_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsL_en-us.js', | ||
debug: 'stringsL_en-us.debug.js' | ||
path: 'stringsL_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -292,4 +292,4 @@ 'fr-fr': 'stringsL_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsN_default.js', | ||
debug: 'stringsN_default.debug.js' | ||
path: 'stringsN_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -301,3 +301,3 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsO_default.js' | ||
path: 'stringsO_default.js' | ||
}, | ||
@@ -320,3 +320,3 @@ shouldNotPreload: false | ||
'en-us': { | ||
default: 'stringsQ_en-us.js' | ||
path: 'stringsQ_en-us.js' | ||
}, | ||
@@ -332,4 +332,4 @@ 'fr-fr': 'stringsQ_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsR_en-us.js', | ||
debug: 'stringsR_en-us.debug.js' | ||
path: 'stringsR_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -336,0 +336,0 @@ 'fr-fr': 'stringsR_fr-fr.js' |
@@ -30,3 +30,3 @@ { | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
} | ||
@@ -39,4 +39,4 @@ }, | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -62,3 +62,3 @@ }, | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -72,4 +72,4 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -96,3 +96,3 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -106,4 +106,4 @@ "shouldNotPreload": false | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -119,4 +119,4 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyA.script.js", | ||
"debug": "dependencyA.debug.script.js" | ||
"path": "dependencyA.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -127,3 +127,3 @@ }, | ||
"path": { | ||
"default": "dependencyB.script.js" | ||
"path": "dependencyB.script.js" | ||
} | ||
@@ -138,4 +138,4 @@ }, | ||
"path": { | ||
"default": "dependencyD.script.js", | ||
"debug": "dependencyD.debug.script.js" | ||
"path": "dependencyD.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -147,3 +147,3 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyE.script.js" | ||
"path": "dependencyE.script.js" | ||
}, | ||
@@ -160,4 +160,4 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyG.script.js", | ||
"debug": "dependencyG.debug.script.js" | ||
"path": "dependencyG.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -169,3 +169,3 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyH.script.js" | ||
"path": "dependencyH.script.js" | ||
}, | ||
@@ -186,4 +186,4 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsB_default.js", | ||
"debug": "stringsB_default.debug.js" | ||
"path": "stringsB_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -194,3 +194,3 @@ }, | ||
"defaultPath": { | ||
"default": "stringsC_default.js" | ||
"path": "stringsC_default.js" | ||
} | ||
@@ -211,3 +211,3 @@ }, | ||
"en-us": { | ||
"default": "stringsE_en-us.js" | ||
"path": "stringsE_en-us.js" | ||
}, | ||
@@ -222,4 +222,4 @@ "fr-fr": "stringsE_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsF_en-us.js", | ||
"debug": "stringsF_en-us.debug.js" | ||
"path": "stringsF_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -237,4 +237,4 @@ "fr-fr": "stringsF_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsH_default.js", | ||
"debug": "stringsH_default.debug.js" | ||
"path": "stringsH_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -246,3 +246,3 @@ "shouldNotPreload": true | ||
"defaultPath": { | ||
"default": "stringsI_default.js" | ||
"path": "stringsI_default.js" | ||
}, | ||
@@ -265,3 +265,3 @@ "shouldNotPreload": true | ||
"en-us": { | ||
"default": "stringsK_en-us.js" | ||
"path": "stringsK_en-us.js" | ||
}, | ||
@@ -277,4 +277,4 @@ "fr-fr": "stringsK_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsL_en-us.js", | ||
"debug": "stringsL_en-us.debug.js" | ||
"path": "stringsL_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -293,4 +293,4 @@ "fr-fr": "stringsL_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsN_default.js", | ||
"debug": "stringsN_default.debug.js" | ||
"path": "stringsN_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -302,3 +302,3 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsO_default.js" | ||
"path": "stringsO_default.js" | ||
}, | ||
@@ -321,3 +321,3 @@ "shouldNotPreload": false | ||
"en-us": { | ||
"default": "stringsQ_en-us.js" | ||
"path": "stringsQ_en-us.js" | ||
}, | ||
@@ -333,4 +333,4 @@ "fr-fr": "stringsQ_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsR_en-us.js", | ||
"debug": "stringsR_en-us.debug.js" | ||
"path": "stringsR_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -337,0 +337,0 @@ "fr-fr": "stringsR_fr-fr.js" |
@@ -33,3 +33,3 @@ "use strict"; | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
} | ||
@@ -42,4 +42,4 @@ }, | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -65,3 +65,3 @@ }, | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -75,4 +75,4 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -99,3 +99,3 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -109,4 +109,4 @@ shouldNotPreload: false | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -122,4 +122,4 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyA.script.js', | ||
debug: 'dependencyA.debug.script.js' | ||
path: 'dependencyA.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
} | ||
@@ -130,3 +130,3 @@ }, | ||
path: { | ||
default: 'dependencyB.script.js' | ||
path: 'dependencyB.script.js' | ||
} | ||
@@ -141,4 +141,4 @@ }, | ||
path: { | ||
default: 'dependencyD.script.js', | ||
debug: 'dependencyD.debug.script.js' | ||
path: 'dependencyD.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -150,3 +150,3 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyE.script.js' | ||
path: 'dependencyE.script.js' | ||
}, | ||
@@ -163,4 +163,4 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyG.script.js', | ||
debug: 'dependencyG.debug.script.js' | ||
path: 'dependencyG.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -172,3 +172,3 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyH.script.js' | ||
path: 'dependencyH.script.js' | ||
}, | ||
@@ -189,4 +189,4 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsB_default.js', | ||
debug: 'stringsB_default.debug.js' | ||
path: 'stringsB_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -197,3 +197,3 @@ }, | ||
defaultPath: { | ||
default: 'stringsC_default.js' | ||
path: 'stringsC_default.js' | ||
} | ||
@@ -214,3 +214,3 @@ }, | ||
'en-us': { | ||
default: 'stringsE_en-us.js' | ||
path: 'stringsE_en-us.js' | ||
}, | ||
@@ -225,4 +225,4 @@ 'fr-fr': 'stringsE_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsF_en-us.js', | ||
debug: 'stringsF_en-us.debug.js' | ||
path: 'stringsF_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -240,4 +240,4 @@ 'fr-fr': 'stringsF_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsH_default.js', | ||
debug: 'stringsH_default.debug.js' | ||
path: 'stringsH_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -249,3 +249,3 @@ shouldNotPreload: true | ||
defaultPath: { | ||
default: 'stringsI_default.js' | ||
path: 'stringsI_default.js' | ||
}, | ||
@@ -268,3 +268,3 @@ shouldNotPreload: true | ||
'en-us': { | ||
default: 'stringsK_en-us.js' | ||
path: 'stringsK_en-us.js' | ||
}, | ||
@@ -280,4 +280,4 @@ 'fr-fr': 'stringsK_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsL_en-us.js', | ||
debug: 'stringsL_en-us.debug.js' | ||
path: 'stringsL_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -296,4 +296,4 @@ 'fr-fr': 'stringsL_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsN_default.js', | ||
debug: 'stringsN_default.debug.js' | ||
path: 'stringsN_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -305,3 +305,3 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsO_default.js' | ||
path: 'stringsO_default.js' | ||
}, | ||
@@ -324,3 +324,3 @@ shouldNotPreload: false | ||
'en-us': { | ||
default: 'stringsQ_en-us.js' | ||
path: 'stringsQ_en-us.js' | ||
}, | ||
@@ -336,4 +336,4 @@ 'fr-fr': 'stringsQ_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsR_en-us.js', | ||
debug: 'stringsR_en-us.debug.js' | ||
path: 'stringsR_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -385,3 +385,3 @@ 'fr-fr': 'stringsR_fr-fr.js' | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
} | ||
@@ -394,4 +394,4 @@ }, | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -417,3 +417,3 @@ }, | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -427,4 +427,4 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -451,3 +451,3 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -461,4 +461,4 @@ shouldNotPreload: false | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -474,4 +474,4 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyA.script.js', | ||
debug: 'dependencyA.debug.script.js' | ||
path: 'dependencyA.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
} | ||
@@ -482,3 +482,3 @@ }, | ||
path: { | ||
default: 'dependencyB.script.js' | ||
path: 'dependencyB.script.js' | ||
} | ||
@@ -493,4 +493,4 @@ }, | ||
path: { | ||
default: 'dependencyD.script.js', | ||
debug: 'dependencyD.debug.script.js' | ||
path: 'dependencyD.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -502,3 +502,3 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyE.script.js' | ||
path: 'dependencyE.script.js' | ||
}, | ||
@@ -515,4 +515,4 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyG.script.js', | ||
debug: 'dependencyG.debug.script.js' | ||
path: 'dependencyG.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -524,3 +524,3 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyH.script.js' | ||
path: 'dependencyH.script.js' | ||
}, | ||
@@ -541,4 +541,4 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsB_default.js', | ||
debug: 'stringsB_default.debug.js' | ||
path: 'stringsB_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -549,3 +549,3 @@ }, | ||
defaultPath: { | ||
default: 'stringsC_default.js' | ||
path: 'stringsC_default.js' | ||
} | ||
@@ -566,3 +566,3 @@ }, | ||
'en-us': { | ||
default: 'stringsE_en-us.js' | ||
path: 'stringsE_en-us.js' | ||
}, | ||
@@ -577,4 +577,4 @@ 'fr-fr': 'stringsE_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsF_en-us.js', | ||
debug: 'stringsF_en-us.debug.js' | ||
path: 'stringsF_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -592,4 +592,4 @@ 'fr-fr': 'stringsF_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsH_default.js', | ||
debug: 'stringsH_default.debug.js' | ||
path: 'stringsH_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -601,3 +601,3 @@ shouldNotPreload: true | ||
defaultPath: { | ||
default: 'stringsI_default.js' | ||
path: 'stringsI_default.js' | ||
}, | ||
@@ -620,3 +620,3 @@ shouldNotPreload: true | ||
'en-us': { | ||
default: 'stringsK_en-us.js' | ||
path: 'stringsK_en-us.js' | ||
}, | ||
@@ -632,4 +632,4 @@ 'fr-fr': 'stringsK_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsL_en-us.js', | ||
debug: 'stringsL_en-us.debug.js' | ||
path: 'stringsL_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -648,4 +648,4 @@ 'fr-fr': 'stringsL_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsN_default.js', | ||
debug: 'stringsN_default.debug.js' | ||
path: 'stringsN_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -657,3 +657,3 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsO_default.js' | ||
path: 'stringsO_default.js' | ||
}, | ||
@@ -676,3 +676,3 @@ shouldNotPreload: false | ||
'en-us': { | ||
default: 'stringsQ_en-us.js' | ||
path: 'stringsQ_en-us.js' | ||
}, | ||
@@ -688,4 +688,4 @@ 'fr-fr': 'stringsQ_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsR_en-us.js', | ||
debug: 'stringsR_en-us.debug.js' | ||
path: 'stringsR_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js' | ||
}, | ||
@@ -692,0 +692,0 @@ 'fr-fr': 'stringsR_fr-fr.js' |
@@ -34,3 +34,3 @@ { | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
} | ||
@@ -43,4 +43,4 @@ }, | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -66,3 +66,3 @@ }, | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -76,4 +76,4 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -100,3 +100,3 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -110,4 +110,4 @@ "shouldNotPreload": false | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -123,4 +123,4 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyA.script.js", | ||
"debug": "dependencyA.debug.script.js" | ||
"path": "dependencyA.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -131,3 +131,3 @@ }, | ||
"path": { | ||
"default": "dependencyB.script.js" | ||
"path": "dependencyB.script.js" | ||
} | ||
@@ -142,4 +142,4 @@ }, | ||
"path": { | ||
"default": "dependencyD.script.js", | ||
"debug": "dependencyD.debug.script.js" | ||
"path": "dependencyD.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -151,3 +151,3 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyE.script.js" | ||
"path": "dependencyE.script.js" | ||
}, | ||
@@ -164,4 +164,4 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyG.script.js", | ||
"debug": "dependencyG.debug.script.js" | ||
"path": "dependencyG.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -173,3 +173,3 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyH.script.js" | ||
"path": "dependencyH.script.js" | ||
}, | ||
@@ -190,4 +190,4 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsB_default.js", | ||
"debug": "stringsB_default.debug.js" | ||
"path": "stringsB_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -198,3 +198,3 @@ }, | ||
"defaultPath": { | ||
"default": "stringsC_default.js" | ||
"path": "stringsC_default.js" | ||
} | ||
@@ -215,3 +215,3 @@ }, | ||
"en-us": { | ||
"default": "stringsE_en-us.js" | ||
"path": "stringsE_en-us.js" | ||
}, | ||
@@ -226,4 +226,4 @@ "fr-fr": "stringsE_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsF_en-us.js", | ||
"debug": "stringsF_en-us.debug.js" | ||
"path": "stringsF_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -241,4 +241,4 @@ "fr-fr": "stringsF_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsH_default.js", | ||
"debug": "stringsH_default.debug.js" | ||
"path": "stringsH_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -250,3 +250,3 @@ "shouldNotPreload": true | ||
"defaultPath": { | ||
"default": "stringsI_default.js" | ||
"path": "stringsI_default.js" | ||
}, | ||
@@ -269,3 +269,3 @@ "shouldNotPreload": true | ||
"en-us": { | ||
"default": "stringsK_en-us.js" | ||
"path": "stringsK_en-us.js" | ||
}, | ||
@@ -281,4 +281,4 @@ "fr-fr": "stringsK_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsL_en-us.js", | ||
"debug": "stringsL_en-us.debug.js" | ||
"path": "stringsL_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -297,4 +297,4 @@ "fr-fr": "stringsL_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsN_default.js", | ||
"debug": "stringsN_default.debug.js" | ||
"path": "stringsN_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -306,3 +306,3 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsO_default.js" | ||
"path": "stringsO_default.js" | ||
}, | ||
@@ -325,3 +325,3 @@ "shouldNotPreload": false | ||
"en-us": { | ||
"default": "stringsQ_en-us.js" | ||
"path": "stringsQ_en-us.js" | ||
}, | ||
@@ -337,4 +337,4 @@ "fr-fr": "stringsQ_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsR_en-us.js", | ||
"debug": "stringsR_en-us.debug.js" | ||
"path": "stringsR_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -341,0 +341,0 @@ "fr-fr": "stringsR_fr-fr.js" |
@@ -32,3 +32,3 @@ "use strict"; | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
} | ||
@@ -41,4 +41,4 @@ }, | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -64,3 +64,3 @@ }, | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -74,4 +74,4 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -98,3 +98,3 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -108,4 +108,4 @@ shouldNotPreload: false | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -121,4 +121,4 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyA.script.js', | ||
debug: 'dependencyA.debug.script.js' | ||
path: 'dependencyA.script.js', | ||
integrity: 'dependencyA.sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -129,3 +129,3 @@ }, | ||
path: { | ||
default: 'dependencyB.script.js' | ||
path: 'dependencyB.script.js' | ||
} | ||
@@ -140,4 +140,4 @@ }, | ||
path: { | ||
default: 'dependencyD.script.js', | ||
debug: 'dependencyD.debug.script.js' | ||
path: 'dependencyD.script.js', | ||
integrity: 'dependencyD.sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -149,3 +149,3 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyE.script.js' | ||
path: 'dependencyE.script.js' | ||
}, | ||
@@ -162,4 +162,4 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyG.script.js', | ||
debug: 'dependencyG.debug.script.js' | ||
path: 'dependencyG.script.js', | ||
integrity: 'dependencyG.sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -171,3 +171,3 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyH.script.js' | ||
path: 'dependencyH.script.js' | ||
}, | ||
@@ -188,4 +188,4 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsB_default.js', | ||
debug: 'stringsB_default.debug.js' | ||
path: 'stringsB_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -196,3 +196,3 @@ }, | ||
defaultPath: { | ||
default: 'stringsC_default.js' | ||
path: 'stringsC_default.js' | ||
} | ||
@@ -213,3 +213,3 @@ }, | ||
'en-us': { | ||
default: 'stringsE_en-us.js' | ||
path: 'stringsE_en-us.js' | ||
}, | ||
@@ -224,4 +224,4 @@ 'fr-fr': 'stringsE_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsF_en-us.js', | ||
debug: 'stringsF_en-us.debug.js' | ||
path: 'stringsF_en-us.js', | ||
integrity: 'stringsF_en-sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -239,4 +239,4 @@ 'fr-fr': 'stringsF_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsH_default.js', | ||
debug: 'stringsH_default.debug.js' | ||
path: 'stringsH_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -248,3 +248,3 @@ shouldNotPreload: true | ||
defaultPath: { | ||
default: 'stringsI_default.js' | ||
path: 'stringsI_default.js' | ||
}, | ||
@@ -267,3 +267,3 @@ shouldNotPreload: true | ||
'en-us': { | ||
default: 'stringsK_en-us.js' | ||
path: 'stringsK_en-us.js' | ||
}, | ||
@@ -279,4 +279,4 @@ 'fr-fr': 'stringsK_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsL_en-us.js', | ||
debug: 'stringsL_en-us.debug.js' | ||
path: 'stringsL_en-us.js', | ||
integrity: 'stringsL_en-sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -295,4 +295,4 @@ 'fr-fr': 'stringsL_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsN_default.js', | ||
debug: 'stringsN_default.debug.js' | ||
path: 'stringsN_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -304,3 +304,3 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsO_default.js' | ||
path: 'stringsO_default.js' | ||
}, | ||
@@ -323,3 +323,3 @@ shouldNotPreload: false | ||
'en-us': { | ||
default: 'stringsQ_en-us.js' | ||
path: 'stringsQ_en-us.js' | ||
}, | ||
@@ -335,4 +335,4 @@ 'fr-fr': 'stringsQ_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsR_en-us.js', | ||
debug: 'stringsR_en-us.debug.js' | ||
path: 'stringsR_en-us.js', | ||
integrity: 'stringsR_en-sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -339,0 +339,0 @@ 'fr-fr': 'stringsR_fr-fr.js' |
@@ -31,3 +31,3 @@ "use strict"; | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
} | ||
@@ -40,4 +40,4 @@ }, | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -63,3 +63,3 @@ }, | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -73,4 +73,4 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -97,3 +97,3 @@ shouldNotPreload: true | ||
failoverPath: { | ||
default: 'script.js' | ||
path: 'script.js' | ||
}, | ||
@@ -107,4 +107,4 @@ shouldNotPreload: false | ||
failoverPath: { | ||
default: 'script.js', | ||
debug: 'script.debug.js' | ||
path: 'script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -120,4 +120,4 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyA.script.js', | ||
debug: 'dependencyA.debug.script.js' | ||
path: 'dependencyA.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -128,3 +128,3 @@ }, | ||
path: { | ||
default: 'dependencyB.script.js' | ||
path: 'dependencyB.script.js' | ||
} | ||
@@ -139,4 +139,4 @@ }, | ||
path: { | ||
default: 'dependencyD.script.js', | ||
debug: 'dependencyD.debug.script.js' | ||
path: 'dependencyD.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -148,3 +148,3 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyE.script.js' | ||
path: 'dependencyE.script.js' | ||
}, | ||
@@ -161,4 +161,4 @@ shouldNotPreload: true | ||
path: { | ||
default: 'dependencyG.script.js', | ||
debug: 'dependencyG.debug.script.js' | ||
path: 'dependencyG.script.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -170,3 +170,3 @@ shouldNotPreload: false | ||
path: { | ||
default: 'dependencyH.script.js' | ||
path: 'dependencyH.script.js' | ||
}, | ||
@@ -187,4 +187,4 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsB_default.js', | ||
debug: 'stringsB_default.debug.js' | ||
path: 'stringsB_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
} | ||
@@ -195,3 +195,3 @@ }, | ||
defaultPath: { | ||
default: 'stringsC_default.js' | ||
path: 'stringsC_default.js' | ||
} | ||
@@ -212,3 +212,3 @@ }, | ||
'en-us': { | ||
default: 'stringsE_en-us.js' | ||
path: 'stringsE_en-us.js' | ||
}, | ||
@@ -223,4 +223,4 @@ 'fr-fr': 'stringsE_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsF_en-us.js', | ||
debug: 'stringsF_en-us.debug.js' | ||
path: 'stringsF_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -238,4 +238,4 @@ 'fr-fr': 'stringsF_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsH_default.js', | ||
debug: 'stringsH_default.debug.js' | ||
path: 'stringsH_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -247,3 +247,3 @@ shouldNotPreload: true | ||
defaultPath: { | ||
default: 'stringsI_default.js' | ||
path: 'stringsI_default.js' | ||
}, | ||
@@ -266,3 +266,3 @@ shouldNotPreload: true | ||
'en-us': { | ||
default: 'stringsK_en-us.js' | ||
path: 'stringsK_en-us.js' | ||
}, | ||
@@ -278,4 +278,4 @@ 'fr-fr': 'stringsK_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsL_en-us.js', | ||
debug: 'stringsL_en-us.debug.js' | ||
path: 'stringsL_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -294,4 +294,4 @@ 'fr-fr': 'stringsL_fr-fr.js' | ||
defaultPath: { | ||
default: 'stringsN_default.js', | ||
debug: 'stringsN_default.debug.js' | ||
path: 'stringsN_default.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -303,3 +303,3 @@ shouldNotPreload: false | ||
defaultPath: { | ||
default: 'stringsO_default.js' | ||
path: 'stringsO_default.js' | ||
}, | ||
@@ -322,3 +322,3 @@ shouldNotPreload: false | ||
'en-us': { | ||
default: 'stringsQ_en-us.js' | ||
path: 'stringsQ_en-us.js' | ||
}, | ||
@@ -334,4 +334,4 @@ 'fr-fr': 'stringsQ_fr-fr.js' | ||
'en-us': { | ||
default: 'stringsR_en-us.js', | ||
debug: 'stringsR_en-us.debug.js' | ||
path: 'stringsR_en-us.js', | ||
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC' | ||
}, | ||
@@ -338,0 +338,0 @@ 'fr-fr': 'stringsR_fr-fr.js' |
@@ -29,3 +29,3 @@ { | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
} | ||
@@ -38,4 +38,4 @@ }, | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -61,3 +61,3 @@ }, | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -71,4 +71,4 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -95,3 +95,3 @@ "shouldNotPreload": true | ||
"failoverPath": { | ||
"default": "script.js" | ||
"path": "script.js" | ||
}, | ||
@@ -105,4 +105,4 @@ "shouldNotPreload": false | ||
"failoverPath": { | ||
"default": "script.js", | ||
"debug": "script.debug.js" | ||
"path": "script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -118,4 +118,4 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyA.script.js", | ||
"debug": "dependencyA.debug.script.js" | ||
"path": "dependencyA.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -126,3 +126,3 @@ }, | ||
"path": { | ||
"default": "dependencyB.script.js" | ||
"path": "dependencyB.script.js" | ||
} | ||
@@ -137,4 +137,4 @@ }, | ||
"path": { | ||
"default": "dependencyD.script.js", | ||
"debug": "dependencyD.debug.script.js" | ||
"path": "dependencyD.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -146,3 +146,3 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyE.script.js" | ||
"path": "dependencyE.script.js" | ||
}, | ||
@@ -159,4 +159,4 @@ "shouldNotPreload": true | ||
"path": { | ||
"default": "dependencyG.script.js", | ||
"debug": "dependencyG.debug.script.js" | ||
"path": "dependencyG.script.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -168,3 +168,3 @@ "shouldNotPreload": false | ||
"path": { | ||
"default": "dependencyH.script.js" | ||
"path": "dependencyH.script.js" | ||
}, | ||
@@ -185,4 +185,4 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsB_default.js", | ||
"debug": "stringsB_default.debug.js" | ||
"path": "stringsB_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
} | ||
@@ -193,3 +193,3 @@ }, | ||
"defaultPath": { | ||
"default": "stringsC_default.js" | ||
"path": "stringsC_default.js" | ||
} | ||
@@ -210,3 +210,3 @@ }, | ||
"en-us": { | ||
"default": "stringsE_en-us.js" | ||
"path": "stringsE_en-us.js" | ||
}, | ||
@@ -221,4 +221,4 @@ "fr-fr": "stringsE_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsF_en-us.js", | ||
"debug": "stringsF_en-us.debug.js" | ||
"path": "stringsF_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -236,4 +236,4 @@ "fr-fr": "stringsF_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsH_default.js", | ||
"debug": "stringsH_default.debug.js" | ||
"path": "stringsH_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -245,3 +245,3 @@ "shouldNotPreload": true | ||
"defaultPath": { | ||
"default": "stringsI_default.js" | ||
"path": "stringsI_default.js" | ||
}, | ||
@@ -264,3 +264,3 @@ "shouldNotPreload": true | ||
"en-us": { | ||
"default": "stringsK_en-us.js" | ||
"path": "stringsK_en-us.js" | ||
}, | ||
@@ -276,4 +276,4 @@ "fr-fr": "stringsK_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsL_en-us.js", | ||
"debug": "stringsL_en-us.debug.js" | ||
"path": "stringsL_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -292,4 +292,4 @@ "fr-fr": "stringsL_fr-fr.js" | ||
"defaultPath": { | ||
"default": "stringsN_default.js", | ||
"debug": "stringsN_default.debug.js" | ||
"path": "stringsN_default.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -301,3 +301,3 @@ "shouldNotPreload": false | ||
"defaultPath": { | ||
"default": "stringsO_default.js" | ||
"path": "stringsO_default.js" | ||
}, | ||
@@ -320,3 +320,3 @@ "shouldNotPreload": false | ||
"en-us": { | ||
"default": "stringsQ_en-us.js" | ||
"path": "stringsQ_en-us.js" | ||
}, | ||
@@ -332,4 +332,4 @@ "fr-fr": "stringsQ_fr-fr.js" | ||
"en-us": { | ||
"default": "stringsR_en-us.js", | ||
"debug": "stringsR_en-us.debug.js" | ||
"path": "stringsR_en-us.js", | ||
"integrity": "sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC" | ||
}, | ||
@@ -336,0 +336,0 @@ "fr-fr": "stringsR_fr-fr.js" |
@@ -116,34 +116,19 @@ /** | ||
/** | ||
* This is the base interface for a set of debug and non-debug/minimized paths. The paths in this object are | ||
* loaded in exactly the same way as any other internal path. | ||
* @beta | ||
*/ | ||
export declare type IModuleConfiguration = IComponentModuleConfiguration | IPathModuleConfiguration | ILocalizedPathModuleConfiguration; | ||
/** | ||
* A path with the subresource integrity hash of the resource. | ||
* | ||
* @beta | ||
*/ | ||
export interface IPath { | ||
export interface IIntegrityPath { | ||
/** | ||
* A path to this module's javascript resource either as a fully-qualified URL or as a path under the | ||
* paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is loaded by default | ||
* unless a debug version of the script is provided and explicitly requested. | ||
* | ||
* @remarks | ||
* | ||
* Supported values: The path to the default/non-debug script either as a fully-qualified URL or as a path under the | ||
* paths provided in the "internalModuleBaseUrls" field. | ||
* | ||
* Example: `"master_2015-04-20/my-application.bundle_1928f8a0.js"` | ||
* The path to the resource. | ||
*/ | ||
default: string; | ||
path: string; | ||
/** | ||
* A path to this module's debug javascript resource either as a fully-qualified URL or as a path under | ||
* the paths provided in the "internalModuleBaseUrls" field. The script referenced by this field is only loaded if | ||
* it is present and debug scripts are explicitly requested. | ||
* | ||
* @remarks | ||
* | ||
* Supported values: The path to the debug script either as a fully-qualified URL or as a path under the | ||
* paths provided in the `"internalModuleBaseUrls"` field. | ||
* | ||
* Example: `"master_2015-04-20/my-application.bundle_18182c39.debug.js"` | ||
* The subresource integrity hash of the resource referenced in {@link IIntegrityPath.path}. | ||
*/ | ||
debug?: string; | ||
integrity?: string; | ||
} | ||
@@ -155,3 +140,3 @@ /** | ||
*/ | ||
export interface IModuleConfiguration { | ||
export interface IModuleConfigurationBase { | ||
/** | ||
@@ -193,3 +178,4 @@ * The type of the script block. `"component"` modules come from a component, | ||
*/ | ||
export interface IComponentModuleConfiguration extends IModuleConfiguration { | ||
export interface IComponentModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'component'; | ||
/** | ||
@@ -230,3 +216,3 @@ * The version of the framework-supplied component to be loaded. For framework runtime component such as | ||
*/ | ||
failoverPath?: string | IPath; | ||
failoverPath?: string | IIntegrityPath; | ||
} | ||
@@ -239,3 +225,4 @@ /** | ||
*/ | ||
export interface IPathModuleConfiguration extends IModuleConfiguration { | ||
export interface IPathModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'path'; | ||
/** | ||
@@ -261,3 +248,3 @@ * A path to this module's javascript resource either as a fully-qualified URL or as a path under the | ||
*/ | ||
path: string | IPath; | ||
path: string | IIntegrityPath; | ||
/** | ||
@@ -308,3 +295,4 @@ * If this property is specified, this module is considered non-AMD and | ||
*/ | ||
export interface ILocalizedPathModuleConfiguration extends IModuleConfiguration { | ||
export interface ILocalizedPathModuleConfiguration extends IModuleConfigurationBase { | ||
type: 'localizedPath'; | ||
/** | ||
@@ -324,3 +312,3 @@ * A path to this module's default locale javascript resource either as a fully-qualified URL or as a | ||
*/ | ||
defaultPath: string | IPath; | ||
defaultPath: string | IIntegrityPath; | ||
/** | ||
@@ -352,5 +340,5 @@ * This is a dictionary of locale keys (in the `"ll-cc"` format) to paths to this module's locale | ||
paths?: { | ||
[locale: string]: string | IPath; | ||
[locale: string]: string | IIntegrityPath; | ||
}; | ||
} | ||
//# sourceMappingURL=IClientSideComponentLoaderConfiguration.d.ts.map |
@@ -33,26 +33,20 @@ { | ||
{ | ||
"type": "string", | ||
"minLength": 5 | ||
}, | ||
{ | ||
"title": "Path", | ||
"description": "This is the base interface for a set of debug and non-debug/minimized paths.", | ||
"type": "object", | ||
"required": ["default"], | ||
"additionalProperties": false, | ||
"required": ["path"], | ||
"properties": { | ||
"default": { | ||
"title": "Default Path", | ||
"description": "A path to this module's javascript resource either as a fully-qualified URL or as a path under the paths provided in the \"internalModuleBaseUrls\" field. The script referenced by this field is loaded by default unless a debug version of the script is provided and explicitly requested.", | ||
"path": { | ||
"type": "string", | ||
"minLength": 5 | ||
"title": "Path", | ||
"description": "The path to the resource." | ||
}, | ||
"debug": { | ||
"title": "Debug Path", | ||
"description": "A path to this module's debug javascript resource either as a fully-qualified URL or as a path under the paths provided in the \"internalModuleBaseUrls\" field. The script referenced by this field is only loaded if it is present and debug scripts are explicitly requested.", | ||
"integrity": { | ||
"type": "string", | ||
"minLength": 5 | ||
"title": "Integrity", | ||
"description": "The subresource integrity hash of the resource referenced in \"path\"." | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
}, | ||
{ | ||
"type": "string" | ||
} | ||
@@ -59,0 +53,0 @@ ] |
{ | ||
"name": "@microsoft/sp-module-interfaces", | ||
"version": "1.15.0-beta.1", | ||
"version": "1.15.0-beta.6", | ||
"description": "SharePoint Framework module interfaces", | ||
@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN \"EULA\" FOLDER", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2143579
10936