@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,336 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./../jsonSchemas/client-side-multi-version-manifest.schema.json",
|
|
3
|
+
|
|
4
|
+
"manifestVersion": 2,
|
|
5
|
+
"id": "00000000-0000-0000-0000-000000000000",
|
|
6
|
+
"versions": {
|
|
7
|
+
"1.0.0": {
|
|
8
|
+
"manifestVersion": 2,
|
|
9
|
+
"componentType": "Library",
|
|
10
|
+
"id": "00000000-0000-0000-0000-000000000000",
|
|
11
|
+
"alias": "Library",
|
|
12
|
+
"version": "0.0.1",
|
|
13
|
+
"loaderConfig": {
|
|
14
|
+
"internalModuleBaseUrls": ["https://cdn.net/"],
|
|
15
|
+
"entryModuleId": "main.bundle",
|
|
16
|
+
"exportName": "helloworld",
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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"
|
|
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": ["nonAmdB"]
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
@@ -0,0 +1,344 @@
|
|
|
1
|
+
const prefabManifest = {
|
|
2
|
+
manifestVersion: 2,
|
|
3
|
+
componentType: 'Prefab',
|
|
4
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
5
|
+
alias: 'myPrefabApp',
|
|
6
|
+
version: '0.0.1',
|
|
7
|
+
loaderConfig: {
|
|
8
|
+
internalModuleBaseUrls: [
|
|
9
|
+
'https://cdn.net/'
|
|
10
|
+
],
|
|
11
|
+
entryModuleId: 'main.bundle',
|
|
12
|
+
scriptResources: {
|
|
13
|
+
frameworkA: {
|
|
14
|
+
type: 'component',
|
|
15
|
+
version: '1.2.3',
|
|
16
|
+
id: '00000000-0000-0000-0000-000000000000'
|
|
17
|
+
},
|
|
18
|
+
frameworkB: {
|
|
19
|
+
type: 'component',
|
|
20
|
+
version: '1.2.3',
|
|
21
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
22
|
+
failoverPath: 'script.js'
|
|
23
|
+
},
|
|
24
|
+
frameworkC: {
|
|
25
|
+
type: 'component',
|
|
26
|
+
version: 'latest',
|
|
27
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
28
|
+
failoverPath: {
|
|
29
|
+
path: 'script.js'
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
frameworkD: {
|
|
33
|
+
type: 'component',
|
|
34
|
+
version: 'latest',
|
|
35
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
36
|
+
failoverPath: {
|
|
37
|
+
path: 'script.js',
|
|
38
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
frameworkE: {
|
|
42
|
+
type: 'component',
|
|
43
|
+
version: '1.2.3',
|
|
44
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
45
|
+
shouldNotPreload: true
|
|
46
|
+
},
|
|
47
|
+
frameworkF: {
|
|
48
|
+
type: 'component',
|
|
49
|
+
version: '1.2.3',
|
|
50
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
51
|
+
failoverPath: 'script.js',
|
|
52
|
+
shouldNotPreload: true
|
|
53
|
+
},
|
|
54
|
+
frameworkG: {
|
|
55
|
+
type: 'component',
|
|
56
|
+
version: 'latest',
|
|
57
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
58
|
+
failoverPath: {
|
|
59
|
+
path: 'script.js'
|
|
60
|
+
},
|
|
61
|
+
shouldNotPreload: true
|
|
62
|
+
},
|
|
63
|
+
frameworkI: {
|
|
64
|
+
type: 'component',
|
|
65
|
+
version: 'latest',
|
|
66
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
67
|
+
failoverPath: {
|
|
68
|
+
path: 'script.js',
|
|
69
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
70
|
+
},
|
|
71
|
+
shouldNotPreload: true
|
|
72
|
+
},
|
|
73
|
+
frameworkJ: {
|
|
74
|
+
type: 'component',
|
|
75
|
+
version: '1.2.3',
|
|
76
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
77
|
+
shouldNotPreload: false
|
|
78
|
+
},
|
|
79
|
+
frameworkK: {
|
|
80
|
+
type: 'component',
|
|
81
|
+
version: '1.2.3',
|
|
82
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
83
|
+
failoverPath: 'script.js',
|
|
84
|
+
shouldNotPreload: false
|
|
85
|
+
},
|
|
86
|
+
frameworkL: {
|
|
87
|
+
type: 'component',
|
|
88
|
+
version: 'latest',
|
|
89
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
90
|
+
failoverPath: {
|
|
91
|
+
path: 'script.js'
|
|
92
|
+
},
|
|
93
|
+
shouldNotPreload: false
|
|
94
|
+
},
|
|
95
|
+
frameworkM: {
|
|
96
|
+
type: 'component',
|
|
97
|
+
version: 'latest',
|
|
98
|
+
id: '00000000-0000-0000-0000-000000000000',
|
|
99
|
+
failoverPath: {
|
|
100
|
+
path: 'script.js',
|
|
101
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
102
|
+
},
|
|
103
|
+
shouldNotPreload: false
|
|
104
|
+
},
|
|
105
|
+
'main.bundle': {
|
|
106
|
+
type: 'path',
|
|
107
|
+
path: 'bundle.script.js'
|
|
108
|
+
},
|
|
109
|
+
dependencyA: {
|
|
110
|
+
type: 'path',
|
|
111
|
+
path: {
|
|
112
|
+
path: 'dependencyA.script.js',
|
|
113
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
dependencyB: {
|
|
117
|
+
type: 'path',
|
|
118
|
+
path: {
|
|
119
|
+
path: 'dependencyB.script.js'
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
dependencyC: {
|
|
123
|
+
type: 'path',
|
|
124
|
+
path: 'dependencyC.script.js'
|
|
125
|
+
},
|
|
126
|
+
dependencyD: {
|
|
127
|
+
type: 'path',
|
|
128
|
+
path: {
|
|
129
|
+
path: 'dependencyD.script.js',
|
|
130
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
131
|
+
},
|
|
132
|
+
shouldNotPreload: true
|
|
133
|
+
},
|
|
134
|
+
dependencyE: {
|
|
135
|
+
type: 'path',
|
|
136
|
+
path: {
|
|
137
|
+
path: 'dependencyE.script.js'
|
|
138
|
+
},
|
|
139
|
+
shouldNotPreload: true
|
|
140
|
+
},
|
|
141
|
+
dependencyF: {
|
|
142
|
+
type: 'path',
|
|
143
|
+
path: 'dependencyF.script.js',
|
|
144
|
+
shouldNotPreload: true
|
|
145
|
+
},
|
|
146
|
+
dependencyG: {
|
|
147
|
+
type: 'path',
|
|
148
|
+
path: {
|
|
149
|
+
path: 'dependencyG.script.js',
|
|
150
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
151
|
+
},
|
|
152
|
+
shouldNotPreload: false
|
|
153
|
+
},
|
|
154
|
+
dependencyH: {
|
|
155
|
+
type: 'path',
|
|
156
|
+
path: {
|
|
157
|
+
path: 'dependencyH.script.js'
|
|
158
|
+
},
|
|
159
|
+
shouldNotPreload: false
|
|
160
|
+
},
|
|
161
|
+
dependencyI: {
|
|
162
|
+
type: 'path',
|
|
163
|
+
path: 'dependencyI.script.js',
|
|
164
|
+
shouldNotPreload: false
|
|
165
|
+
},
|
|
166
|
+
stringsA: {
|
|
167
|
+
type: 'localizedPath',
|
|
168
|
+
defaultPath: 'stringsA_default.js'
|
|
169
|
+
},
|
|
170
|
+
stringsB: {
|
|
171
|
+
type: 'localizedPath',
|
|
172
|
+
defaultPath: {
|
|
173
|
+
path: 'stringsB_default.js',
|
|
174
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
stringsC: {
|
|
178
|
+
type: 'localizedPath',
|
|
179
|
+
defaultPath: {
|
|
180
|
+
path: 'stringsC_default.js'
|
|
181
|
+
}
|
|
182
|
+
},
|
|
183
|
+
stringsD: {
|
|
184
|
+
type: 'localizedPath',
|
|
185
|
+
defaultPath: 'stringsD_default.js',
|
|
186
|
+
paths: {
|
|
187
|
+
'en-us': 'stringsD_en-us.js',
|
|
188
|
+
'fr-fr': 'stringsD_fr-fr.js'
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
stringsE: {
|
|
192
|
+
type: 'localizedPath',
|
|
193
|
+
defaultPath: 'stringsE_default.js',
|
|
194
|
+
paths: {
|
|
195
|
+
'en-us': {
|
|
196
|
+
path: 'stringsE_en-us.js'
|
|
197
|
+
},
|
|
198
|
+
'fr-fr': 'stringsE_fr-fr.js'
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
stringsF: {
|
|
202
|
+
type: 'localizedPath',
|
|
203
|
+
defaultPath: 'stringsF_default.js',
|
|
204
|
+
paths: {
|
|
205
|
+
'en-us': {
|
|
206
|
+
path: 'stringsF_en-us.js',
|
|
207
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
208
|
+
},
|
|
209
|
+
'fr-fr': 'stringsF_fr-fr.js'
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
stringsG: {
|
|
213
|
+
type: 'localizedPath',
|
|
214
|
+
defaultPath: 'stringsG_default.js',
|
|
215
|
+
shouldNotPreload: true
|
|
216
|
+
},
|
|
217
|
+
stringsH: {
|
|
218
|
+
type: 'localizedPath',
|
|
219
|
+
defaultPath: {
|
|
220
|
+
path: 'stringsH_default.js',
|
|
221
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
222
|
+
},
|
|
223
|
+
shouldNotPreload: true
|
|
224
|
+
},
|
|
225
|
+
stringsI: {
|
|
226
|
+
type: 'localizedPath',
|
|
227
|
+
defaultPath: {
|
|
228
|
+
path: 'stringsI_default.js'
|
|
229
|
+
},
|
|
230
|
+
shouldNotPreload: true
|
|
231
|
+
},
|
|
232
|
+
stringsJ: {
|
|
233
|
+
type: 'localizedPath',
|
|
234
|
+
defaultPath: 'stringsJ_default.js',
|
|
235
|
+
paths: {
|
|
236
|
+
'en-us': 'stringsJ_en-us.js',
|
|
237
|
+
'fr-fr': 'stringsJ_fr-fr.js'
|
|
238
|
+
},
|
|
239
|
+
shouldNotPreload: true
|
|
240
|
+
},
|
|
241
|
+
stringsK: {
|
|
242
|
+
type: 'localizedPath',
|
|
243
|
+
defaultPath: 'stringsK_default.js',
|
|
244
|
+
paths: {
|
|
245
|
+
'en-us': {
|
|
246
|
+
path: 'stringsK_en-us.js'
|
|
247
|
+
},
|
|
248
|
+
'fr-fr': 'stringsK_fr-fr.js'
|
|
249
|
+
},
|
|
250
|
+
shouldNotPreload: true
|
|
251
|
+
},
|
|
252
|
+
stringsL: {
|
|
253
|
+
type: 'localizedPath',
|
|
254
|
+
defaultPath: 'stringsL_default.js',
|
|
255
|
+
paths: {
|
|
256
|
+
'en-us': {
|
|
257
|
+
path: 'stringsL_en-us.js',
|
|
258
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
259
|
+
},
|
|
260
|
+
'fr-fr': 'stringsL_fr-fr.js'
|
|
261
|
+
},
|
|
262
|
+
shouldNotPreload: true
|
|
263
|
+
},
|
|
264
|
+
stringsM: {
|
|
265
|
+
type: 'localizedPath',
|
|
266
|
+
defaultPath: 'stringsM_default.js',
|
|
267
|
+
shouldNotPreload: false
|
|
268
|
+
},
|
|
269
|
+
stringsN: {
|
|
270
|
+
type: 'localizedPath',
|
|
271
|
+
defaultPath: {
|
|
272
|
+
path: 'stringsN_default.js',
|
|
273
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
274
|
+
},
|
|
275
|
+
shouldNotPreload: false
|
|
276
|
+
},
|
|
277
|
+
stringsO: {
|
|
278
|
+
type: 'localizedPath',
|
|
279
|
+
defaultPath: {
|
|
280
|
+
path: 'stringsO_default.js'
|
|
281
|
+
},
|
|
282
|
+
shouldNotPreload: false
|
|
283
|
+
},
|
|
284
|
+
stringsP: {
|
|
285
|
+
type: 'localizedPath',
|
|
286
|
+
defaultPath: 'stringsP_default.js',
|
|
287
|
+
paths: {
|
|
288
|
+
'en-us': 'stringsP_en-us.js',
|
|
289
|
+
'fr-fr': 'stringsP_fr-fr.js'
|
|
290
|
+
},
|
|
291
|
+
shouldNotPreload: false
|
|
292
|
+
},
|
|
293
|
+
stringsQ: {
|
|
294
|
+
type: 'localizedPath',
|
|
295
|
+
defaultPath: 'stringsQ_default.js',
|
|
296
|
+
paths: {
|
|
297
|
+
'en-us': {
|
|
298
|
+
path: 'stringsQ_en-us.js'
|
|
299
|
+
},
|
|
300
|
+
'fr-fr': 'stringsQ_fr-fr.js'
|
|
301
|
+
},
|
|
302
|
+
shouldNotPreload: false
|
|
303
|
+
},
|
|
304
|
+
stringsR: {
|
|
305
|
+
type: 'localizedPath',
|
|
306
|
+
defaultPath: 'stringsR_default.js',
|
|
307
|
+
paths: {
|
|
308
|
+
'en-us': {
|
|
309
|
+
path: 'stringsR_en-us.js',
|
|
310
|
+
integrity: 'sha384-oqVuAfXRKap7fdgcCY5uykM6+R9GqQ8K/uxy9rx7HNQlGYl1kPzQho1wx4JwY8wC'
|
|
311
|
+
},
|
|
312
|
+
'fr-fr': 'stringsR_fr-fr.js'
|
|
313
|
+
},
|
|
314
|
+
shouldNotPreload: false
|
|
315
|
+
},
|
|
316
|
+
nonAmdA: {
|
|
317
|
+
type: 'path',
|
|
318
|
+
path: 'nonAmdA.js',
|
|
319
|
+
globalName: 'nonAmdA'
|
|
320
|
+
},
|
|
321
|
+
nonAmdB: {
|
|
322
|
+
type: 'path',
|
|
323
|
+
path: 'nonAmdB.js',
|
|
324
|
+
globalName: 'nonAmdB',
|
|
325
|
+
globalDependencies: [
|
|
326
|
+
'nonAmdB'
|
|
327
|
+
]
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
title: {
|
|
332
|
+
default: 'foobar'
|
|
333
|
+
},
|
|
334
|
+
description: {
|
|
335
|
+
default: 'foobar baz'
|
|
336
|
+
},
|
|
337
|
+
isConfigured: true,
|
|
338
|
+
appInstallationTypes: [
|
|
339
|
+
'NewSite'
|
|
340
|
+
]
|
|
341
|
+
};
|
|
342
|
+
export default prefabManifest;
|
|
343
|
+
|
|
344
|
+
//#sourceMappingUrl=./prefab_1.manifest.js.map
|