framer-code-link 0.2.0 → 0.2.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.
- package/dist/index.mjs +0 -0
- package/package.json +7 -4
- package/src/controller.test.ts +0 -891
- package/src/controller.ts +0 -1419
- package/src/helpers/connection.ts +0 -187
- package/src/helpers/files.test.ts +0 -117
- package/src/helpers/files.ts +0 -463
- package/src/helpers/installer.ts +0 -530
- package/src/helpers/sync-validator.ts +0 -87
- package/src/helpers/user-actions.ts +0 -158
- package/src/helpers/watcher.test.ts +0 -74
- package/src/helpers/watcher.ts +0 -110
- package/src/index.ts +0 -111
- package/src/types.ts +0 -112
- package/src/utils/file-metadata-cache.ts +0 -121
- package/src/utils/hash-tracker.ts +0 -79
- package/src/utils/imports.ts +0 -62
- package/src/utils/logging.ts +0 -235
- package/src/utils/paths.ts +0 -76
- package/src/utils/project.ts +0 -120
- package/src/utils/state-persistence.ts +0 -138
- package/tsconfig.json +0 -14
- package/vitest.config.ts +0 -8
package/dist/index.mjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "framer-code-link",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "CLI tool for syncing Framer code components - controller-centric architecture",
|
|
5
|
-
"main": "dist/index.
|
|
5
|
+
"main": "dist/index.mjs",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"bin": "./dist/index.
|
|
7
|
+
"bin": "./dist/index.mjs",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
8
11
|
"scripts": {
|
|
9
12
|
"dev": "NODE_ENV=development tsx src/index.ts",
|
|
10
13
|
"build": "tsdown src/index.ts",
|
|
11
|
-
"start": "node dist/index.
|
|
14
|
+
"start": "node dist/index.mjs",
|
|
12
15
|
"test": "vitest run"
|
|
13
16
|
},
|
|
14
17
|
"keywords": [
|