animepic-utils 0.0.2 → 0.0.3
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/pics.js +1 -1
- package/package.json +1 -1
- package/pics.ts +1 -1
- package/readme.md +3 -2
package/dist/pics.js
CHANGED
|
@@ -6,6 +6,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
require("dotenv/config");
|
|
7
7
|
const image_utils_1 = __importDefault(require("./image-utils"));
|
|
8
8
|
const start = async () => {
|
|
9
|
-
|
|
9
|
+
image_utils_1.default.changeQualifiers(process.env.FOLDER, "c");
|
|
10
10
|
};
|
|
11
11
|
start();
|
package/package.json
CHANGED
package/pics.ts
CHANGED
package/readme.md
CHANGED
|
@@ -54,8 +54,9 @@ await imageUtils.changeQualifiers(folder, "g")
|
|
|
54
54
|
|
|
55
55
|
These are the full list of qualifiers:
|
|
56
56
|
|
|
57
|
-
- `_s` or none - Uploads images seperately
|
|
57
|
+
- `_s` or none - Uploads images seperately
|
|
58
58
|
- `_p` - Joins images together into one post as variations
|
|
59
59
|
- `_g` - Uploads images seperately but adds them to the same group
|
|
60
|
-
- `
|
|
60
|
+
- `_g!` - Adds the image as a *variation* to the previous group post
|
|
61
|
+
- `_c` - Adds images as child posts to the first in the set (`_c0`)
|
|
61
62
|
- `_c!` - Adds the image as a *variation* to the previous child post
|