@esri/solution-deployer 6.6.1 → 6.6.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.
@@ -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",
3
+ "version": "6.6.2",
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",
28
- "@esri/solution-feature-layer": "^6.6.1",
29
- "@esri/solution-file": "^6.6.1",
30
- "@esri/solution-form": "^6.6.1",
31
- "@esri/solution-group": "^6.6.1",
32
- "@esri/solution-hub-types": "^6.6.1",
33
- "@esri/solution-simple-types": "^6.6.1",
34
- "@esri/solution-storymap": "^6.6.1",
35
- "@esri/solution-velocity": "^6.6.1",
36
- "@esri/solution-web-experience": "^6.6.1",
37
- "@esri/solution-web-tool": "^6.6.1",
38
- "@esri/solution-workflow": "^6.6.1",
27
+ "@esri/solution-common": "^6.6.2",
28
+ "@esri/solution-feature-layer": "^6.6.2",
29
+ "@esri/solution-file": "^6.6.2",
30
+ "@esri/solution-form": "^6.6.2",
31
+ "@esri/solution-group": "^6.6.2",
32
+ "@esri/solution-hub-types": "^6.6.2",
33
+ "@esri/solution-simple-types": "^6.6.2",
34
+ "@esri/solution-storymap": "^6.6.2",
35
+ "@esri/solution-velocity": "^6.6.2",
36
+ "@esri/solution-web-experience": "^6.6.2",
37
+ "@esri/solution-web-tool": "^6.6.2",
38
+ "@esri/solution-workflow": "^6.6.2",
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": "28fd4b74a66d0a6a97f6d9fbc472322e03a8fe7d"
93
+ "gitHead": "e33947389af65e61226182808a06eccdb3adfd83"
94
94
  }