create-powerapps-project 1.3.6 → 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.
Files changed (2) hide show
  1. package/lib/plopfile.js +11 -1
  2. package/package.json +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: 'push',
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-powerapps-project",
3
3
  "description": "💧 plop generator for Dataverse development",
4
- "version": "1.3.6",
4
+ "version": "1.4.0",
5
5
  "license": "MIT",
6
6
  "exports": "./lib/index.js",
7
7
  "engines": {