framer-code-link 0.21.0-alpha.0 → 0.21.0-alpha.1

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/dist/index.mjs +1 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -1678,7 +1678,7 @@ var Installer = class {
1678
1678
  pkg.dependencies = dependencies;
1679
1679
  pkg.devDependencies = devDependencies;
1680
1680
  await fs.writeFile(packagePath, JSON.stringify(pkg, null, 4));
1681
- status("Updated dependencies. Run your package manager to install them.");
1681
+ success("Updated dependencies. Run your package manager to install them.");
1682
1682
  debug(`Updated package.json dependency versions for ${uniquePackageNames.join(", ")}`);
1683
1683
  }
1684
1684
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "framer-code-link",
3
- "version": "0.21.0-alpha.0",
3
+ "version": "0.21.0-alpha.1",
4
4
  "description": "CLI tool for syncing Framer code components - controller-centric architecture",
5
5
  "main": "dist/index.mjs",
6
6
  "type": "module",
@@ -38,5 +38,5 @@
38
38
  "tsx": "^4.21.0",
39
39
  "vitest": "^4.1.5"
40
40
  },
41
- "stableVersion": "0.1"
41
+ "stableVersion": "0.20.0"
42
42
  }