@esri/solution-deployer 6.6.1-next.36 → 6.6.1-next.38

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