codemate-ai 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/dist/cli.js +1 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -5307,7 +5307,7 @@ function App({ app }) {
5307
5307
 
5308
5308
  // src/cli.ts
5309
5309
  var program = new Command();
5310
- program.name("codemate").description("AI-powered CLI assistant").version("1.0.1");
5310
+ program.name("codemate").description("AI-powered CLI assistant").version("1.0.2");
5311
5311
  program.command("chat", { isDefault: true }).description("Start interactive chat mode").action(async () => {
5312
5312
  try {
5313
5313
  const configService = new ConfigService();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemate-ai",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "description": "Enterprise-grade AI coding assistant CLI",
6
6
  "main": "dist/cli.js",