@esri/solution-deployer 6.6.1-next.80 → 6.6.1-next.81
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.
|
@@ -136,7 +136,7 @@ function deploySolutionItems(portalSharingUrl, storageItemId, templates, storage
|
|
|
136
136
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
137
137
|
useExistingItemsDef.then(() => {
|
|
138
138
|
checkCancelled();
|
|
139
|
-
templates = common.setNamesAndTitles(templates);
|
|
139
|
+
templates = common.setNamesAndTitles(templates, templateDictionary);
|
|
140
140
|
buildOrder.forEach((id) => {
|
|
141
141
|
// Get the item's template out of the list of templates
|
|
142
142
|
const template = common.findTemplateInList(templates, id);
|
|
@@ -132,7 +132,7 @@ export function deploySolutionItems(portalSharingUrl, storageItemId, templates,
|
|
|
132
132
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
133
133
|
useExistingItemsDef.then(() => {
|
|
134
134
|
checkCancelled();
|
|
135
|
-
templates = common.setNamesAndTitles(templates);
|
|
135
|
+
templates = common.setNamesAndTitles(templates, templateDictionary);
|
|
136
136
|
buildOrder.forEach((id) => {
|
|
137
137
|
// Get the item's template out of the list of templates
|
|
138
138
|
const template = common.findTemplateInList(templates, id);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esri/solution-deployer",
|
|
3
|
-
"version": "6.6.1-next.
|
|
3
|
+
"version": "6.6.1-next.81",
|
|
4
4
|
"description": "Manages the deployment of a Solution for @esri/solution.js.",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -24,18 +24,18 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@esri/hub-common": "^17.0.2",
|
|
27
|
-
"@esri/solution-common": "^6.6.1-next.
|
|
28
|
-
"@esri/solution-feature-layer": "^6.6.1-next.
|
|
29
|
-
"@esri/solution-file": "^6.6.1-next.
|
|
30
|
-
"@esri/solution-form": "^6.6.1-next.
|
|
31
|
-
"@esri/solution-group": "^6.6.1-next.
|
|
32
|
-
"@esri/solution-hub-types": "^6.6.1-next.
|
|
33
|
-
"@esri/solution-simple-types": "^6.6.1-next.
|
|
34
|
-
"@esri/solution-storymap": "^6.6.1-next.
|
|
35
|
-
"@esri/solution-velocity": "^6.6.1-next.
|
|
36
|
-
"@esri/solution-web-experience": "^6.6.1-next.
|
|
37
|
-
"@esri/solution-web-tool": "^6.6.1-next.
|
|
38
|
-
"@esri/solution-workflow": "^6.6.1-next.
|
|
27
|
+
"@esri/solution-common": "^6.6.1-next.81",
|
|
28
|
+
"@esri/solution-feature-layer": "^6.6.1-next.81",
|
|
29
|
+
"@esri/solution-file": "^6.6.1-next.81",
|
|
30
|
+
"@esri/solution-form": "^6.6.1-next.81",
|
|
31
|
+
"@esri/solution-group": "^6.6.1-next.81",
|
|
32
|
+
"@esri/solution-hub-types": "^6.6.1-next.81",
|
|
33
|
+
"@esri/solution-simple-types": "^6.6.1-next.81",
|
|
34
|
+
"@esri/solution-storymap": "^6.6.1-next.81",
|
|
35
|
+
"@esri/solution-velocity": "^6.6.1-next.81",
|
|
36
|
+
"@esri/solution-web-experience": "^6.6.1-next.81",
|
|
37
|
+
"@esri/solution-web-tool": "^6.6.1-next.81",
|
|
38
|
+
"@esri/solution-workflow": "^6.6.1-next.81",
|
|
39
39
|
"tslib": "1.14.1"
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"esri",
|
|
91
91
|
"ES6"
|
|
92
92
|
],
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "8bce353fe3c3c3286c3d17f2c47ad0608160e78a"
|
|
94
94
|
}
|