create-powerapps-project 1.3.5 → 1.4.0
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 +11 -1
- package/package.json +1 -1
- package/plop-templates/pcf/App.tsx +1 -1
package/lib/plopfile.js
CHANGED
|
@@ -211,6 +211,9 @@ export default async (plop) => {
|
|
|
211
211
|
scriptValue: `npx only-allow ${data.package}`
|
|
212
212
|
}
|
|
213
213
|
},
|
|
214
|
+
{
|
|
215
|
+
type: 'addSolution'
|
|
216
|
+
},
|
|
214
217
|
{
|
|
215
218
|
type: 'signAssembly'
|
|
216
219
|
},
|
|
@@ -359,10 +362,17 @@ export default async (plop) => {
|
|
|
359
362
|
{
|
|
360
363
|
type: 'addScript',
|
|
361
364
|
data: {
|
|
362
|
-
scriptKey: '
|
|
365
|
+
scriptKey: 'deploy',
|
|
363
366
|
scriptValue: `pac auth select --name ${data.org} && pac pcf version --strategy manifest && pac pcf push -pp ${data.prefix}`
|
|
364
367
|
}
|
|
365
368
|
},
|
|
369
|
+
{
|
|
370
|
+
type: 'addScript',
|
|
371
|
+
data: {
|
|
372
|
+
scriptKey: 'update',
|
|
373
|
+
scriptValue: `pac auth select --name ${data.org} && pac pcf version --strategy manifest && pac pcf push -pp ${data.prefix} -inc`
|
|
374
|
+
}
|
|
375
|
+
},
|
|
366
376
|
{
|
|
367
377
|
type: 'addScript',
|
|
368
378
|
data: {
|
package/package.json
CHANGED