@tywalk/pcf-helper
v1.4.22
Published
Command line helper for building and publishing PCF controls to Dataverse.
Downloads
7
Readme
PCF Helper
A simple command-line tool that upgrades, builds, and imports your PCF control into your Dataverse environment.
You can run commands separately or run pcf-helper-deploy to upgrade, build, and import with just one command.
Requirements
This tool requires the following:
paccli installed on your machine.dotnetcli or Visual Studio installed on your machine.
Instructions
- In your project, run
npm install --save @tywalk/pcf-helper. Or, install globallynpm install --save --global @tywalk/pcf-helper. - In your project's
package.jsonfile, add commands as npm scripts:
"scripts": {
"upgrade": "pcf-helper-upgrade --path <path to pcf project folder>",
"build": "pcf-helper-build --path <path to pcf project folder>",
"import": "pcf-helper-import --path <path to pcf project folder> --environment <environment guid or url>",
"deploy": "pcf-helper-deploy --path <path to pcf project folder> --environment <environment guid or url>",
"init": "pcf-helper-init --path <path to pcf project folder (optional)> --name <name of the pcf project> --publisher-name <powerapps publisher name> --publisher-prefix <powerapps publisher prefix>"
},