@microsoft/sp-module-interfaces 1.21.0-beta.0 → 1.21.0-beta.2
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-internal-beta.d.ts +15 -3
- package/dist/index-internal-public.d.ts +47 -2
- package/dist/index-internal.d.ts +15 -3
- package/lib-commonjs/index.js +31 -29
- package/lib-commonjs/manifestHelpers.js +22 -19
- package/lib-commonjs/manifestSchemaValidator.js +70 -84
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.js +11 -3
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.js +10 -3
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.js +62 -67
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.js +5 -2
- package/lib-commonjs/manifestSchemas/ManifestType.js +18 -13
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.js +28 -7
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.js +22 -5
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.js +18 -4
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.js +15 -3
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.js +18 -4
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.js +27 -7
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.js +61 -9
- package/lib-commonjs/manifestSchemas/examples/prefabapp.manifest.json +37 -3
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.js +24 -6
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.js +47 -12
- package/lib-commonjs/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +107 -3
- package/{lib-commonjs → lib-dts}/manifestSchemaValidator.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideWebPartManifest.d.ts +1 -3
- package/lib-dts/manifestSchemas/IPrefabAppManifest.d.ts +255 -0
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/application_3.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/assembly_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/commandSet_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_3.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/extension_4.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/library_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/multi-version_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/prefab_2.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_1.manifest.d.ts +1 -1
- package/{lib-commonjs → lib-dts}/manifestSchemas/examples/webpart_2.manifest.d.ts +1 -1
- package/{dist → lib-dts}/tsdoc-metadata.json +1 -1
- package/lib-esm/index.js +15 -0
- package/lib-esm/manifestHelpers.js +21 -0
- package/lib-esm/manifestSchemaValidator.js +135 -0
- package/lib-esm/manifestSchemas/IAdaptiveCardExtensionManifest.js +9 -0
- package/lib-esm/manifestSchemas/IClientSideApplicationManifest.js +5 -0
- package/lib-esm/manifestSchemas/IClientSideAssemblyManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideComponentLoaderConfiguration.js +17 -0
- package/lib-esm/manifestSchemas/IClientSideComponentManifest.js +27 -0
- package/lib-esm/manifestSchemas/IClientSideExtensionManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideLibraryManifest.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideManifestBase.js +7 -0
- package/lib-esm/manifestSchemas/IClientSideMultiVersionManifest.js +25 -0
- package/lib-esm/manifestSchemas/IClientSideWebPartManifest.js +62 -0
- package/lib-esm/manifestSchemas/ICommandSetExtensionManifest.js +8 -0
- package/lib-esm/manifestSchemas/IPrefabAppManifest.js +7 -0
- package/lib-esm/manifestSchemas/ManifestType.js +15 -0
- package/lib-esm/manifestSchemas/examples/application.manifest.json +346 -0
- package/lib-esm/manifestSchemas/examples/application_1.manifest.js +344 -0
- package/lib-esm/manifestSchemas/examples/application_2.manifest.js +47 -0
- package/lib-esm/manifestSchemas/examples/application_3.manifest.js +42 -0
- package/lib-esm/manifestSchemas/examples/assembly.manifest.json +331 -0
- package/lib-esm/manifestSchemas/examples/assembly_1.manifest.js +336 -0
- package/lib-esm/manifestSchemas/examples/commandSet_1.manifest.js +42 -0
- package/lib-esm/manifestSchemas/examples/commandset.manifest.json +38 -0
- package/lib-esm/manifestSchemas/examples/extension.manifest.json +20 -0
- package/lib-esm/manifestSchemas/examples/extension_1.manifest.js +25 -0
- package/lib-esm/manifestSchemas/examples/extension_2.manifest.js +24 -0
- package/lib-esm/manifestSchemas/examples/extension_3.manifest.js +23 -0
- package/lib-esm/manifestSchemas/examples/extension_4.manifest.js +23 -0
- package/lib-esm/manifestSchemas/examples/library.manifest.json +330 -0
- package/lib-esm/manifestSchemas/examples/library_1.manifest.js +335 -0
- package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.js +673 -0
- package/lib-esm/manifestSchemas/examples/multi-version_1.manifest.json +336 -0
- package/lib-esm/manifestSchemas/examples/prefab_1.manifest.js +344 -0
- package/lib-esm/manifestSchemas/examples/prefab_2.manifest.js +381 -0
- package/lib-esm/manifestSchemas/examples/prefabapp.manifest.json +379 -0
- package/lib-esm/manifestSchemas/examples/webpart.manifest.json +380 -0
- package/lib-esm/manifestSchemas/examples/webpart_1.manifest.js +350 -0
- package/lib-esm/manifestSchemas/examples/webpart_2.manifest.js +388 -0
- package/lib-esm/manifestSchemas/jsonSchemas/adaptive-card-extension-manifest.schema.json +230 -0
- package/lib-esm/manifestSchemas/jsonSchemas/any-value.schema.json +8 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-application-manifest.schema.json +138 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-assembly-manifest.schema.json +45 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-loader-configuration.schema.json +273 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-component-manifest.schema.json +131 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-extension-manifest.schema.json +61 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-library-manifest.schema.json +39 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-manifest-base.schema.json +25 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-multi-version-manifest.schema.json +118 -0
- package/lib-esm/manifestSchemas/jsonSchemas/client-side-web-part-manifest.schema.json +348 -0
- package/lib-esm/manifestSchemas/jsonSchemas/command-set-extension-manifest.schema.json +81 -0
- package/lib-esm/manifestSchemas/jsonSchemas/guid.schema.json +6 -0
- package/lib-esm/manifestSchemas/jsonSchemas/localized-string.schema.json +33 -0
- package/lib-esm/manifestSchemas/jsonSchemas/prefab-app-manifest.schema.json +176 -0
- package/lib-esm/manifestSchemas/jsonSchemas/semver.schema.json +8 -0
- package/lib-esm/manifestSchemas/remote/draft-04.schema.json +137 -0
- package/lib-esm/manifestSchemas/remote/site-design-script-actions.schema.json +1158 -0
- package/package.json +27 -7
- package/lib-commonjs/index.d.ts.map +0 -1
- package/lib-commonjs/manifestHelpers.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemaValidator.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideApplicationManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideAssemblyManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideComponentManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideLibraryManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideManifestBase.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideMultiVersionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IClientSideWebPartManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/ICommandSetExtensionManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts +0 -76
- package/lib-commonjs/manifestSchemas/IPrefabAppManifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/ManifestType.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/application_3.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/assembly_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/commandSet_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_3.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/extension_4.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/library_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/multi-version_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/prefab_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/prefab_2.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_1.manifest.d.ts.map +0 -1
- package/lib-commonjs/manifestSchemas/examples/webpart_2.manifest.d.ts.map +0 -1
- /package/{lib-commonjs → lib-dts}/index.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestHelpers.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IAdaptiveCardExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideApplicationManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideAssemblyManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentLoaderConfiguration.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideComponentManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideLibraryManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideManifestBase.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/IClientSideMultiVersionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/ICommandSetExtensionManifest.d.ts +0 -0
- /package/{lib-commonjs → lib-dts}/manifestSchemas/ManifestType.d.ts +0 -0
|
@@ -0,0 +1,673 @@
|
|
|
1
|
+
const multiVersionManifest = {
|
|
2
|
+
manifestVersion: 2,
|
|
3
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
4
|
+
versions: {
|
|
5
|
+
'1.0.0': {
|
|
6
|
+
manifestVersion: 2,
|
|
7
|
+
componentType: 'Library',
|
|
8
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
9
|
+
alias: 'myLibrary',
|
|
10
|
+
version: '0.0.1',
|
|
11
|
+
loaderConfig: {
|
|
12
|
+
internalModuleBaseUrls: [
|
|
13
|
+
'https://cdn.net/'
|
|
14
|
+
],
|
|
15
|
+
entryModuleId: 'main.bundle',
|
|
16
|
+
exportName: 'foobar',
|
|
17
|
+
scriptResources: {
|
|
18
|
+
frameworkA: {
|
|
19
|
+
type: 'component',
|
|
20
|
+
version: '1.2.3',
|
|
21
|
+
id: '00000000-0000-0000-0000-000000000000'
|
|
22
|
+
},
|
|
23
|
+
frameworkB: {
|
|
24
|
+
type: 'component',
|
|
25
|
+
version: '1.2.3',
|
|
26
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
27
|
+
failoverPath: 'script.js'
|
|
28
|
+
},
|
|
29
|
+
frameworkC: {
|
|
30
|
+
type: 'component',
|
|
31
|
+
version: 'latest',
|
|
32
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
33
|
+
failoverPath: {
|
|
34
|
+
path: 'script.js'
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
frameworkD: {
|
|
38
|
+
type: 'component',
|
|
39
|
+
version: 'latest',
|
|
40
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
41
|
+
failoverPath: {
|
|
42
|
+
path: 'script.js',
|
|
43
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
frameworkE: {
|
|
47
|
+
type: 'component',
|
|
48
|
+
version: '1.2.3',
|
|
49
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
50
|
+
shouldNotPreload: true
|
|
51
|
+
},
|
|
52
|
+
frameworkF: {
|
|
53
|
+
type: 'component',
|
|
54
|
+
version: '1.2.3',
|
|
55
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
56
|
+
failoverPath: 'script.js',
|
|
57
|
+
shouldNotPreload: true
|
|
58
|
+
},
|
|
59
|
+
frameworkG: {
|
|
60
|
+
type: 'component',
|
|
61
|
+
version: 'latest',
|
|
62
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
63
|
+
failoverPath: {
|
|
64
|
+
path: 'script.js'
|
|
65
|
+
},
|
|
66
|
+
shouldNotPreload: true
|
|
67
|
+
},
|
|
68
|
+
frameworkI: {
|
|
69
|
+
type: 'component',
|
|
70
|
+
version: 'latest',
|
|
71
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
72
|
+
failoverPath: {
|
|
73
|
+
path: 'script.js',
|
|
74
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
75
|
+
},
|
|
76
|
+
shouldNotPreload: true
|
|
77
|
+
},
|
|
78
|
+
frameworkJ: {
|
|
79
|
+
type: 'component',
|
|
80
|
+
version: '1.2.3',
|
|
81
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
82
|
+
shouldNotPreload: false
|
|
83
|
+
},
|
|
84
|
+
frameworkK: {
|
|
85
|
+
type: 'component',
|
|
86
|
+
version: '1.2.3',
|
|
87
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
88
|
+
failoverPath: 'script.js',
|
|
89
|
+
shouldNotPreload: false
|
|
90
|
+
},
|
|
91
|
+
frameworkL: {
|
|
92
|
+
type: 'component',
|
|
93
|
+
version: 'latest',
|
|
94
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
95
|
+
failoverPath: {
|
|
96
|
+
path: 'script.js'
|
|
97
|
+
},
|
|
98
|
+
shouldNotPreload: false
|
|
99
|
+
},
|
|
100
|
+
frameworkM: {
|
|
101
|
+
type: 'component',
|
|
102
|
+
version: 'latest',
|
|
103
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
104
|
+
failoverPath: {
|
|
105
|
+
path: 'script.js',
|
|
106
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
107
|
+
},
|
|
108
|
+
shouldNotPreload: false
|
|
109
|
+
},
|
|
110
|
+
'main.bundle': {
|
|
111
|
+
type: 'path',
|
|
112
|
+
path: 'bundle.script.js'
|
|
113
|
+
},
|
|
114
|
+
dependencyA: {
|
|
115
|
+
type: 'path',
|
|
116
|
+
path: {
|
|
117
|
+
path: 'dependencyA.script.js',
|
|
118
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
dependencyB: {
|
|
122
|
+
type: 'path',
|
|
123
|
+
path: {
|
|
124
|
+
path: 'dependencyB.script.js'
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
dependencyC: {
|
|
128
|
+
type: 'path',
|
|
129
|
+
path: 'dependencyC.script.js'
|
|
130
|
+
},
|
|
131
|
+
dependencyD: {
|
|
132
|
+
type: 'path',
|
|
133
|
+
path: {
|
|
134
|
+
path: 'dependencyD.script.js',
|
|
135
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
136
|
+
},
|
|
137
|
+
shouldNotPreload: true
|
|
138
|
+
},
|
|
139
|
+
dependencyE: {
|
|
140
|
+
type: 'path',
|
|
141
|
+
path: {
|
|
142
|
+
path: 'dependencyE.script.js'
|
|
143
|
+
},
|
|
144
|
+
shouldNotPreload: true
|
|
145
|
+
},
|
|
146
|
+
dependencyF: {
|
|
147
|
+
type: 'path',
|
|
148
|
+
path: 'dependencyF.script.js',
|
|
149
|
+
shouldNotPreload: true
|
|
150
|
+
},
|
|
151
|
+
dependencyG: {
|
|
152
|
+
type: 'path',
|
|
153
|
+
path: {
|
|
154
|
+
path: 'dependencyG.script.js',
|
|
155
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
156
|
+
},
|
|
157
|
+
shouldNotPreload: false
|
|
158
|
+
},
|
|
159
|
+
dependencyH: {
|
|
160
|
+
type: 'path',
|
|
161
|
+
path: {
|
|
162
|
+
path: 'dependencyH.script.js'
|
|
163
|
+
},
|
|
164
|
+
shouldNotPreload: false
|
|
165
|
+
},
|
|
166
|
+
dependencyI: {
|
|
167
|
+
type: 'path',
|
|
168
|
+
path: 'dependencyI.script.js',
|
|
169
|
+
shouldNotPreload: false
|
|
170
|
+
},
|
|
171
|
+
stringsA: {
|
|
172
|
+
type: 'localizedPath',
|
|
173
|
+
defaultPath: 'stringsA_default.js'
|
|
174
|
+
},
|
|
175
|
+
stringsB: {
|
|
176
|
+
type: 'localizedPath',
|
|
177
|
+
defaultPath: {
|
|
178
|
+
path: 'stringsB_default.js',
|
|
179
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
stringsC: {
|
|
183
|
+
type: 'localizedPath',
|
|
184
|
+
defaultPath: {
|
|
185
|
+
path: 'stringsC_default.js'
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
stringsD: {
|
|
189
|
+
type: 'localizedPath',
|
|
190
|
+
defaultPath: 'stringsD_default.js',
|
|
191
|
+
paths: {
|
|
192
|
+
'en-us': 'stringsD_en-us.js',
|
|
193
|
+
'fr-fr': 'stringsD_fr-fr.js'
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
stringsE: {
|
|
197
|
+
type: 'localizedPath',
|
|
198
|
+
defaultPath: 'stringsE_default.js',
|
|
199
|
+
paths: {
|
|
200
|
+
'en-us': {
|
|
201
|
+
path: 'stringsE_en-us.js'
|
|
202
|
+
},
|
|
203
|
+
'fr-fr': 'stringsE_fr-fr.js'
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
stringsF: {
|
|
207
|
+
type: 'localizedPath',
|
|
208
|
+
defaultPath: 'stringsF_default.js',
|
|
209
|
+
paths: {
|
|
210
|
+
'en-us': {
|
|
211
|
+
path: 'stringsF_en-us.js',
|
|
212
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
213
|
+
},
|
|
214
|
+
'fr-fr': 'stringsF_fr-fr.js'
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
stringsG: {
|
|
218
|
+
type: 'localizedPath',
|
|
219
|
+
defaultPath: 'stringsG_default.js',
|
|
220
|
+
shouldNotPreload: true
|
|
221
|
+
},
|
|
222
|
+
stringsH: {
|
|
223
|
+
type: 'localizedPath',
|
|
224
|
+
defaultPath: {
|
|
225
|
+
path: 'stringsH_default.js',
|
|
226
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
227
|
+
},
|
|
228
|
+
shouldNotPreload: true
|
|
229
|
+
},
|
|
230
|
+
stringsI: {
|
|
231
|
+
type: 'localizedPath',
|
|
232
|
+
defaultPath: {
|
|
233
|
+
path: 'stringsI_default.js'
|
|
234
|
+
},
|
|
235
|
+
shouldNotPreload: true
|
|
236
|
+
},
|
|
237
|
+
stringsJ: {
|
|
238
|
+
type: 'localizedPath',
|
|
239
|
+
defaultPath: 'stringsJ_default.js',
|
|
240
|
+
paths: {
|
|
241
|
+
'en-us': 'stringsJ_en-us.js',
|
|
242
|
+
'fr-fr': 'stringsJ_fr-fr.js'
|
|
243
|
+
},
|
|
244
|
+
shouldNotPreload: true
|
|
245
|
+
},
|
|
246
|
+
stringsK: {
|
|
247
|
+
type: 'localizedPath',
|
|
248
|
+
defaultPath: 'stringsK_default.js',
|
|
249
|
+
paths: {
|
|
250
|
+
'en-us': {
|
|
251
|
+
path: 'stringsK_en-us.js'
|
|
252
|
+
},
|
|
253
|
+
'fr-fr': 'stringsK_fr-fr.js'
|
|
254
|
+
},
|
|
255
|
+
shouldNotPreload: true
|
|
256
|
+
},
|
|
257
|
+
stringsL: {
|
|
258
|
+
type: 'localizedPath',
|
|
259
|
+
defaultPath: 'stringsL_default.js',
|
|
260
|
+
paths: {
|
|
261
|
+
'en-us': {
|
|
262
|
+
path: 'stringsL_en-us.js',
|
|
263
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
264
|
+
},
|
|
265
|
+
'fr-fr': 'stringsL_fr-fr.js'
|
|
266
|
+
},
|
|
267
|
+
shouldNotPreload: true
|
|
268
|
+
},
|
|
269
|
+
stringsM: {
|
|
270
|
+
type: 'localizedPath',
|
|
271
|
+
defaultPath: 'stringsM_default.js',
|
|
272
|
+
shouldNotPreload: false
|
|
273
|
+
},
|
|
274
|
+
stringsN: {
|
|
275
|
+
type: 'localizedPath',
|
|
276
|
+
defaultPath: {
|
|
277
|
+
path: 'stringsN_default.js',
|
|
278
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
279
|
+
},
|
|
280
|
+
shouldNotPreload: false
|
|
281
|
+
},
|
|
282
|
+
stringsO: {
|
|
283
|
+
type: 'localizedPath',
|
|
284
|
+
defaultPath: {
|
|
285
|
+
path: 'stringsO_default.js'
|
|
286
|
+
},
|
|
287
|
+
shouldNotPreload: false
|
|
288
|
+
},
|
|
289
|
+
stringsP: {
|
|
290
|
+
type: 'localizedPath',
|
|
291
|
+
defaultPath: 'stringsP_default.js',
|
|
292
|
+
paths: {
|
|
293
|
+
'en-us': 'stringsP_en-us.js',
|
|
294
|
+
'fr-fr': 'stringsP_fr-fr.js'
|
|
295
|
+
},
|
|
296
|
+
shouldNotPreload: false
|
|
297
|
+
},
|
|
298
|
+
stringsQ: {
|
|
299
|
+
type: 'localizedPath',
|
|
300
|
+
defaultPath: 'stringsQ_default.js',
|
|
301
|
+
paths: {
|
|
302
|
+
'en-us': {
|
|
303
|
+
path: 'stringsQ_en-us.js'
|
|
304
|
+
},
|
|
305
|
+
'fr-fr': 'stringsQ_fr-fr.js'
|
|
306
|
+
},
|
|
307
|
+
shouldNotPreload: false
|
|
308
|
+
},
|
|
309
|
+
stringsR: {
|
|
310
|
+
type: 'localizedPath',
|
|
311
|
+
defaultPath: 'stringsR_default.js',
|
|
312
|
+
paths: {
|
|
313
|
+
'en-us': {
|
|
314
|
+
path: 'stringsR_en-us.js',
|
|
315
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
316
|
+
},
|
|
317
|
+
'fr-fr': 'stringsR_fr-fr.js'
|
|
318
|
+
},
|
|
319
|
+
shouldNotPreload: false
|
|
320
|
+
},
|
|
321
|
+
nonAmdA: {
|
|
322
|
+
type: 'path',
|
|
323
|
+
path: 'nonAmdA.js',
|
|
324
|
+
globalName: 'nonAmdA'
|
|
325
|
+
},
|
|
326
|
+
nonAmdB: {
|
|
327
|
+
type: 'path',
|
|
328
|
+
path: 'nonAmdB.js',
|
|
329
|
+
globalName: 'nonAmdB',
|
|
330
|
+
globalDependencies: [
|
|
331
|
+
'nonAmdB'
|
|
332
|
+
]
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
'2.0.0': {
|
|
338
|
+
manifestVersion: 2,
|
|
339
|
+
componentType: 'Library',
|
|
340
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
341
|
+
alias: 'myLibrary',
|
|
342
|
+
version: '0.0.1',
|
|
343
|
+
loaderConfig: {
|
|
344
|
+
internalModuleBaseUrls: [
|
|
345
|
+
'https://cdn.net/'
|
|
346
|
+
],
|
|
347
|
+
entryModuleId: 'main.bundle',
|
|
348
|
+
exportName: 'foobar',
|
|
349
|
+
scriptResources: {
|
|
350
|
+
frameworkA: {
|
|
351
|
+
type: 'component',
|
|
352
|
+
version: '1.2.3',
|
|
353
|
+
id: '00000000-0000-0000-0000-000000000000'
|
|
354
|
+
},
|
|
355
|
+
frameworkB: {
|
|
356
|
+
type: 'component',
|
|
357
|
+
version: '1.2.3',
|
|
358
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
359
|
+
failoverPath: 'script.js'
|
|
360
|
+
},
|
|
361
|
+
frameworkC: {
|
|
362
|
+
type: 'component',
|
|
363
|
+
version: 'latest',
|
|
364
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
365
|
+
failoverPath: {
|
|
366
|
+
path: 'script.js'
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
frameworkD: {
|
|
370
|
+
type: 'component',
|
|
371
|
+
version: 'latest',
|
|
372
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
373
|
+
failoverPath: {
|
|
374
|
+
path: 'script.js',
|
|
375
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
frameworkE: {
|
|
379
|
+
type: 'component',
|
|
380
|
+
version: '1.2.3',
|
|
381
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
382
|
+
shouldNotPreload: true
|
|
383
|
+
},
|
|
384
|
+
frameworkF: {
|
|
385
|
+
type: 'component',
|
|
386
|
+
version: '1.2.3',
|
|
387
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
388
|
+
failoverPath: 'script.js',
|
|
389
|
+
shouldNotPreload: true
|
|
390
|
+
},
|
|
391
|
+
frameworkG: {
|
|
392
|
+
type: 'component',
|
|
393
|
+
version: 'latest',
|
|
394
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
395
|
+
failoverPath: {
|
|
396
|
+
path: 'script.js'
|
|
397
|
+
},
|
|
398
|
+
shouldNotPreload: true
|
|
399
|
+
},
|
|
400
|
+
frameworkI: {
|
|
401
|
+
type: 'component',
|
|
402
|
+
version: 'latest',
|
|
403
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
404
|
+
failoverPath: {
|
|
405
|
+
path: 'script.js',
|
|
406
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
407
|
+
},
|
|
408
|
+
shouldNotPreload: true
|
|
409
|
+
},
|
|
410
|
+
frameworkJ: {
|
|
411
|
+
type: 'component',
|
|
412
|
+
version: '1.2.3',
|
|
413
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
414
|
+
shouldNotPreload: false
|
|
415
|
+
},
|
|
416
|
+
frameworkK: {
|
|
417
|
+
type: 'component',
|
|
418
|
+
version: '1.2.3',
|
|
419
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
420
|
+
failoverPath: 'script.js',
|
|
421
|
+
shouldNotPreload: false
|
|
422
|
+
},
|
|
423
|
+
frameworkL: {
|
|
424
|
+
type: 'component',
|
|
425
|
+
version: 'latest',
|
|
426
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
427
|
+
failoverPath: {
|
|
428
|
+
path: 'script.js'
|
|
429
|
+
},
|
|
430
|
+
shouldNotPreload: false
|
|
431
|
+
},
|
|
432
|
+
frameworkM: {
|
|
433
|
+
type: 'component',
|
|
434
|
+
version: 'latest',
|
|
435
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
436
|
+
failoverPath: {
|
|
437
|
+
path: 'script.js',
|
|
438
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
439
|
+
},
|
|
440
|
+
shouldNotPreload: false
|
|
441
|
+
},
|
|
442
|
+
'main.bundle': {
|
|
443
|
+
type: 'path',
|
|
444
|
+
path: 'bundle.script.js'
|
|
445
|
+
},
|
|
446
|
+
dependencyA: {
|
|
447
|
+
type: 'path',
|
|
448
|
+
path: {
|
|
449
|
+
path: 'dependencyA.script.js',
|
|
450
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
dependencyB: {
|
|
454
|
+
type: 'path',
|
|
455
|
+
path: {
|
|
456
|
+
path: 'dependencyB.script.js'
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
dependencyC: {
|
|
460
|
+
type: 'path',
|
|
461
|
+
path: 'dependencyC.script.js'
|
|
462
|
+
},
|
|
463
|
+
dependencyD: {
|
|
464
|
+
type: 'path',
|
|
465
|
+
path: {
|
|
466
|
+
path: 'dependencyD.script.js',
|
|
467
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
468
|
+
},
|
|
469
|
+
shouldNotPreload: true
|
|
470
|
+
},
|
|
471
|
+
dependencyE: {
|
|
472
|
+
type: 'path',
|
|
473
|
+
path: {
|
|
474
|
+
path: 'dependencyE.script.js'
|
|
475
|
+
},
|
|
476
|
+
shouldNotPreload: true
|
|
477
|
+
},
|
|
478
|
+
dependencyF: {
|
|
479
|
+
type: 'path',
|
|
480
|
+
path: 'dependencyF.script.js',
|
|
481
|
+
shouldNotPreload: true
|
|
482
|
+
},
|
|
483
|
+
dependencyG: {
|
|
484
|
+
type: 'path',
|
|
485
|
+
path: {
|
|
486
|
+
path: 'dependencyG.script.js',
|
|
487
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
488
|
+
},
|
|
489
|
+
shouldNotPreload: false
|
|
490
|
+
},
|
|
491
|
+
dependencyH: {
|
|
492
|
+
type: 'path',
|
|
493
|
+
path: {
|
|
494
|
+
path: 'dependencyH.script.js'
|
|
495
|
+
},
|
|
496
|
+
shouldNotPreload: false
|
|
497
|
+
},
|
|
498
|
+
dependencyI: {
|
|
499
|
+
type: 'path',
|
|
500
|
+
path: 'dependencyI.script.js',
|
|
501
|
+
shouldNotPreload: false
|
|
502
|
+
},
|
|
503
|
+
stringsA: {
|
|
504
|
+
type: 'localizedPath',
|
|
505
|
+
defaultPath: 'stringsA_default.js'
|
|
506
|
+
},
|
|
507
|
+
stringsB: {
|
|
508
|
+
type: 'localizedPath',
|
|
509
|
+
defaultPath: {
|
|
510
|
+
path: 'stringsB_default.js',
|
|
511
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
stringsC: {
|
|
515
|
+
type: 'localizedPath',
|
|
516
|
+
defaultPath: {
|
|
517
|
+
path: 'stringsC_default.js'
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
stringsD: {
|
|
521
|
+
type: 'localizedPath',
|
|
522
|
+
defaultPath: 'stringsD_default.js',
|
|
523
|
+
paths: {
|
|
524
|
+
'en-us': 'stringsD_en-us.js',
|
|
525
|
+
'fr-fr': 'stringsD_fr-fr.js'
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
stringsE: {
|
|
529
|
+
type: 'localizedPath',
|
|
530
|
+
defaultPath: 'stringsE_default.js',
|
|
531
|
+
paths: {
|
|
532
|
+
'en-us': {
|
|
533
|
+
path: 'stringsE_en-us.js'
|
|
534
|
+
},
|
|
535
|
+
'fr-fr': 'stringsE_fr-fr.js'
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
stringsF: {
|
|
539
|
+
type: 'localizedPath',
|
|
540
|
+
defaultPath: 'stringsF_default.js',
|
|
541
|
+
paths: {
|
|
542
|
+
'en-us': {
|
|
543
|
+
path: 'stringsF_en-us.js',
|
|
544
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
545
|
+
},
|
|
546
|
+
'fr-fr': 'stringsF_fr-fr.js'
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
stringsG: {
|
|
550
|
+
type: 'localizedPath',
|
|
551
|
+
defaultPath: 'stringsG_default.js',
|
|
552
|
+
shouldNotPreload: true
|
|
553
|
+
},
|
|
554
|
+
stringsH: {
|
|
555
|
+
type: 'localizedPath',
|
|
556
|
+
defaultPath: {
|
|
557
|
+
path: 'stringsH_default.js',
|
|
558
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
559
|
+
},
|
|
560
|
+
shouldNotPreload: true
|
|
561
|
+
},
|
|
562
|
+
stringsI: {
|
|
563
|
+
type: 'localizedPath',
|
|
564
|
+
defaultPath: {
|
|
565
|
+
path: 'stringsI_default.js'
|
|
566
|
+
},
|
|
567
|
+
shouldNotPreload: true
|
|
568
|
+
},
|
|
569
|
+
stringsJ: {
|
|
570
|
+
type: 'localizedPath',
|
|
571
|
+
defaultPath: 'stringsJ_default.js',
|
|
572
|
+
paths: {
|
|
573
|
+
'en-us': 'stringsJ_en-us.js',
|
|
574
|
+
'fr-fr': 'stringsJ_fr-fr.js'
|
|
575
|
+
},
|
|
576
|
+
shouldNotPreload: true
|
|
577
|
+
},
|
|
578
|
+
stringsK: {
|
|
579
|
+
type: 'localizedPath',
|
|
580
|
+
defaultPath: 'stringsK_default.js',
|
|
581
|
+
paths: {
|
|
582
|
+
'en-us': {
|
|
583
|
+
path: 'stringsK_en-us.js'
|
|
584
|
+
},
|
|
585
|
+
'fr-fr': 'stringsK_fr-fr.js'
|
|
586
|
+
},
|
|
587
|
+
shouldNotPreload: true
|
|
588
|
+
},
|
|
589
|
+
stringsL: {
|
|
590
|
+
type: 'localizedPath',
|
|
591
|
+
defaultPath: 'stringsL_default.js',
|
|
592
|
+
paths: {
|
|
593
|
+
'en-us': {
|
|
594
|
+
path: 'stringsL_en-us.js',
|
|
595
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
596
|
+
},
|
|
597
|
+
'fr-fr': 'stringsL_fr-fr.js'
|
|
598
|
+
},
|
|
599
|
+
shouldNotPreload: true
|
|
600
|
+
},
|
|
601
|
+
stringsM: {
|
|
602
|
+
type: 'localizedPath',
|
|
603
|
+
defaultPath: 'stringsM_default.js',
|
|
604
|
+
shouldNotPreload: false
|
|
605
|
+
},
|
|
606
|
+
stringsN: {
|
|
607
|
+
type: 'localizedPath',
|
|
608
|
+
defaultPath: {
|
|
609
|
+
path: 'stringsN_default.js',
|
|
610
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
611
|
+
},
|
|
612
|
+
shouldNotPreload: false
|
|
613
|
+
},
|
|
614
|
+
stringsO: {
|
|
615
|
+
type: 'localizedPath',
|
|
616
|
+
defaultPath: {
|
|
617
|
+
path: 'stringsO_default.js'
|
|
618
|
+
},
|
|
619
|
+
shouldNotPreload: false
|
|
620
|
+
},
|
|
621
|
+
stringsP: {
|
|
622
|
+
type: 'localizedPath',
|
|
623
|
+
defaultPath: 'stringsP_default.js',
|
|
624
|
+
paths: {
|
|
625
|
+
'en-us': 'stringsP_en-us.js',
|
|
626
|
+
'fr-fr': 'stringsP_fr-fr.js'
|
|
627
|
+
},
|
|
628
|
+
shouldNotPreload: false
|
|
629
|
+
},
|
|
630
|
+
stringsQ: {
|
|
631
|
+
type: 'localizedPath',
|
|
632
|
+
defaultPath: 'stringsQ_default.js',
|
|
633
|
+
paths: {
|
|
634
|
+
'en-us': {
|
|
635
|
+
path: 'stringsQ_en-us.js'
|
|
636
|
+
},
|
|
637
|
+
'fr-fr': 'stringsQ_fr-fr.js'
|
|
638
|
+
},
|
|
639
|
+
shouldNotPreload: false
|
|
640
|
+
},
|
|
641
|
+
stringsR: {
|
|
642
|
+
type: 'localizedPath',
|
|
643
|
+
defaultPath: 'stringsR_default.js',
|
|
644
|
+
paths: {
|
|
645
|
+
'en-us': {
|
|
646
|
+
path: 'stringsR_en-us.js',
|
|
647
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC.js'
|
|
648
|
+
},
|
|
649
|
+
'fr-fr': 'stringsR_fr-fr.js'
|
|
650
|
+
},
|
|
651
|
+
shouldNotPreload: false
|
|
652
|
+
},
|
|
653
|
+
nonAmdA: {
|
|
654
|
+
type: 'path',
|
|
655
|
+
path: 'nonAmdA.js',
|
|
656
|
+
globalName: 'nonAmdA'
|
|
657
|
+
},
|
|
658
|
+
nonAmdB: {
|
|
659
|
+
type: 'path',
|
|
660
|
+
path: 'nonAmdB.js',
|
|
661
|
+
globalName: 'nonAmdB',
|
|
662
|
+
globalDependencies: [
|
|
663
|
+
'nonAmdB'
|
|
664
|
+
]
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
};
|
|
671
|
+
export default multiVersionManifest;
|
|
672
|
+
|
|
673
|
+
//#sourceMappingUrl=./multi-version_1.manifest.js.map
|