create-powerapps-project 1.4.3 → 1.4.5
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/lib/plopfile.js +10 -2
- package/package.json +1 -1
package/lib/plopfile.js
CHANGED
|
@@ -52,7 +52,7 @@ export default async (plop) => {
|
|
|
52
52
|
{
|
|
53
53
|
type: 'confirm',
|
|
54
54
|
name: 'pluginPackage',
|
|
55
|
-
message: 'use plugin package?'
|
|
55
|
+
message: 'use plugin package for dependent assemblies (recommended)?'
|
|
56
56
|
},
|
|
57
57
|
{
|
|
58
58
|
type: 'input',
|
|
@@ -215,7 +215,15 @@ export default async (plop) => {
|
|
|
215
215
|
type: 'addSolution'
|
|
216
216
|
},
|
|
217
217
|
{
|
|
218
|
-
type: 'signAssembly'
|
|
218
|
+
type: 'signAssembly',
|
|
219
|
+
skip: (answers) => {
|
|
220
|
+
if (answers.pluginPackage) {
|
|
221
|
+
return `plugin packages don't need to be signed`;
|
|
222
|
+
}
|
|
223
|
+
else {
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
219
227
|
},
|
|
220
228
|
{
|
|
221
229
|
type: 'nugetRestore'
|