@qualcomm-ui/mdx-vite 2.14.0 → 2.14.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.
@@ -1 +1 @@
1
- {"version":3,"file":"angular-demo-plugin.d.ts","sourceRoot":"","sources":["../../src/angular-demo-plugin/angular-demo-plugin.ts"],"names":[],"mappings":"AAQA,OAAO,EAGL,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC/B,MAAM,OAAO,CAAA;AAEd,OAAO,KAAK,EAAC,MAAM,EAAgB,MAAM,MAAM,CAAA;AAiB/C,MAAM,WAAW,wBAAwB;IACvC,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAC/B;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACpC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE;QACN,IAAI,EACA,oBAAoB,GACpB,iBAAiB,GACjB,yBAAyB,GACzB,MAAM,CAAA;QACV,KAAK,EACD,oBAAoB,GACpB,iBAAiB,GACjB,yBAAyB,GACzB,MAAM,CAAA;KACX,CAAA;IACD;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAA;CAClC;AAmCD,wBAAgB,iBAAiB,CAAC,EAChC,WAAwC,EACxC,WAAW,EACX,SAAwB,EACxB,KAGC,EACD,uBAAuB,GACxB,GAAE,wBAA6B,GAAG,MAAM,CAq+BxC"}
1
+ {"version":3,"file":"angular-demo-plugin.d.ts","sourceRoot":"","sources":["../../src/angular-demo-plugin/angular-demo-plugin.ts"],"names":[],"mappings":"AAQA,OAAO,EAGL,KAAK,iBAAiB,EACtB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC/B,MAAM,OAAO,CAAA;AAEd,OAAO,KAAK,EAAC,MAAM,EAAgB,MAAM,MAAM,CAAA;AAiB/C,MAAM,WAAW,wBAAwB;IACvC,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;IAC/B;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACpC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE;QACN,IAAI,EACA,oBAAoB,GACpB,iBAAiB,GACjB,yBAAyB,GACzB,MAAM,CAAA;QACV,KAAK,EACD,oBAAoB,GACpB,iBAAiB,GACjB,yBAAyB,GACzB,MAAM,CAAA;KACX,CAAA;IACD;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,OAAO,CAAA;CAClC;AAmCD,wBAAgB,iBAAiB,CAAC,EAChC,WAAwC,EACxC,WAAW,EACX,SAAwB,EACxB,KAGC,EACD,uBAAuB,GACxB,GAAE,wBAA6B,GAAG,MAAM,CA0+BxC"}
package/dist/cli.js CHANGED
@@ -6069,7 +6069,7 @@ var KnowledgeGenerator = class {
6069
6069
  return docProps;
6070
6070
  } catch (error) {
6071
6071
  if (this.config.verbose) {
6072
- console.log(`Error loading doc props: ${error}`);
6072
+ console.log("Error loading doc props", error);
6073
6073
  }
6074
6074
  return null;
6075
6075
  }
@@ -6166,7 +6166,7 @@ var KnowledgeGenerator = class {
6166
6166
  }
6167
6167
  } catch (error) {
6168
6168
  if (this.config.verbose) {
6169
- console.log(` Error processing ${normalizedPath}: ${error}`);
6169
+ console.log(`Error processing ${normalizedPath}`, error);
6170
6170
  }
6171
6171
  }
6172
6172
  return modules;
@@ -6523,7 +6523,7 @@ ${propsToDefinitionList(outputs)}`);
6523
6523
  });
6524
6524
  } catch (error) {
6525
6525
  if (this.config.verbose) {
6526
- console.log(` Error reading demo ${demoName}: ${error}`);
6526
+ console.log(`Error reading demo ${demoName}`, error);
6527
6527
  }
6528
6528
  if (parent && index !== void 0) {
6529
6529
  parent.children.splice(index, 1);
@@ -6613,7 +6613,7 @@ ${propsToDefinitionList(outputs)}`);
6613
6613
  throw error;
6614
6614
  }
6615
6615
  }
6616
- async generateLlmsTxt(pages) {
6616
+ generateLlmsTxt(pages) {
6617
6617
  const lines = [
6618
6618
  getIntroLines(this.config.name, this.config.description)
6619
6619
  ];
@@ -6636,7 +6636,7 @@ ${propsToDefinitionList(outputs)}`);
6636
6636
  return lines.join("\n");
6637
6637
  }
6638
6638
  async generateAggregatedOutput(processedPages, pages) {
6639
- const llmsTxtContent = await this.generateLlmsTxt(processedPages);
6639
+ const llmsTxtContent = this.generateLlmsTxt(processedPages);
6640
6640
  await mkdir2(dirname(this.config.outputPath), { recursive: true }).catch(
6641
6641
  () => {
6642
6642
  }