@elizaos/cli 1.7.1-alpha.16 → 1.7.1-alpha.17
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 +32 -32
- package/dist/index.js.map +4 -4
- package/dist/templates/plugin-quick-starter/package.json +2 -2
- package/dist/templates/plugin-starter/package.json +2 -2
- package/dist/templates/project-starter/package.json +6 -6
- package/dist/templates/project-starter/src/character.ts +1 -0
- package/dist/templates/project-tee-starter/package.json +4 -4
- package/dist/version.d.ts +2 -2
- package/dist/version.js +2 -2
- package/package.json +8 -8
- package/templates/plugin-quick-starter/package.json +2 -2
- package/templates/plugin-starter/package.json +2 -2
- package/templates/project-starter/package.json +6 -6
- package/templates/project-starter/src/character.ts +1 -0
- package/templates/project-tee-starter/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -4670,7 +4670,7 @@ __export(exports_version, {
|
|
|
4670
4670
|
BUILD_TIME: () => BUILD_TIME,
|
|
4671
4671
|
BUILD_ENV: () => BUILD_ENV
|
|
4672
4672
|
});
|
|
4673
|
-
var CLI_VERSION = "1.7.1-alpha.
|
|
4673
|
+
var CLI_VERSION = "1.7.1-alpha.17", CLI_NAME = "@elizaos/cli", CLI_DESCRIPTION = "elizaOS CLI - Manage your AI agents and plugins", BUILD_TIME = "2026-01-12T18:47:11.813Z", BUILD_ENV = "production", version_default;
|
|
4674
4674
|
var init_version = __esm(() => {
|
|
4675
4675
|
version_default = {
|
|
4676
4676
|
version: CLI_VERSION,
|
|
@@ -94891,39 +94891,39 @@ var require_lib4 = __commonJS((exports) => {
|
|
|
94891
94891
|
var NEWLINE$1 = /\r\n|[\n\r\u2028\u2029]/;
|
|
94892
94892
|
var BRACKET = /^[()[\]{}]$/;
|
|
94893
94893
|
var tokenize2;
|
|
94894
|
-
|
|
94895
|
-
|
|
94896
|
-
|
|
94897
|
-
|
|
94898
|
-
|
|
94899
|
-
|
|
94900
|
-
}
|
|
94901
|
-
if (JSX_TAG.test(token.value) && (text[offset - 1] === "<" || text.slice(offset - 2, offset) === "</")) {
|
|
94902
|
-
return "jsxIdentifier";
|
|
94903
|
-
}
|
|
94904
|
-
if (token.value[0] !== token.value[0].toLowerCase()) {
|
|
94905
|
-
return "capitalized";
|
|
94906
|
-
}
|
|
94894
|
+
var JSX_TAG = /^[a-z][\w-]*$/i;
|
|
94895
|
+
var getTokenType = function(token, offset, text) {
|
|
94896
|
+
if (token.type === "name") {
|
|
94897
|
+
const tokenValue = token.value;
|
|
94898
|
+
if (helperValidatorIdentifier.isKeyword(tokenValue) || helperValidatorIdentifier.isStrictReservedWord(tokenValue, true) || sometimesKeywords.has(tokenValue)) {
|
|
94899
|
+
return "keyword";
|
|
94907
94900
|
}
|
|
94908
|
-
if (
|
|
94909
|
-
return "
|
|
94901
|
+
if (JSX_TAG.test(tokenValue) && (text[offset - 1] === "<" || text.slice(offset - 2, offset) === "</")) {
|
|
94902
|
+
return "jsxIdentifier";
|
|
94910
94903
|
}
|
|
94911
|
-
|
|
94912
|
-
|
|
94904
|
+
const firstChar = String.fromCodePoint(tokenValue.codePointAt(0));
|
|
94905
|
+
if (firstChar !== firstChar.toLowerCase()) {
|
|
94906
|
+
return "capitalized";
|
|
94913
94907
|
}
|
|
94914
|
-
|
|
94915
|
-
|
|
94916
|
-
|
|
94917
|
-
|
|
94918
|
-
|
|
94919
|
-
|
|
94920
|
-
|
|
94921
|
-
|
|
94922
|
-
|
|
94923
|
-
|
|
94924
|
-
|
|
94925
|
-
|
|
94926
|
-
|
|
94908
|
+
}
|
|
94909
|
+
if (token.type === "punctuator" && BRACKET.test(token.value)) {
|
|
94910
|
+
return "bracket";
|
|
94911
|
+
}
|
|
94912
|
+
if (token.type === "invalid" && (token.value === "@" || token.value === "#")) {
|
|
94913
|
+
return "punctuator";
|
|
94914
|
+
}
|
|
94915
|
+
return token.type;
|
|
94916
|
+
};
|
|
94917
|
+
tokenize2 = function* (text) {
|
|
94918
|
+
let match2;
|
|
94919
|
+
while (match2 = jsTokens.default.exec(text)) {
|
|
94920
|
+
const token = jsTokens.matchToToken(match2);
|
|
94921
|
+
yield {
|
|
94922
|
+
type: getTokenType(token, match2.index, text),
|
|
94923
|
+
value: token.value
|
|
94924
|
+
};
|
|
94925
|
+
}
|
|
94926
|
+
};
|
|
94927
94927
|
function highlight(text) {
|
|
94928
94928
|
if (text === "")
|
|
94929
94929
|
return "";
|
|
@@ -307487,5 +307487,5 @@ main().catch((error47) => {
|
|
|
307487
307487
|
process.exit(1);
|
|
307488
307488
|
});
|
|
307489
307489
|
|
|
307490
|
-
//# debugId=
|
|
307490
|
+
//# debugId=0C5867F3898175DC64756E2164756E21
|
|
307491
307491
|
//# sourceMappingURL=index.js.map
|