@tywalk/pcf-helper 1.4.9 → 1.4.10

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/package.json CHANGED
@@ -1,7 +1,10 @@
1
1
  {
2
2
  "name": "@tywalk/pcf-helper",
3
- "version": "1.4.9",
3
+ "version": "1.4.10",
4
4
  "description": "Command line helper for building and publishing PCF controls to Dataverse.",
5
+ "repository": {
6
+ "url": "https://github.com/tywalk/pcf-helper"
7
+ },
5
8
  "scripts": {
6
9
  "test": "node test.js"
7
10
  },
@@ -4,7 +4,7 @@ const { formatMsToSec } = require('../util/performanceUtil');
4
4
  function run(path) {
5
5
  console.log('[PCF Helper] Starting upgrade...\n');
6
6
  const tick = performance.now();
7
- const task = spawnSync(`pac solution version -s Solution -sp ${path} && pac pcf version -s Manifest && npm version patch`, {
7
+ const task = spawnSync(`pac solution version -s Solution -sp ${path} && pac pcf version -s Manifest && npm version patch --no-git-tag-version`, {
8
8
  cwd: process.cwd(),
9
9
  stdio: 'inherit',
10
10
  shell: true,