figma-mcp-cli 1.0.2 → 1.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -92,7 +92,7 @@ program
92
92
  message:
93
93
  'Please paste the Figma design link (obtained via "Copy link to selection"):',
94
94
  validate: (input) =>
95
- input.includes("https://www.figma.com/file/")
95
+ input.includes("https://www.figma.com/")
96
96
  ? true
97
97
  : "The link format seems to be incorrect.",
98
98
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "figma-mcp-cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A CLI to automate Figma MCP setup and code generation",
5
5
  "main": "index.js",
6
6
  "scripts": {