sim-setup 1.0.0-preview.14.1 → 1.0.0-preview.16.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.
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -35244,7 +35244,10 @@ var RETRY_AFTER_MAX_MS = 30000;
|
|
|
35244
35244
|
function truncate(str, sliceLength, suffix = "...") {
|
|
35245
35245
|
return str.length > sliceLength ? str.slice(0, sliceLength) + suffix : str;
|
|
35246
35246
|
}
|
|
35247
|
-
var
|
|
35247
|
+
var MARKDOWN_ESCAPABLE;
|
|
35248
|
+
var init_string = __esm(() => {
|
|
35249
|
+
MARKDOWN_ESCAPABLE = new Set("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~");
|
|
35250
|
+
});
|
|
35248
35251
|
|
|
35249
35252
|
// src/cli-auth.ts
|
|
35250
35253
|
import { spawnSync as spawnSync5 } from "node:child_process";
|