@tywalk/pcf-helper-run 1.0.0 → 1.0.1

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/index.js +3 -3
  2. package/package.json +5 -2
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
- const upgradeTask = require('../../../tasks/upgrade-pcf');
3
- const buildTask = require('../../../tasks/build-pcf');
4
- const importTask = require('../../../tasks/import-pcf');
2
+ const upgradeTask = require('@tywalk/pcf-helper/tasks/upgrade-pcf');
3
+ const buildTask = require('@tywalk/pcf-helper/tasks/build-pcf');
4
+ const importTask = require('@tywalk/pcf-helper/tasks/import-pcf');
5
5
  const [, , ...args] = process.argv;
6
6
 
7
7
  const commandArgument = args.at(0)?.toLowerCase();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tywalk/pcf-helper-run",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A simple command-line utility for building and publishing PCF controls to Dataverse.",
5
5
  "scripts": {
6
6
  "test": "node test.js"
@@ -11,5 +11,8 @@
11
11
  "author": "tywalk",
12
12
  "bin": {
13
13
  "pcf-helper-run": "./index.js"
14
+ },
15
+ "dependencies": {
16
+ "@tywalk/pcf-helper": "^1.3.3"
14
17
  }
15
- }
18
+ }