Can git be installed and git commands be used by using webpack

189 Views Asked by At

I am creating my own plugin on Adobe XD and i need to use Git command to clone or pull (By using SSH key) the files from my git repo. Whether it can be done. Kindly provide me with a solution(cloning should be done by webpack).

1

There are 1 best solutions below

2
On

Webpack itself doesn't have any git related plugin that you can use. However, you can write your own wrapper script over Webpack and install one of the Node.js git client like git or simple-git which you can use.

Writing a Webpack plugin or custom loader is not very hard. This is generally the practice followed by framework CLI wrappers like create-react-app, vue-cli or angular-cli.

To use, Webpack in a custom Node.js script, use this official guide.