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.
Files changed (2) hide show
  1. package/dist/index.js +27 -24
  2. 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, "markup.raw"],
47517
+ [/<\/?(\w[\w-]*)[^>]*\/?>/g, "tag"],
47518
47518
  [/&lt;!?--&gt;/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.10",
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: "#C792EA" },
98629
- "keyword.control": { fg: "#C792EA" },
98630
- "keyword.import": { fg: "#C792EA" },
98631
- "keyword.function": { fg: "#F59E0B" },
98632
- string: { fg: "#FBBF24" },
98633
- "string.special": { fg: "#FBBF24" },
98634
- number: { fg: "#A78BFA" },
98635
- "number.float": { fg: "#A78BFA" },
98636
- comment: { fg: "#78716C", italic: true },
98637
- function: { fg: "#4ADE80" },
98638
- "function.call": { fg: "#4ADE80" },
98639
- "function.method": { fg: "#4ADE80" },
98640
- type: { fg: "#22D3EE" },
98641
- "type.builtin": { fg: "#22D3EE" },
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: "#FDBA74" },
98644
- "variable.builtin": { fg: "#F5F5F4" },
98645
- constant: { fg: "#A78BFA" },
98646
- "constant.builtin": { fg: "#C792EA" },
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: "#F472B6" },
98648
+ operator: { fg: "#FF79C6" },
98649
98649
  "punctuation.delimiter": { fg: "#A1A1AA" },
98650
98650
  "punctuation.bracket": { fg: "#A1A1AA" },
98651
- boolean: { fg: "#A78BFA" },
98652
- label: { fg: "#FDBA74" },
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 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lupacode",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "AI-powered terminal coding assistant",
5
5
  "type": "module",
6
6
  "bin": {