@stackable-labs/cli-app-extension 1.41.0 → 1.41.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 +2 -1
- package/package.json +1 -2
package/dist/index.js
CHANGED
|
@@ -6,7 +6,6 @@ import { unlink, readFile, writeFile, mkdir, readdir, rm } from 'fs/promises';
|
|
|
6
6
|
import { join, dirname } from 'path';
|
|
7
7
|
import Spinner5 from 'ink-spinner';
|
|
8
8
|
import { useState, useCallback, useEffect, useRef, useMemo } from 'react';
|
|
9
|
-
import { delay } from '@stackable-labs/lib-utils-js';
|
|
10
9
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
11
10
|
import TextInput from 'ink-text-input';
|
|
12
11
|
import { execFile, spawn } from 'child_process';
|
|
@@ -22,6 +21,8 @@ import open from 'open';
|
|
|
22
21
|
import { homedir } from 'os';
|
|
23
22
|
import https from 'https';
|
|
24
23
|
|
|
24
|
+
// ../../lib/utils-js/src/promise.ts
|
|
25
|
+
var delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
25
26
|
var WORDMARK = [
|
|
26
27
|
" _ _ _ _ ",
|
|
27
28
|
" ___| |_ __ _ ___| | ____ _| |__ | | ___",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stackable-labs/cli-app-extension",
|
|
3
|
-
"version": "1.41.
|
|
3
|
+
"version": "1.41.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"bin": {
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"LICENSE"
|
|
13
13
|
],
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@stackable-labs/lib-utils-js": "workspace:*",
|
|
16
15
|
"adm-zip": "0.x",
|
|
17
16
|
"clipboardy": "5.x",
|
|
18
17
|
"cloudflared": "0.x",
|