@snelusha/noto 1.1.4 → 1.1.5
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 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -63,6 +63,7 @@ var AvailableModelsSchema = z.enum([
|
|
|
63
63
|
"gemini-1.5-pro",
|
|
64
64
|
"gemini-1.5-pro-latest",
|
|
65
65
|
"gemini-2.0-flash-001",
|
|
66
|
+
"gemini-2.0-flash-lite-preview-02-05",
|
|
66
67
|
"gemini-2.5-pro-exp-03-25"
|
|
67
68
|
]);
|
|
68
69
|
|
|
@@ -289,6 +290,9 @@ var models = {
|
|
|
289
290
|
"gemini-1.5-pro": google("gemini-1.5-pro"),
|
|
290
291
|
"gemini-1.5-pro-latest": google("gemini-1.5-pro-latest"),
|
|
291
292
|
"gemini-2.0-flash-001": google("gemini-2.0-flash-001"),
|
|
293
|
+
"gemini-2.0-flash-lite-preview-02-05": google(
|
|
294
|
+
"gemini-2.0-flash-lite-preview-02-05"
|
|
295
|
+
),
|
|
292
296
|
"gemini-2.5-pro-exp-03-25": google("gemini-2.5-pro-exp-03-25")
|
|
293
297
|
};
|
|
294
298
|
var availableModels = Object.keys(models);
|
|
@@ -700,6 +704,12 @@ var command3 = {
|
|
|
700
704
|
flag: "--remote",
|
|
701
705
|
alias: "-r",
|
|
702
706
|
description: "list branches including remotes"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
type: Boolean,
|
|
710
|
+
flag: "--delete",
|
|
711
|
+
alias: "-d",
|
|
712
|
+
description: "delete a branch"
|
|
703
713
|
}
|
|
704
714
|
],
|
|
705
715
|
execute: withRepository(
|
|
@@ -711,6 +721,7 @@ var command3 = {
|
|
|
711
721
|
);
|
|
712
722
|
return await exit(1);
|
|
713
723
|
}
|
|
724
|
+
if (options["--delete"]) return del.execute(options);
|
|
714
725
|
const remote = options["--remote"];
|
|
715
726
|
const branches = await getBranches(remote);
|
|
716
727
|
if (!branches) {
|
|
@@ -976,7 +987,7 @@ var listCommand = () => {
|
|
|
976
987
|
};
|
|
977
988
|
|
|
978
989
|
// package.json
|
|
979
|
-
var version = "1.1.
|
|
990
|
+
var version = "1.1.5";
|
|
980
991
|
|
|
981
992
|
// src/index.ts
|
|
982
993
|
var globalSpec = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snelusha/noto",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Generate clean commit messages in a snap! ✨",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -48,15 +48,15 @@
|
|
|
48
48
|
"vitest": "^3.1.1"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@ai-sdk/google": "^1.2.
|
|
51
|
+
"@ai-sdk/google": "^1.2.12",
|
|
52
52
|
"@clack/prompts": "^0.10.1",
|
|
53
|
-
"ai": "^4.3.
|
|
53
|
+
"ai": "^4.3.9",
|
|
54
54
|
"arg": "^5.0.2",
|
|
55
55
|
"clipboardy": "^4.0.0",
|
|
56
56
|
"dedent": "^1.5.3",
|
|
57
57
|
"picocolors": "^1.1.1",
|
|
58
58
|
"simple-git": "^3.27.0",
|
|
59
59
|
"tinyexec": "^0.3.2",
|
|
60
|
-
"zod": "^3.24.
|
|
60
|
+
"zod": "^3.24.3"
|
|
61
61
|
}
|
|
62
62
|
}
|