@principal-ade/dynamic-file-tree 0.1.71 → 0.1.72
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.mjs +7 -7
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2226,7 +2226,7 @@ var getDefaultDragConfig = (node) => {
|
|
|
2226
2226
|
const canvasType = node.canvas.type === "otel" ? "OTEL Canvas" : "Canvas";
|
|
2227
2227
|
const content = [
|
|
2228
2228
|
`# ${canvasType}: ${node.canvas.name}`,
|
|
2229
|
-
`#
|
|
2229
|
+
`# For more information: ${CLI}`,
|
|
2230
2230
|
node.canvas.path
|
|
2231
2231
|
].join(`
|
|
2232
2232
|
`);
|
|
@@ -2250,7 +2250,7 @@ var getDefaultDragConfig = (node) => {
|
|
|
2250
2250
|
if (node.workflow) {
|
|
2251
2251
|
const content = [
|
|
2252
2252
|
`# Workflow: ${node.workflow.name}`,
|
|
2253
|
-
`#
|
|
2253
|
+
`# For more information: ${CLI}`,
|
|
2254
2254
|
node.workflow.path
|
|
2255
2255
|
].join(`
|
|
2256
2256
|
`);
|
|
@@ -2274,7 +2274,7 @@ var getDefaultDragConfig = (node) => {
|
|
|
2274
2274
|
if (node.markdownPath) {
|
|
2275
2275
|
const content = [
|
|
2276
2276
|
`# Overview: ${node.storyboard?.name || node.name}`,
|
|
2277
|
-
`#
|
|
2277
|
+
`# For more information: ${CLI}`,
|
|
2278
2278
|
node.markdownPath
|
|
2279
2279
|
].join(`
|
|
2280
2280
|
`);
|
|
@@ -2298,7 +2298,7 @@ var getDefaultDragConfig = (node) => {
|
|
|
2298
2298
|
const content = [
|
|
2299
2299
|
`# Storyboard: ${node.storyboard.name}`,
|
|
2300
2300
|
`# Contains ${node.storyboard.workflows.length} workflow(s)`,
|
|
2301
|
-
`#
|
|
2301
|
+
`# For more information: ${CLI}`,
|
|
2302
2302
|
node.storyboard.path
|
|
2303
2303
|
].join(`
|
|
2304
2304
|
`);
|
|
@@ -2810,7 +2810,7 @@ var getDefaultCanvasDragConfig = (node) => {
|
|
|
2810
2810
|
const canvasType = node.canvas.type === "otel" ? "OTEL Canvas" : "Canvas";
|
|
2811
2811
|
const content = [
|
|
2812
2812
|
`# ${canvasType}: ${node.canvas.name}`,
|
|
2813
|
-
`#
|
|
2813
|
+
`# For more information: ${CLI}`,
|
|
2814
2814
|
node.canvas.path
|
|
2815
2815
|
].join(`
|
|
2816
2816
|
`);
|
|
@@ -2833,7 +2833,7 @@ var getDefaultCanvasDragConfig = (node) => {
|
|
|
2833
2833
|
if (node.markdownPath) {
|
|
2834
2834
|
const content = [
|
|
2835
2835
|
`# Overview: ${node.canvas?.name || node.name}`,
|
|
2836
|
-
`#
|
|
2836
|
+
`# For more information: ${CLI}`,
|
|
2837
2837
|
node.markdownPath
|
|
2838
2838
|
].join(`
|
|
2839
2839
|
`);
|
|
@@ -2857,7 +2857,7 @@ var getDefaultCanvasDragConfig = (node) => {
|
|
|
2857
2857
|
const folderPath = node.canvas.path.replace(/\/[^/]+$/, "");
|
|
2858
2858
|
const content = [
|
|
2859
2859
|
`# Canvas Folder: ${node.canvas.name}`,
|
|
2860
|
-
`#
|
|
2860
|
+
`# For more information: ${CLI}`,
|
|
2861
2861
|
folderPath
|
|
2862
2862
|
].join(`
|
|
2863
2863
|
`);
|
package/package.json
CHANGED