ispras / web-scraper-chrome-extension

Web data extraction tool implemented as chrome extension
GNU Lesser General Public License v3.0
214 stars 68 forks source link

[Question] How to build and build-zip HEAD #101

Closed ugur1yildiz closed 2 years ago

ugur1yildiz commented 2 years ago

I tried to build on npm but it was not successful. I think it is due to deprecated node modules.

Can any body list the required node, node-gyp, npm, python and msvc versions to build it?

Thanks.

Yatskov commented 2 years ago

Hello, to build extension zip i usually use such algorithm. I use node version 12.22.6 and yarn version 1.21.1.

Use this commands in the root folder of project.

> yarn install 
> yarn build
> yarn build-zip

After that you would have zip in dist-zip folder with latest version which you could install by drag in drop in chrome://extensions.

Hope this answer was helpfull to you.