content-grade 1.0.22 → 1.0.23
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 +2 -1
- package/dist/landing.html +3 -3
- package/package.json +1 -1
package/bin/content-grade.js
CHANGED
|
@@ -1026,8 +1026,9 @@ async function cmdActivate() {
|
|
|
1026
1026
|
}, null, 2), 'utf8');
|
|
1027
1027
|
|
|
1028
1028
|
const tierLimit = TIER_LIMITS[activatedTier] || TIER_LIMITS.free;
|
|
1029
|
+
const tierLimitDisplay = tierLimit === Infinity ? 'unlimited' : `${tierLimit}`;
|
|
1029
1030
|
blank();
|
|
1030
|
-
ok(`${(TIER_NAMES[activatedTier] || activatedTier).split(' —')[0]} activated! Your daily limit is now ${
|
|
1031
|
+
ok(`${(TIER_NAMES[activatedTier] || activatedTier).split(' —')[0]} activated! Your daily limit is now ${tierLimitDisplay} analyses.`);
|
|
1031
1032
|
blank();
|
|
1032
1033
|
console.log(` ${B}Try it:${R}`);
|
|
1033
1034
|
console.log(` ${CY} content-grade batch ./posts/${R} ${D}# analyze all files${R}`);
|
package/dist/landing.html
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@type": "Offer",
|
|
37
37
|
"price": "0",
|
|
38
38
|
"priceCurrency": "USD",
|
|
39
|
-
"description": "Free: 3 analyses/day. Pro: $9/mo,
|
|
39
|
+
"description": "Free: 3 analyses/day. Pro: $9/mo, unlimited/day. Business: $29/mo, 100/day. Team: $79/mo, 500/day."
|
|
40
40
|
},
|
|
41
41
|
"featureList": [
|
|
42
42
|
"Headline analyzer with framework-based scoring",
|
|
@@ -1231,10 +1231,10 @@
|
|
|
1231
1231
|
<div class="plan-badge">Most popular</div>
|
|
1232
1232
|
<div class="plan-name">PRO</div>
|
|
1233
1233
|
<div class="plan-price">$9<span>/mo</span></div>
|
|
1234
|
-
<div class="plan-period">
|
|
1234
|
+
<div class="plan-period">Unlimited analyses/day · billed monthly</div>
|
|
1235
1235
|
<a href="https://buy.stripe.com/4gM14p87GeCh9vn9ks8k80a" class="plan-cta" target="_blank" rel="noopener">Get Pro →</a>
|
|
1236
1236
|
<ul class="plan-features">
|
|
1237
|
-
<li><span class="check">✓</span> <strong>
|
|
1237
|
+
<li><span class="check">✓</span> <strong>Unlimited analyses/day</strong> — no daily cap</li>
|
|
1238
1238
|
<li><span class="check">✓</span> All 6 tools (CLI + dashboard)</li>
|
|
1239
1239
|
<li><span class="check">✓</span> License key for CLI activation</li>
|
|
1240
1240
|
<li><span class="check">✓</span> Batch mode — analyze whole directories</li>
|
package/package.json
CHANGED