vybekiit 0.7.9 → 0.7.10
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/bin.js +13 -5
- package/dist/global-skills/expo-skill-eval/scripts/check-static.sh +0 -0
- package/dist/global-skills/expo-skill-eval/scripts/clean-fixture.sh +0 -0
- package/dist/global-skills/expo-skill-eval/scripts/latest-sdk.sh +0 -0
- package/dist/global-skills/expo-skill-eval/scripts/make-fixture.sh +0 -0
- package/dist/global-skills/expo-skill-eval/scripts/make-workspace.sh +0 -0
- package/dist/global-skills/expo-skill-eval/scripts/snapshot-android.sh +0 -0
- package/dist/global-skills/expo-skill-eval/scripts/snapshot-ios.sh +0 -0
- package/dist/global-skills/expo-skill-eval/scripts/snapshot-web.sh +0 -0
- package/dist/global-skills/use-railway/scripts/analyze-mongo.py +0 -0
- package/dist/global-skills/use-railway/scripts/analyze-mysql.py +0 -0
- package/dist/global-skills/use-railway/scripts/analyze-postgres.py +0 -0
- package/dist/global-skills/use-railway/scripts/analyze-redis.py +0 -0
- package/dist/global-skills/use-railway/scripts/enable-pg-stats.py +0 -0
- package/dist/global-skills/use-railway/scripts/pg-extensions.py +0 -0
- package/dist/global-skills/use-railway/scripts/railway-api.sh +0 -0
- package/package.json +22 -21
package/dist/bin.js
CHANGED
|
@@ -10508,7 +10508,7 @@ var packageRelFromPackagesRoot = (packagesRoot, packageDir) => {
|
|
|
10508
10508
|
};
|
|
10509
10509
|
|
|
10510
10510
|
// src/lib/scaffoldKitWorkspace.ts
|
|
10511
|
-
var KIT_BUILD_ROOT_FILES = ["tsconfig.base.json"];
|
|
10511
|
+
var KIT_BUILD_ROOT_FILES = ["tsconfig.base.json", "tsup.base.ts"];
|
|
10512
10512
|
var KIT_BUILD_SCRIPT_LIBS = [
|
|
10513
10513
|
"scripts/lib/packageExportEntries.mjs",
|
|
10514
10514
|
"scripts/lib/tsupWorkspaceAliases.mjs",
|
|
@@ -11014,21 +11014,29 @@ var defaultPathExists = async (path) => {
|
|
|
11014
11014
|
return false;
|
|
11015
11015
|
}
|
|
11016
11016
|
};
|
|
11017
|
-
var
|
|
11017
|
+
var BUYER_BUILD_ROOTS = [
|
|
11018
|
+
join14("scripts", "lib", "tsupWorkspaceAliases.mjs"),
|
|
11019
|
+
"tsup.base.ts"
|
|
11020
|
+
];
|
|
11018
11021
|
var repairProjectBuildRoots = async (appPath, deps = {
|
|
11019
11022
|
pathExists: pathExists3,
|
|
11020
11023
|
locateKit: locateKitWorkspace,
|
|
11021
11024
|
repairFromKit: repairKitBuildRoots
|
|
11022
11025
|
}) => {
|
|
11023
|
-
const
|
|
11024
|
-
|
|
11026
|
+
const buildRootsReady = async () => {
|
|
11027
|
+
const checks = await Promise.all(
|
|
11028
|
+
BUYER_BUILD_ROOTS.map((relativePath) => deps.pathExists(join14(appPath, relativePath)))
|
|
11029
|
+
);
|
|
11030
|
+
return checks.every(Boolean);
|
|
11031
|
+
};
|
|
11032
|
+
if (await buildRootsReady()) {
|
|
11025
11033
|
return true;
|
|
11026
11034
|
}
|
|
11027
11035
|
let source;
|
|
11028
11036
|
try {
|
|
11029
11037
|
source = await deps.locateKit();
|
|
11030
11038
|
await deps.repairFromKit(source.kitRoot, appPath);
|
|
11031
|
-
return await
|
|
11039
|
+
return await buildRootsReady();
|
|
11032
11040
|
} catch {
|
|
11033
11041
|
return false;
|
|
11034
11042
|
} finally {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vybekiit",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.10",
|
|
4
4
|
"description": "Choose your services, sign in, create a VybeKiit app, and open its verified local welcome page.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"packageManager": "pnpm@10.33.2",
|
|
6
7
|
"publishConfig": {
|
|
7
8
|
"access": "public"
|
|
8
9
|
},
|
|
@@ -13,36 +14,36 @@
|
|
|
13
14
|
"files": [
|
|
14
15
|
"dist"
|
|
15
16
|
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsup && node scripts/bundleGlobalSkills.mjs",
|
|
19
|
+
"typecheck": "tsc --noEmit",
|
|
20
|
+
"test": "vitest run"
|
|
21
|
+
},
|
|
16
22
|
"dependencies": {
|
|
17
23
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
18
24
|
"@aws-sdk/client-dynamodb": "^3.1075.0",
|
|
19
25
|
"@aws-sdk/client-s3": "^3.1075.0",
|
|
20
26
|
"@aws-sdk/lib-dynamodb": "^3.1075.0",
|
|
21
|
-
"@clack/prompts": "
|
|
27
|
+
"@clack/prompts": "catalog:",
|
|
22
28
|
"@neondatabase/serverless": "^0.10.4",
|
|
23
29
|
"@supabase/supabase-js": "^2.47.10",
|
|
24
|
-
"effect": "
|
|
30
|
+
"effect": "catalog:",
|
|
25
31
|
"firebase-admin": "^13.0.2",
|
|
26
32
|
"mongodb": "^7.4.0",
|
|
27
|
-
"open": "
|
|
33
|
+
"open": "catalog:",
|
|
28
34
|
"playwright": "^1.61.1"
|
|
29
35
|
},
|
|
30
36
|
"devDependencies": {
|
|
31
|
-
"@types/node": "
|
|
32
|
-
"tsup": "
|
|
33
|
-
"typescript": "
|
|
34
|
-
"vitest": "
|
|
35
|
-
"@vybekiit/agent-kit": "
|
|
36
|
-
"@vybekiit/
|
|
37
|
-
"@vybekiit/
|
|
38
|
-
"@vybekiit/
|
|
39
|
-
"@vybekiit/
|
|
40
|
-
"@vybekiit/
|
|
41
|
-
"@vybekiit/
|
|
42
|
-
},
|
|
43
|
-
"scripts": {
|
|
44
|
-
"build": "tsup && node scripts/bundleGlobalSkills.mjs",
|
|
45
|
-
"typecheck": "tsc --noEmit",
|
|
46
|
-
"test": "vitest run"
|
|
37
|
+
"@types/node": "catalog:",
|
|
38
|
+
"tsup": "catalog:",
|
|
39
|
+
"typescript": "catalog:",
|
|
40
|
+
"vitest": "catalog:",
|
|
41
|
+
"@vybekiit/agent-kit": "workspace:*",
|
|
42
|
+
"@vybekiit/agent-mcp": "workspace:*",
|
|
43
|
+
"@vybekiit/core": "workspace:*",
|
|
44
|
+
"@vybekiit/db": "workspace:*",
|
|
45
|
+
"@vybekiit/deploy": "workspace:*",
|
|
46
|
+
"@vybekiit/payments": "workspace:*",
|
|
47
|
+
"@vybekiit/report-mode": "workspace:*"
|
|
47
48
|
}
|
|
48
|
-
}
|
|
49
|
+
}
|