@grekt/cli 6.38.1 → 6.39.0
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.js +12 -11
- package/package.json +7 -6
package/dist/index.js
CHANGED
|
@@ -16782,7 +16782,7 @@ var require_braces = __commonJS((exports2, module2) => {
|
|
|
16782
16782
|
module2.exports = braces;
|
|
16783
16783
|
});
|
|
16784
16784
|
|
|
16785
|
-
// node_modules/picomatch/lib/constants.js
|
|
16785
|
+
// node_modules/micromatch/node_modules/picomatch/lib/constants.js
|
|
16786
16786
|
var require_constants3 = __commonJS((exports2, module2) => {
|
|
16787
16787
|
var path8 = __require("path");
|
|
16788
16788
|
var WIN_SLASH = "\\\\/";
|
|
@@ -16922,7 +16922,7 @@ var require_constants3 = __commonJS((exports2, module2) => {
|
|
|
16922
16922
|
};
|
|
16923
16923
|
});
|
|
16924
16924
|
|
|
16925
|
-
// node_modules/picomatch/lib/utils.js
|
|
16925
|
+
// node_modules/micromatch/node_modules/picomatch/lib/utils.js
|
|
16926
16926
|
var require_utils4 = __commonJS((exports2) => {
|
|
16927
16927
|
var path8 = __require("path");
|
|
16928
16928
|
var win322 = process.platform === "win32";
|
|
@@ -16982,7 +16982,7 @@ var require_utils4 = __commonJS((exports2) => {
|
|
|
16982
16982
|
};
|
|
16983
16983
|
});
|
|
16984
16984
|
|
|
16985
|
-
// node_modules/picomatch/lib/scan.js
|
|
16985
|
+
// node_modules/micromatch/node_modules/picomatch/lib/scan.js
|
|
16986
16986
|
var require_scan = __commonJS((exports2, module2) => {
|
|
16987
16987
|
var utils = require_utils4();
|
|
16988
16988
|
var {
|
|
@@ -17297,7 +17297,7 @@ var require_scan = __commonJS((exports2, module2) => {
|
|
|
17297
17297
|
module2.exports = scan;
|
|
17298
17298
|
});
|
|
17299
17299
|
|
|
17300
|
-
// node_modules/picomatch/lib/parse.js
|
|
17300
|
+
// node_modules/micromatch/node_modules/picomatch/lib/parse.js
|
|
17301
17301
|
var require_parse6 = __commonJS((exports2, module2) => {
|
|
17302
17302
|
var constants2 = require_constants3();
|
|
17303
17303
|
var utils = require_utils4();
|
|
@@ -18075,7 +18075,7 @@ var require_parse6 = __commonJS((exports2, module2) => {
|
|
|
18075
18075
|
module2.exports = parse6;
|
|
18076
18076
|
});
|
|
18077
18077
|
|
|
18078
|
-
// node_modules/picomatch/lib/picomatch.js
|
|
18078
|
+
// node_modules/micromatch/node_modules/picomatch/lib/picomatch.js
|
|
18079
18079
|
var require_picomatch = __commonJS((exports2, module2) => {
|
|
18080
18080
|
var path8 = __require("path");
|
|
18081
18081
|
var scan = require_scan();
|
|
@@ -103996,7 +103996,7 @@ var whoamiCommand = new Command("whoami").description("Show current user").actio
|
|
|
103996
103996
|
// package.json
|
|
103997
103997
|
var package_default = {
|
|
103998
103998
|
name: "@grekt/cli",
|
|
103999
|
-
version: "6.
|
|
103999
|
+
version: "6.39.0",
|
|
104000
104000
|
description: "AI tools versioned, synced, and shared across tools and teams",
|
|
104001
104001
|
type: "module",
|
|
104002
104002
|
bin: {
|
|
@@ -104023,11 +104023,10 @@ var package_default = {
|
|
|
104023
104023
|
deploy: "bun run scripts/deploy.ts",
|
|
104024
104024
|
release: "bun run build:all && bun run deploy",
|
|
104025
104025
|
typecheck: "tsc --noEmit",
|
|
104026
|
-
test: "
|
|
104027
|
-
"test:watch": "
|
|
104028
|
-
"test:coverage": "
|
|
104026
|
+
test: "vitest run",
|
|
104027
|
+
"test:watch": "vitest watch",
|
|
104028
|
+
"test:coverage": "vitest run --coverage",
|
|
104029
104029
|
"test:e2e": "bun test spec/",
|
|
104030
|
-
"test:e2e:watch": "bun test spec/ --watch",
|
|
104031
104030
|
prepare: "husky"
|
|
104032
104031
|
},
|
|
104033
104032
|
dependencies: {
|
|
@@ -104053,7 +104052,9 @@ var package_default = {
|
|
|
104053
104052
|
"bun-types": "^1.3.6",
|
|
104054
104053
|
husky: "^9.1.7",
|
|
104055
104054
|
"semantic-release": "^25.0.2",
|
|
104056
|
-
typescript: "^5.7.2"
|
|
104055
|
+
typescript: "^5.7.2",
|
|
104056
|
+
"vite-tsconfig-paths": "^6.1.1",
|
|
104057
|
+
vitest: "^4.0.18"
|
|
104057
104058
|
},
|
|
104058
104059
|
engines: {
|
|
104059
104060
|
node: ">=18.0.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grekt/cli",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.39.0",
|
|
4
4
|
"description": "AI tools versioned, synced, and shared across tools and teams",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,11 +27,10 @@
|
|
|
27
27
|
"deploy": "bun run scripts/deploy.ts",
|
|
28
28
|
"release": "bun run build:all && bun run deploy",
|
|
29
29
|
"typecheck": "tsc --noEmit",
|
|
30
|
-
"test": "
|
|
31
|
-
"test:watch": "
|
|
32
|
-
"test:coverage": "
|
|
30
|
+
"test": "vitest run",
|
|
31
|
+
"test:watch": "vitest watch",
|
|
32
|
+
"test:coverage": "vitest run --coverage",
|
|
33
33
|
"test:e2e": "bun test spec/",
|
|
34
|
-
"test:e2e:watch": "bun test spec/ --watch",
|
|
35
34
|
"prepare": "husky"
|
|
36
35
|
},
|
|
37
36
|
"dependencies": {
|
|
@@ -57,7 +56,9 @@
|
|
|
57
56
|
"bun-types": "^1.3.6",
|
|
58
57
|
"husky": "^9.1.7",
|
|
59
58
|
"semantic-release": "^25.0.2",
|
|
60
|
-
"typescript": "^5.7.2"
|
|
59
|
+
"typescript": "^5.7.2",
|
|
60
|
+
"vite-tsconfig-paths": "^6.1.1",
|
|
61
|
+
"vitest": "^4.0.18"
|
|
61
62
|
},
|
|
62
63
|
"engines": {
|
|
63
64
|
"node": ">=18.0.0"
|