@agentuity/cli 0.0.77 → 0.0.79
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/cmd/build/ast.d.ts +2 -2
- package/dist/cmd/build/ast.d.ts.map +1 -1
- package/dist/cmd/build/ast.js +191 -22
- package/dist/cmd/build/ast.js.map +1 -1
- package/dist/cmd/build/bundler.d.ts.map +1 -1
- package/dist/cmd/build/bundler.js +10 -11
- package/dist/cmd/build/bundler.js.map +1 -1
- package/dist/cmd/build/plugin.d.ts.map +1 -1
- package/dist/cmd/build/plugin.js +29 -31
- package/dist/cmd/build/plugin.js.map +1 -1
- package/dist/cmd/build/route-registry.d.ts +2 -0
- package/dist/cmd/build/route-registry.d.ts.map +1 -1
- package/dist/cmd/build/route-registry.js +5 -1
- package/dist/cmd/build/route-registry.js.map +1 -1
- package/dist/cmd/cloud/deploy.d.ts.map +1 -1
- package/dist/cmd/cloud/deploy.js +6 -2
- package/dist/cmd/cloud/deploy.js.map +1 -1
- package/dist/legacy-check.d.ts.map +1 -1
- package/dist/legacy-check.js +2 -2
- package/dist/legacy-check.js.map +1 -1
- package/package.json +3 -3
- package/src/cmd/build/ast.ts +230 -29
- package/src/cmd/build/bundler.ts +10 -11
- package/src/cmd/build/plugin.ts +45 -41
- package/src/cmd/build/route-registry.ts +7 -1
- package/src/cmd/cloud/deploy.ts +8 -1
- package/src/legacy-check.ts +4 -2
package/src/legacy-check.ts
CHANGED
|
@@ -117,10 +117,12 @@ export async function checkLegacyCLI(): Promise<void> {
|
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
console.log(' ' + tui.bold('After removal, install the new CLI:'));
|
|
120
|
-
tui.bullet('
|
|
120
|
+
tui.bullet('curl -sSL https://v1.agentuity.sh | sh');
|
|
121
121
|
tui.newline();
|
|
122
122
|
|
|
123
|
-
console.log(
|
|
123
|
+
console.log(
|
|
124
|
+
` Learn more: ${tui.link('https://preview.agentuity.dev/v1/Reference/migration-guide')}`
|
|
125
|
+
);
|
|
124
126
|
tui.newline();
|
|
125
127
|
|
|
126
128
|
process.exit(1);
|