@esri/solution-deployer 6.6.1-next.37 → 6.6.1-next.39
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.
|
@@ -177,6 +177,10 @@ async function deploySolutionFromTemplate(templateSolutionId, solutionTemplateBa
|
|
|
177
177
|
if (iTemplateKeyword >= 0) {
|
|
178
178
|
solutionTemplateBase.typeKeywords.splice(iTemplateKeyword, 1);
|
|
179
179
|
}
|
|
180
|
+
const iBuildKeyword = solutionTemplateBase.typeKeywords.indexOf("Build");
|
|
181
|
+
if (iBuildKeyword >= 0) {
|
|
182
|
+
solutionTemplateBase.typeKeywords.splice(iBuildKeyword, 1);
|
|
183
|
+
}
|
|
180
184
|
solutionTemplateData.templates = solutionTemplateData.templates.map((itemTemplate) => _purgeTemplateProperties(itemTemplate));
|
|
181
185
|
_handleWorkflowManagedTemplates(preProcessResponse, solutionTemplateData);
|
|
182
186
|
solutionTemplateData.templates = _updateGroupReferences(solutionTemplateData.templates, templateDictionary);
|
|
@@ -173,6 +173,10 @@ export async function deploySolutionFromTemplate(templateSolutionId, solutionTem
|
|
|
173
173
|
if (iTemplateKeyword >= 0) {
|
|
174
174
|
solutionTemplateBase.typeKeywords.splice(iTemplateKeyword, 1);
|
|
175
175
|
}
|
|
176
|
+
const iBuildKeyword = solutionTemplateBase.typeKeywords.indexOf("Build");
|
|
177
|
+
if (iBuildKeyword >= 0) {
|
|
178
|
+
solutionTemplateBase.typeKeywords.splice(iBuildKeyword, 1);
|
|
179
|
+
}
|
|
176
180
|
solutionTemplateData.templates = solutionTemplateData.templates.map((itemTemplate) => _purgeTemplateProperties(itemTemplate));
|
|
177
181
|
_handleWorkflowManagedTemplates(preProcessResponse, solutionTemplateData);
|
|
178
182
|
solutionTemplateData.templates = _updateGroupReferences(solutionTemplateData.templates, templateDictionary);
|
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.39",
|
|
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.39",
|
|
28
|
+
"@esri/solution-feature-layer": "^6.6.1-next.39",
|
|
29
|
+
"@esri/solution-file": "^6.6.1-next.39",
|
|
30
|
+
"@esri/solution-form": "^6.6.1-next.39",
|
|
31
|
+
"@esri/solution-group": "^6.6.1-next.39",
|
|
32
|
+
"@esri/solution-hub-types": "^6.6.1-next.39",
|
|
33
|
+
"@esri/solution-simple-types": "^6.6.1-next.39",
|
|
34
|
+
"@esri/solution-storymap": "^6.6.1-next.39",
|
|
35
|
+
"@esri/solution-velocity": "^6.6.1-next.39",
|
|
36
|
+
"@esri/solution-web-experience": "^6.6.1-next.39",
|
|
37
|
+
"@esri/solution-web-tool": "^6.6.1-next.39",
|
|
38
|
+
"@esri/solution-workflow": "^6.6.1-next.39",
|
|
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": "bfc1b3b6257708de4525a322ec0ee09b81f8152d"
|
|
94
94
|
}
|