lupacode 1.0.10 → 1.0.11
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 +27 -24
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -47514,9 +47514,9 @@ function fallbackHighlight(content, filetype) {
|
|
|
47514
47514
|
[/`([^`\\]*(\\.[^`\\]*)*)`/g, "string"],
|
|
47515
47515
|
[/'([^'\\]*(\\.[^'\\]*)*)'/g, "string"],
|
|
47516
47516
|
[/\b(\d+(?:\.\d+)?)\b/g, "number"],
|
|
47517
|
-
[/<\/?(\w[\w-]*)[^>]*\/?>/g, "
|
|
47517
|
+
[/<\/?(\w[\w-]*)[^>]*\/?>/g, "tag"],
|
|
47518
47518
|
[/<!?-->/g, "comment"],
|
|
47519
|
-
[/\s(\w[\w-]*)=/g, "attribute"],
|
|
47519
|
+
[/\s(\w[\w-]*)=/g, "tag.attribute"],
|
|
47520
47520
|
[/(?:\.|#)([\w-]+)/g, "type"],
|
|
47521
47521
|
[/@[\w-]+/g, "builtin"]
|
|
47522
47522
|
];
|
|
@@ -96484,7 +96484,7 @@ var import_react35 = __toESM(require_react(), 1);
|
|
|
96484
96484
|
// package.json
|
|
96485
96485
|
var package_default2 = {
|
|
96486
96486
|
name: "lupacode",
|
|
96487
|
-
version: "1.0.
|
|
96487
|
+
version: "1.0.11",
|
|
96488
96488
|
description: "AI-powered terminal coding assistant",
|
|
96489
96489
|
type: "module",
|
|
96490
96490
|
bin: {
|
|
@@ -98625,31 +98625,34 @@ function prettyMilliseconds(milliseconds, options) {
|
|
|
98625
98625
|
// src/components/messages/bot-message.tsx
|
|
98626
98626
|
var globalSyntaxStyle = SyntaxStyle.fromStyles({
|
|
98627
98627
|
default: { fg: "#E4E4E7" },
|
|
98628
|
-
keyword: { fg: "#
|
|
98629
|
-
"keyword.control": { fg: "#
|
|
98630
|
-
"keyword.import": { fg: "#
|
|
98631
|
-
"keyword.function": { fg: "#
|
|
98632
|
-
string: { fg: "#
|
|
98633
|
-
"string.special": { fg: "#
|
|
98634
|
-
number: { fg: "#
|
|
98635
|
-
"number.float": { fg: "#
|
|
98636
|
-
comment: { fg: "#
|
|
98637
|
-
function: { fg: "#
|
|
98638
|
-
"function.call": { fg: "#
|
|
98639
|
-
"function.method": { fg: "#
|
|
98640
|
-
type: { fg: "#
|
|
98641
|
-
"type.builtin": { fg: "#
|
|
98628
|
+
keyword: { fg: "#FF79C6" },
|
|
98629
|
+
"keyword.control": { fg: "#FF79C6" },
|
|
98630
|
+
"keyword.import": { fg: "#FF79C6" },
|
|
98631
|
+
"keyword.function": { fg: "#57A6FF" },
|
|
98632
|
+
string: { fg: "#50FA7B" },
|
|
98633
|
+
"string.special": { fg: "#50FA7B" },
|
|
98634
|
+
number: { fg: "#F1FA8C" },
|
|
98635
|
+
"number.float": { fg: "#F1FA8C" },
|
|
98636
|
+
comment: { fg: "#6C7086", italic: true },
|
|
98637
|
+
function: { fg: "#57A6FF" },
|
|
98638
|
+
"function.call": { fg: "#57A6FF" },
|
|
98639
|
+
"function.method": { fg: "#57A6FF" },
|
|
98640
|
+
type: { fg: "#8BE9FD" },
|
|
98641
|
+
"type.builtin": { fg: "#8BE9FD" },
|
|
98642
98642
|
variable: { fg: "#F5F5F4" },
|
|
98643
|
-
"variable.parameter": { fg: "#
|
|
98644
|
-
"variable.builtin": { fg: "#
|
|
98645
|
-
constant: { fg: "#
|
|
98646
|
-
"constant.builtin": { fg: "#
|
|
98643
|
+
"variable.parameter": { fg: "#F1FA8C" },
|
|
98644
|
+
"variable.builtin": { fg: "#FF79C6" },
|
|
98645
|
+
constant: { fg: "#F1FA8C" },
|
|
98646
|
+
"constant.builtin": { fg: "#FF79C6" },
|
|
98647
98647
|
property: { fg: "#F5F5F4" },
|
|
98648
|
-
operator: { fg: "#
|
|
98648
|
+
operator: { fg: "#FF79C6" },
|
|
98649
98649
|
"punctuation.delimiter": { fg: "#A1A1AA" },
|
|
98650
98650
|
"punctuation.bracket": { fg: "#A1A1AA" },
|
|
98651
|
-
boolean: { fg: "#
|
|
98652
|
-
label: { fg: "#
|
|
98651
|
+
boolean: { fg: "#F1FA8C" },
|
|
98652
|
+
label: { fg: "#50FA7B" },
|
|
98653
|
+
tag: { fg: "#FF5555" },
|
|
98654
|
+
"tag.attribute": { fg: "#FF79C6" },
|
|
98655
|
+
"tag.delimiter": { fg: "#FF79C6" },
|
|
98653
98656
|
"markup.heading": { fg: "#C792EA", bold: true },
|
|
98654
98657
|
"markup.italic": { italic: true },
|
|
98655
98658
|
"markup.strong": { fg: "#C792EA", bold: true },
|