File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " framer-code-link" ,
3- "version" : " 0.4.0 " ,
3+ "version" : " 0.4.3 " ,
44 "description" : " CLI tool for syncing Framer code components - controller-centric architecture" ,
55 "main" : " dist/index.mjs" ,
66 "type" : " module" ,
1010 ],
1111 "scripts" : {
1212 "dev" : " NODE_ENV=development tsx src/index.ts" ,
13- "build" : " tsdown src/index.ts " ,
13+ "build" : " tsdown" ,
1414 "start" : " node dist/index.mjs" ,
1515 "test" : " vitest run"
1616 },
2222 "author" : " " ,
2323 "license" : " MIT" ,
2424 "dependencies" : {
25- "@code-link/shared" : " workspace:*" ,
2625 "@typescript/ata" : " ^0.9.8" ,
2726 "chokidar" : " ^5.0.0" ,
2827 "commander" : " ^14.0.2" ,
3130 "ws" : " ^8.18.3"
3231 },
3332 "devDependencies" : {
33+ "@code-link/shared" : " workspace:*" ,
3434 "@types/node" : " ^22.19.2" ,
3535 "@types/ws" : " ^8.18.1" ,
3636 "tsdown" : " ^0.17.4" ,
Original file line number Diff line number Diff line change 1+ import { defineConfig } from "tsdown"
2+
3+ export default defineConfig ( {
4+ entry : [ "src/index.ts" ] ,
5+ format : "esm" ,
6+ noExternal : [ "@code-link/shared" ] ,
7+ } )
8+
You can’t perform that action at this time.
0 commit comments