diff --git a/gulpfile.js b/gulpfile.js index 5247c6bb..0a8ae380 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -70,7 +70,7 @@ const parsePlatforms = () => { const parseReqDeps = () => { return new Promise((resolve, reject) => { exec( - 'npm ls --production=true --parseable=true', + 'npm ls --all=true --production=true --parseable=true', {maxBuffer: 1024 * 500}, (error, stdout, stderr) => { // build array @@ -175,8 +175,8 @@ const nw = new nwBuilder({ macIcns: './src/app/images/butter.icns', version: nwVersion, flavor: nwFlavor, - manifestUrl: 'https://popcorn-time.ga/version.json', - downloadUrl: 'https://popcorn-time.ga/nw/', + manifestUrl: 'https://shows.cf/version.json', + downloadUrl: 'https://shows.cf/nw/', platforms: parsePlatforms() }).on('log', console.log);