@commandgarden/cli 2.8.0 → 2.10.0
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/main.js +6 -6
- package/node_modules/@commandgarden/app/dist/client/assets/{Slides-Dox8f5zS.js → Slides-D3xcxd9t.js} +1 -1
- package/node_modules/@commandgarden/app/dist/client/assets/{index-tU8HCc9V.js → index-_jNYPoLF.js} +2 -2
- package/node_modules/@commandgarden/app/dist/client/index.html +1 -1
- package/node_modules/@commandgarden/chrome/dist/manifest.json +1 -1
- package/node_modules/@commandgarden/chrome/dist/service-worker.js +3 -1
- package/node_modules/@commandgarden/chrome/dist/service-worker.js.map +2 -2
- package/node_modules/@commandgarden/chrome/package.json +1 -1
- package/node_modules/@commandgarden/daemon/connectors/gcs-kb-content.yaml +6 -3
- package/node_modules/@commandgarden/daemon/connectors/gcs-kb-pages.yaml +7 -0
- package/node_modules/@commandgarden/shared/dist/expression/filters.d.ts.map +1 -1
- package/node_modules/@commandgarden/shared/dist/expression/filters.js +2 -0
- package/node_modules/@commandgarden/shared/dist/expression/filters.js.map +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
11
11
|
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
|
|
12
12
|
<title>commandGarden</title>
|
|
13
|
-
<script type="module" crossorigin src="/assets/index-
|
|
13
|
+
<script type="module" crossorigin src="/assets/index-_jNYPoLF.js"></script>
|
|
14
14
|
<link rel="stylesheet" crossorigin href="/assets/index-DbqYLIqy.css">
|
|
15
15
|
</head>
|
|
16
16
|
<body>
|
|
@@ -6826,7 +6826,9 @@ var BUILT_IN_FILTERS = {
|
|
|
6826
6826
|
if (map2 == null || typeof map2 !== "object")
|
|
6827
6827
|
return void 0;
|
|
6828
6828
|
return map2[String(value)];
|
|
6829
|
-
}
|
|
6829
|
+
},
|
|
6830
|
+
slice: (value, start, end) => String(value).slice(Number(start), end != null ? Number(end) : void 0),
|
|
6831
|
+
replace: (value, search, replacement) => String(value).replace(String(search), String(replacement ?? ""))
|
|
6830
6832
|
};
|
|
6831
6833
|
|
|
6832
6834
|
// ../shared/dist/expression/evaluator.js
|