-
Is there a way to use a version of Portman that is based on a branch or custom version? |
Beta Was this translation helpful? Give feedback.
Answered by
thim81
Jul 14, 2022
Replies: 1 comment
-
Follow these steps, to replace the NPM version of Portman with a local build of Portman:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
thim81
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Follow these steps, to replace the NPM version of Portman with a local build of Portman:
npm uninstall @apideck/portman
npm link C:\Users\custombranch\source\repos\portman
whereC:\Users\custombranch\source\repos\portman
is the local location of the custom portman repo lives (just point to the root folder of portman location)npm i
, in your project foldertsconfig.json
and added a"watch": true
in the compilerOptionsnpm run build
in the local Portman folder (this adds it in watch mode, so every cha…