Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/plugin-tools/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ framer-plugin-tools pack --help

## Submitting Your Plugin

After running `pack`, submit your plugin at:
https://www.framer.com/marketplace/dashboard/plugins/
After running `pack`, publish your plugin at:
https://www.framer.com/community/marketplace/plugins/
2 changes: 1 addition & 1 deletion packages/plugin-tools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "framer-plugin-tools",
"version": "1.2.1",
"version": "1.2.2",
"description": "CLI Tools for Framer Plugins",
"type": "module",
"main": "dist/index.js",
Expand Down
5 changes: 3 additions & 2 deletions packages/plugin-tools/src/cli.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import path from "node:path"
import { program } from "@commander-js/extra-typings"
import { version } from "../package.json"
import { runPluginBuildScript, zipPluginDistribution } from "./lib"

const defaultDistDir = "dist"
const defaultOutputFilename = "plugin.zip"
const defaultCWD = process.cwd()

program.name("framer-plugin-tools").description("CLI tools for Framer Plugins").version("1.1.0")
program.name("framer-plugin-tools").description("CLI tools for Framer Plugins").version(version)

program
.command("pack")
Expand Down Expand Up @@ -36,7 +37,7 @@ program
const dirName = path.dirname(zipFilePath)

console.log(
`\n⚡️ ${fileName} file has been created in ${dirName} \n Submit your Plugin on the Framer Marketplace: https://www.framer.com/marketplace/dashboard/plugins/`
`\n⚡️ ${fileName} file has been created in ${dirName} \n Publish your Plugin on the Framer Marketplace: https://www.framer.com/community/marketplace/plugins/`
)
Comment thread
kaloyanvi marked this conversation as resolved.
})

Expand Down
Loading