drafted 1.1.2 → 1.1.4
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/cli/drafted.mjs +0 -9
- package/mcp/server.mjs +1076 -784
- package/mcp/widgets/canvas-overview.html +213 -0
- package/mcp/widgets/frame-preview.html +162 -0
- package/package.json +5 -1
package/cli/drafted.mjs
CHANGED
|
@@ -1019,15 +1019,6 @@ program
|
|
|
1019
1019
|
});
|
|
1020
1020
|
|
|
1021
1021
|
|
|
1022
|
-
// Command: export (TODO: rewrite to use server API)
|
|
1023
|
-
program
|
|
1024
|
-
.command('export [layer]')
|
|
1025
|
-
.description('(coming soon) Batch export frames as images via server API')
|
|
1026
|
-
.action(() => {
|
|
1027
|
-
console.log('The `export` command is being rewritten to use the server API.');
|
|
1028
|
-
console.log('Use the /api/screenshot/:id endpoint directly for now.');
|
|
1029
|
-
process.exit(0);
|
|
1030
|
-
});
|
|
1031
1022
|
|
|
1032
1023
|
program
|
|
1033
1024
|
.name('drafted')
|