@cortexa/core 0.7.0 → 1.0.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/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/package.json +4 -2
- package/scripts/postinstall.js +49 -0
package/dist/cli/index.js
CHANGED
|
@@ -5858,7 +5858,7 @@ if (!process.argv.includes("--version") && !process.argv.includes("-V")) {
|
|
|
5858
5858
|
printBanner();
|
|
5859
5859
|
}
|
|
5860
5860
|
var program = new Command();
|
|
5861
|
-
program.name("cortexa").description("The intelligence layer for your database").version("
|
|
5861
|
+
program.name("cortexa").description("The intelligence layer for your database").version("1.0.0");
|
|
5862
5862
|
program.command("init").description("Generate a cortexa.config.ts configuration file").option("--demo", "Generate a fully-featured demo config showcasing all sections").action((options) => {
|
|
5863
5863
|
try {
|
|
5864
5864
|
const configPath = generateConfigFile(process.cwd(), options.demo);
|