syntaxshot-cli 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/license.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syntaxshot-cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Genera capturas de codigo con resaltado de sintaxis desde la terminal",
5
5
  "type": "module",
6
6
  "bin": {
package/src/license.js CHANGED
@@ -11,7 +11,7 @@ const REVALIDATE_AFTER_MS = 24 * 60 * 60 * 1000; // 24h
11
11
  // license for this long before falling back to Free.
12
12
  const OFFLINE_GRACE_MS = 7 * 24 * 60 * 60 * 1000; // 7 days
13
13
 
14
- const API_URL = process.env.SYNTAXSHOT_API_URL || "https://syntaxshot-api.vercel.app";
14
+ const API_URL = process.env.SYNTAXSHOT_API_URL || "https://api.syntaxshot.dev";
15
15
 
16
16
  function readLicenseFile() {
17
17
  if (!fs.existsSync(LICENSE_FILE)) return null;