1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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);
|