express-genix 4.5.0 → 4.5.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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -15,7 +15,7 @@ const prompt = inquirer.createPromptModule();
|
|
|
15
15
|
const generateSecret = (length = 64) => crypto.randomBytes(length).toString('hex');
|
|
16
16
|
|
|
17
17
|
const CODA_EXTENSION_ID = 'express-genix.coda-ai';
|
|
18
|
-
const CODA_VSIX_URL = 'https://github.com/LambdaAI001/coda/releases/download/
|
|
18
|
+
const CODA_VSIX_URL = 'https://github.com/LambdaAI001/coda/releases/download/v1.0.0/coda-ai-1.0.0.vsix';
|
|
19
19
|
|
|
20
20
|
async function promptCodaExtension() {
|
|
21
21
|
const inquirerPrompt = inquirer.createPromptModule();
|
|
@@ -54,7 +54,7 @@ async function promptCodaExtension() {
|
|
|
54
54
|
} catch {
|
|
55
55
|
console.log('\n⚠️ Could not install automatically. Install it manually:');
|
|
56
56
|
console.log(' 1. Download from: https://github.com/LambdaAI001/coda/releases');
|
|
57
|
-
console.log(' 2. Then run: code --install-extension coda-ai-0.
|
|
57
|
+
console.log(' 2. Then run: code --install-extension coda-ai-1.0.0.vsix');
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "express-genix",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"description": "Production-grade CLI to generate Express apps with JWT, RBAC, GraphQL, TypeScript, Prisma, MongoDB, PostgreSQL, file uploads, email, background jobs, and more",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|