content-grade 1.1.2 → 1.1.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/bin/content-grade.js +6 -4
- package/package.json +1 -1
package/bin/content-grade.js
CHANGED
|
@@ -144,13 +144,15 @@ function showFreeTierCTA(count) {
|
|
|
144
144
|
|
|
145
145
|
blank();
|
|
146
146
|
console.log(` ${D}╭${SEP}${R}`);
|
|
147
|
-
console.log(` ${D}│${R} ${quotaColor}${B}${count}/${limit}${R} ${quotaColor}free
|
|
147
|
+
console.log(` ${D}│${R} ${quotaColor}${B}${count}/${limit}${R} ${quotaColor}free analyses used today${R} ${D}[${bar}] ${remainText}${R}`);
|
|
148
148
|
console.log(` ${D}│${R}`);
|
|
149
149
|
console.log(` ${D}│${R} ${WH}Pro unlocks:${R} ${D}Unlimited analyses · Priority processing${R}`);
|
|
150
150
|
console.log(` ${D}│${R} ${D}JSON/HTML export · Bulk grading · CI mode${R}`);
|
|
151
151
|
console.log(` ${D}│${R}`);
|
|
152
|
-
console.log(` ${D}│${R} ${GN}→ Get Pro${R} ${WH}$
|
|
152
|
+
console.log(` ${D}│${R} ${GN}→ Get Pro${R} ${WH}$9/mo, cancel anytime${R}`);
|
|
153
153
|
console.log(` ${D}│${R} ${CY}${UPGRADE_LINKS.free}${R}`);
|
|
154
|
+
console.log(` ${D}│${R}`);
|
|
155
|
+
console.log(` ${D}│${R} ${D}After purchase, activate:${R} ${WH}content-grade activate <your-key>${R}`);
|
|
154
156
|
console.log(` ${D}╰${SEP}${R}`);
|
|
155
157
|
|
|
156
158
|
maybeShowFeedbackCTA(count);
|
|
@@ -260,7 +262,7 @@ function checkFreeTierLimit() {
|
|
|
260
262
|
|
|
261
263
|
blank();
|
|
262
264
|
hr();
|
|
263
|
-
console.log(` ${RD}${B}✗
|
|
265
|
+
console.log(` ${RD}${B}✗ You've used ${limit}/${limit} free analyses today${R}`);
|
|
264
266
|
blank();
|
|
265
267
|
console.log(` ${WH}content-grade Pro${R}${D} — $9/mo, cancel anytime${R}`);
|
|
266
268
|
console.log(` ${D} ├── ${R}${WH}Unlimited analyses${R}${D} — no daily cap${R}`);
|
|
@@ -270,7 +272,7 @@ function checkFreeTierLimit() {
|
|
|
270
272
|
blank();
|
|
271
273
|
console.log(` ${CY}→ Get Pro ${UPGRADE_LINKS.free}${R}`);
|
|
272
274
|
blank();
|
|
273
|
-
console.log(` ${D}
|
|
275
|
+
console.log(` ${D}After purchase, activate: ${R}${WH}content-grade activate <your-key>${R}`);
|
|
274
276
|
hr();
|
|
275
277
|
blank();
|
|
276
278
|
return true;
|
package/package.json
CHANGED