@adsuploader/cli 0.1.3 → 0.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.
- package/dist/cli.cjs +1 -1
- package/package.json +4 -2
package/dist/cli.cjs
CHANGED
|
@@ -5929,7 +5929,7 @@ function statusLabel(status) {
|
|
|
5929
5929
|
}
|
|
5930
5930
|
|
|
5931
5931
|
// src/cli.js
|
|
5932
|
-
var VERSION = true ? "0.1.
|
|
5932
|
+
var VERSION = true ? "0.1.4" : "0.0.0";
|
|
5933
5933
|
var apiUrl = process.env.ADS_API_URL || getBaseUrl();
|
|
5934
5934
|
if (apiUrl && (apiUrl.includes("localhost") || apiUrl.includes("127.0.0.1"))) {
|
|
5935
5935
|
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adsuploader/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Create Facebook ads from the command line — bulk upload media, preview configurations, and launch ads at scale",
|
|
5
5
|
"author": "Ads Uploader <support@adsuploader.com> (https://adsuploader.com)",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -32,7 +32,9 @@
|
|
|
32
32
|
"scripts": {
|
|
33
33
|
"build": "node build.cjs",
|
|
34
34
|
"dev": "node src/cli.js",
|
|
35
|
-
"link": "npm link"
|
|
35
|
+
"link": "npm link",
|
|
36
|
+
"prepublishOnly": "npm run build",
|
|
37
|
+
"version": "npm run build"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
40
|
"commander": "^13.0.0",
|