@sanity/runtime-cli 15.0.5 → 15.1.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/README.md +20 -20
- package/dist/commands/blueprints/plan.js +0 -1
- package/dist/cores/blueprints/deploy.js +8 -3
- package/dist/cores/blueprints/destroy.js +3 -3
- package/dist/cores/blueprints/plan.js +7 -1
- package/dist/server/static/components/app.css +29 -570
- package/dist/server/static/index.html +1 -0
- package/dist/server/static/vendor/design-tokens/color.css +107 -0
- package/dist/server/static/vendor/design-tokens/container.css +12 -0
- package/dist/server/static/vendor/design-tokens/fontFamily.css +8 -0
- package/dist/server/static/vendor/design-tokens/fontWeight.css +10 -0
- package/dist/server/static/vendor/design-tokens/index.css +14 -0
- package/dist/server/static/vendor/design-tokens/radius.css +14 -0
- package/dist/server/static/vendor/design-tokens/shadow.css +12 -0
- package/dist/server/static/vendor/design-tokens/space.css +16 -0
- package/dist/server/static/vendor/design-tokens/typography.css +32 -0
- package/dist/utils/blueprints/{log-hints.d.ts → hints.d.ts} +7 -7
- package/dist/utils/blueprints/{log-hints.js → hints.js} +9 -6
- package/oclif.manifest.json +1 -1
- package/package.json +8 -4
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
<title>Sanity Functions</title>
|
|
6
6
|
<link href="./vendor/m-.woff2" rel="preload" as="font" crossorigin>
|
|
7
7
|
<link href="./vendor/m-.css" rel="stylesheet">
|
|
8
|
+
<link href="./vendor/design-tokens/index.css" rel="stylesheet">
|
|
8
9
|
<link href="./components/app.css" rel="stylesheet">
|
|
9
10
|
<link rel="icon" type="image/svg+xml" href="favicon.svg" media="(prefers-color-scheme: light)">
|
|
10
11
|
<link rel="icon" type="image/svg+xml" href="favicon-dark.svg" media="(prefers-color-scheme: dark)">
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--black: #0d0e12;
|
|
7
|
+
--blue-100: #e5edff;
|
|
8
|
+
--blue-200: #dbe5ff;
|
|
9
|
+
--blue-300: #a8bfff;
|
|
10
|
+
--blue-400: #7595ff;
|
|
11
|
+
--blue-50: #f5f8ff;
|
|
12
|
+
--blue-500: #556bfc;
|
|
13
|
+
--blue-600: #4043e7;
|
|
14
|
+
--blue-700: #2927aa;
|
|
15
|
+
--blue-800: #192457;
|
|
16
|
+
--blue-900: #161a41;
|
|
17
|
+
--blue-950: #101228;
|
|
18
|
+
--cyan-100: #c5fcfc;
|
|
19
|
+
--cyan-200: #96f8f8;
|
|
20
|
+
--cyan-300: #62efef;
|
|
21
|
+
--cyan-400: #18e2e2;
|
|
22
|
+
--cyan-50: #e7fefe;
|
|
23
|
+
--cyan-500: #04b8be;
|
|
24
|
+
--cyan-600: #037782;
|
|
25
|
+
--cyan-700: #024950;
|
|
26
|
+
--cyan-800: #042f34;
|
|
27
|
+
--cyan-900: #072227;
|
|
28
|
+
--cyan-950: #0d181c;
|
|
29
|
+
--gray-100: #eeeef1;
|
|
30
|
+
--gray-200: #e3e4e8;
|
|
31
|
+
--gray-300: #bbbdc9;
|
|
32
|
+
--gray-400: #9499ad;
|
|
33
|
+
--gray-50: #f6f6f8;
|
|
34
|
+
--gray-500: #727892;
|
|
35
|
+
--gray-600: #515870;
|
|
36
|
+
--gray-700: #383d51;
|
|
37
|
+
--gray-800: #252837;
|
|
38
|
+
--gray-900: #1b1d27;
|
|
39
|
+
--gray-950: #13141b;
|
|
40
|
+
--green-100: #dcfce7;
|
|
41
|
+
--green-200: #bbf7d0;
|
|
42
|
+
--green-300: #86efac;
|
|
43
|
+
--green-400: #4ade80;
|
|
44
|
+
--green-50: #f0fdf4;
|
|
45
|
+
--green-500: #22c55e;
|
|
46
|
+
--green-600: #01794f;
|
|
47
|
+
--green-700: #015133;
|
|
48
|
+
--green-800: #023120;
|
|
49
|
+
--green-900: #06231a;
|
|
50
|
+
--green-950: #071715;
|
|
51
|
+
--magenta-100: #fde8f1;
|
|
52
|
+
--magenta-200: #fcd5e8;
|
|
53
|
+
--magenta-300: #f7a5cc;
|
|
54
|
+
--magenta-400: #f06dac;
|
|
55
|
+
--magenta-50: #fef6f9;
|
|
56
|
+
--magenta-500: #e03d8d;
|
|
57
|
+
--magenta-600: #c41e72;
|
|
58
|
+
--magenta-700: #8c1452;
|
|
59
|
+
--magenta-800: #560d34;
|
|
60
|
+
--magenta-900: #380b24;
|
|
61
|
+
--magenta-950: #230717;
|
|
62
|
+
--orange-100: #ffecd9;
|
|
63
|
+
--orange-200: #ffdfc0;
|
|
64
|
+
--orange-300: #ffbe85;
|
|
65
|
+
--orange-400: #ff9c47;
|
|
66
|
+
--orange-50: #fff7f0;
|
|
67
|
+
--orange-500: #f57c1f;
|
|
68
|
+
--orange-600: #d95f07;
|
|
69
|
+
--orange-700: #9e4204;
|
|
70
|
+
--orange-800: #4f2204;
|
|
71
|
+
--orange-900: #341803;
|
|
72
|
+
--orange-950: #200f02;
|
|
73
|
+
--purple-100: #f1ebff;
|
|
74
|
+
--purple-200: #ece1fe;
|
|
75
|
+
--purple-300: #ccb1fc;
|
|
76
|
+
--purple-400: #b087f7;
|
|
77
|
+
--purple-50: #f8f5ff;
|
|
78
|
+
--purple-500: #8f57ef;
|
|
79
|
+
--purple-600: #721fe5;
|
|
80
|
+
--purple-700: #4c1a9e;
|
|
81
|
+
--purple-800: #2f1862;
|
|
82
|
+
--purple-900: #23173f;
|
|
83
|
+
--purple-950: #181128;
|
|
84
|
+
--red-100: #ffe5e5;
|
|
85
|
+
--red-200: #ffd5d5;
|
|
86
|
+
--red-300: #ffaaaa;
|
|
87
|
+
--red-400: #ff7b7b;
|
|
88
|
+
--red-50: #fff5f5;
|
|
89
|
+
--red-500: #f94f4f;
|
|
90
|
+
--red-600: #e42f2f;
|
|
91
|
+
--red-700: #a81e1e;
|
|
92
|
+
--red-800: #551212;
|
|
93
|
+
--red-900: #380d0d;
|
|
94
|
+
--red-950: #230808;
|
|
95
|
+
--white: #ffffff;
|
|
96
|
+
--yellow-100: #fef9c3;
|
|
97
|
+
--yellow-200: #fef08a;
|
|
98
|
+
--yellow-300: #fde047;
|
|
99
|
+
--yellow-400: #facc15;
|
|
100
|
+
--yellow-50: #fefce8;
|
|
101
|
+
--yellow-500: #eab308;
|
|
102
|
+
--yellow-600: #ca8a04;
|
|
103
|
+
--yellow-700: #a16207;
|
|
104
|
+
--yellow-800: #713f12;
|
|
105
|
+
--yellow-900: #422006;
|
|
106
|
+
--yellow-950: #27130a;
|
|
107
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
|
|
7
|
+
--sans: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Liberation Sans', sans-serif;
|
|
8
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @sanity/css
|
|
3
|
+
* Do not edit directly, this file was auto-generated.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
@import "./color.css";
|
|
7
|
+
@import "./container.css";
|
|
8
|
+
@import "./fontFamily.css";
|
|
9
|
+
@import "./fontWeight.css";
|
|
10
|
+
@import "./index.css";
|
|
11
|
+
@import "./radius.css";
|
|
12
|
+
@import "./shadow.css";
|
|
13
|
+
@import "./space.css";
|
|
14
|
+
@import "./typography.css";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--shadow0: 0px 0px 0px 0px rgb(37.6% 37.6% 37.6% / 0);
|
|
7
|
+
--shadow1: 0px 0px 0px 0.5px rgb(37.6% 37.6% 37.6% / 0.25), 0px 0px 0px 0px rgb(37.6% 37.6% 37.6% / 0.2), 0px 0px 0px 0px rgb(37.6% 37.6% 37.6% / 0.14), 0px 0px 0px 0px rgb(37.6% 37.6% 37.6% / 0.12);
|
|
8
|
+
--shadow2: 0px 0px 0px 0.5px rgb(37.6% 37.6% 37.6% / 0.25), 0px 2px 3px -1px rgb(37.6% 37.6% 37.6% / 0.2), 0px 4px 6px 0px rgb(37.6% 37.6% 37.6% / 0.14), 0px 1px 12px 1px rgb(37.6% 37.6% 37.6% / 0.12);
|
|
9
|
+
--shadow3: 0px 0px 0px 0.5px rgb(37.6% 37.6% 37.6% / 0.25), 0px 7px 8px -4px rgb(37.6% 37.6% 37.6% / 0.2), 0px 12px 17px 2px rgb(37.6% 37.6% 37.6% / 0.14), 0px 5px 22px 4px rgb(37.6% 37.6% 37.6% / 0.12);
|
|
10
|
+
--shadow4: 0px 0px 0px 0.5px rgb(37.6% 37.6% 37.6% / 0.25), 0px 9px 11px -5px rgb(37.6% 37.6% 37.6% / 0.2), 0px 18px 28px 2px rgb(37.6% 37.6% 37.6% / 0.14), 0px 7px 34px 6px rgb(37.6% 37.6% 37.6% / 0.12);
|
|
11
|
+
--shadow5: 0px 0px 0px 0.5px rgb(37.6% 37.6% 37.6% / 0.25), 0px 11px 15px -7px rgb(37.6% 37.6% 37.6% / 0.2), 0px 24px 38px 3px rgb(37.6% 37.6% 37.6% / 0.14), 0px 9px 46px 8px rgb(37.6% 37.6% 37.6% / 0.12);
|
|
12
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--space-0: 0px;
|
|
7
|
+
--space-1: 4px;
|
|
8
|
+
--space-2: 8px;
|
|
9
|
+
--space-3: 12px;
|
|
10
|
+
--space-4: 20px;
|
|
11
|
+
--space-5: 32px;
|
|
12
|
+
--space-6: 52px;
|
|
13
|
+
--space-7: 84px;
|
|
14
|
+
--space-8: 136px;
|
|
15
|
+
--space-9: 220px;
|
|
16
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
--body-0: 400 10px/1.5 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
7
|
+
--body-1: 400 13px/1.5 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
8
|
+
--body-2: 400 16px/1.5 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
9
|
+
--body-3: 400 18.75px/1.5 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
10
|
+
--body-4: 400 21.5px/1.5 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
11
|
+
--code-0: 400 10px/1.5 ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
|
|
12
|
+
--code-1: 400 13px/1.5 ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
|
|
13
|
+
--code-2: 400 16px/1.5 ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
|
|
14
|
+
--code-3: 400 18.75px/1.5 ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
|
|
15
|
+
--code-4: 400 21.5px/1.5 ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
|
|
16
|
+
--heading-0: 400 13px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
17
|
+
--heading-1: 400 16px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
18
|
+
--heading-2: 400 21px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
19
|
+
--heading-3: 400 27px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
20
|
+
--heading-4: 400 33px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
21
|
+
--heading-5: 400 38px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
22
|
+
--heading-6: 400 48px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
23
|
+
--heading-7: 400 63px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
24
|
+
--heading-8: 400 84px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
25
|
+
--heading-9: 400 112px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
26
|
+
--label-0: 400 8.1px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
27
|
+
--label-1: 400 9.5px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
28
|
+
--label-2: 400 10.8px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
29
|
+
--label-3: 400 12.25px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
30
|
+
--label-4: 400 13.6px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
31
|
+
--label-5: 400 15px/1.25 Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Liberation Sans, sans-serif;
|
|
32
|
+
}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import type { BlueprintLog } from '../types.js';
|
|
2
2
|
/**
|
|
3
|
-
* A pattern that matches a
|
|
4
|
-
*
|
|
5
|
-
* capture groups are forwarded to the factory so suggestions can include dynamic values
|
|
3
|
+
* A pattern that matches a message and produces oclif suggestions.
|
|
4
|
+
* Capture groups are forwarded to the factory so suggestions can include dynamic values.
|
|
6
5
|
*/
|
|
7
|
-
type
|
|
6
|
+
type HintPattern = [RegExp, (match: RegExpMatchArray, bin: string) => string[]];
|
|
8
7
|
/**
|
|
9
8
|
* Patterns matched against ERROR/FATAL log entries during streaming operations
|
|
10
9
|
* like deploy and destroy. Each entry is a [regex, suggestionFactory] tuple.
|
|
11
10
|
*
|
|
12
11
|
* Add new patterns here -- no other code changes required.
|
|
13
12
|
*/
|
|
14
|
-
export declare const
|
|
13
|
+
export declare const HINT_PATTERNS: HintPattern[];
|
|
15
14
|
/**
|
|
16
15
|
* Creates a collector to create suggestions
|
|
17
16
|
* Use getSuggestions() after all logs are inspected
|
|
18
17
|
*/
|
|
19
|
-
export declare function
|
|
18
|
+
export declare function createHintCollector(bin: string): {
|
|
20
19
|
/** Check a log entry against hint patterns; only ERROR/FATAL levels are inspected. */
|
|
21
|
-
|
|
20
|
+
inspectLog(log: BlueprintLog): void;
|
|
21
|
+
inspectMessage(message: string): void;
|
|
22
22
|
/** Return unique collected suggestions. */
|
|
23
23
|
getSuggestions(): string[];
|
|
24
24
|
};
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Add new patterns here -- no other code changes required.
|
|
6
6
|
*/
|
|
7
|
-
export const
|
|
7
|
+
export const HINT_PATTERNS = [
|
|
8
8
|
[
|
|
9
9
|
// tester
|
|
10
10
|
/\[TEST\] '(.+)' TEST/,
|
|
@@ -12,7 +12,7 @@ export const LOG_HINT_PATTERNS = [
|
|
|
12
12
|
],
|
|
13
13
|
[
|
|
14
14
|
// Function requires organization scope
|
|
15
|
-
|
|
15
|
+
/must be attached to an organization scoped stack/,
|
|
16
16
|
(_match, bin) => [
|
|
17
17
|
`Run \`npx ${bin} blueprints promote\` to move from project to organization scope.`,
|
|
18
18
|
],
|
|
@@ -22,16 +22,19 @@ export const LOG_HINT_PATTERNS = [
|
|
|
22
22
|
* Creates a collector to create suggestions
|
|
23
23
|
* Use getSuggestions() after all logs are inspected
|
|
24
24
|
*/
|
|
25
|
-
export function
|
|
25
|
+
export function createHintCollector(bin) {
|
|
26
26
|
const collected = [];
|
|
27
27
|
return {
|
|
28
28
|
/** Check a log entry against hint patterns; only ERROR/FATAL levels are inspected. */
|
|
29
|
-
|
|
29
|
+
inspectLog(log) {
|
|
30
30
|
const level = log.level.toUpperCase();
|
|
31
31
|
if (level !== 'ERROR' && level !== 'FATAL')
|
|
32
32
|
return;
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
this.inspectMessage(log.message);
|
|
34
|
+
},
|
|
35
|
+
inspectMessage(message) {
|
|
36
|
+
for (const [pattern, factory] of HINT_PATTERNS) {
|
|
37
|
+
const match = message.match(pattern);
|
|
35
38
|
if (match) {
|
|
36
39
|
collected.push(...factory(match, bin));
|
|
37
40
|
break; // first matching pattern wins per entry
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/runtime-cli",
|
|
3
3
|
"description": "Sanity's Runtime CLI for Blueprints and Functions",
|
|
4
|
-
"version": "15.0
|
|
4
|
+
"version": "15.1.0",
|
|
5
5
|
"author": "Sanity Runtime Team",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
@@ -36,8 +36,9 @@
|
|
|
36
36
|
"build:rollup": "rollup -c",
|
|
37
37
|
"build:oclif": "oclif manifest && oclif readme",
|
|
38
38
|
"build:ts": "shx rm -rf dist *.tsbuildinfo && tsc -b",
|
|
39
|
-
"build:static": "npm run copy:wrapper && npm run copy:server",
|
|
39
|
+
"build:static": "npm run copy:wrapper && npm run copy:design-tokens && npm run copy:server",
|
|
40
40
|
"clean": "shx rm -rf dist oclif.manifest.json",
|
|
41
|
+
"copy:design-tokens": "shx rm -rf ./src/server/static/vendor/design-tokens && shx cp -r ./node_modules/@sanity-labs/design-tokens/dist/css ./src/server/static/vendor/design-tokens",
|
|
41
42
|
"copy:server": "shx cp -r ./src/server/static ./dist/server",
|
|
42
43
|
"copy:wrapper": "shx cp ./src/utils/child-process-wrapper.js ./dist/utils/child-process-wrapper.js",
|
|
43
44
|
"lint": "biome ci",
|
|
@@ -45,10 +46,12 @@
|
|
|
45
46
|
"lint:fix": "npm run lint:write",
|
|
46
47
|
"prepare": "npm run build",
|
|
47
48
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
48
|
-
"test": "npm run test:
|
|
49
|
+
"test": "vitest run && npm run test:depmgmt && npm run lint",
|
|
49
50
|
"test:depmgmt": "vitest run --config ./test-depmgmt/vitest.config.ts",
|
|
51
|
+
"test:coverage": "vitest run --coverage --coverage.include \"runtime-cli/src/**/*\"",
|
|
52
|
+
"test:scenarios": "vitest run test/scenarios",
|
|
53
|
+
"test:unit": "vitest run --exclude \"test/scenarios/**/*\"",
|
|
50
54
|
"test:vitest": "vitest run",
|
|
51
|
-
"test:coverage": "npm run test:vitest -- --coverage --coverage.include \"runtime-cli/src/**/*\"",
|
|
52
55
|
"typecheck": "tsc --project tsconfig.typecheck.json",
|
|
53
56
|
"watch": "tsc --watch"
|
|
54
57
|
},
|
|
@@ -58,6 +61,7 @@
|
|
|
58
61
|
"@inquirer/prompts": "^8.4.2",
|
|
59
62
|
"@oclif/core": "^4.11.0",
|
|
60
63
|
"@oclif/plugin-help": "^6.2.46",
|
|
64
|
+
"@sanity-labs/design-tokens": "^0.0.2-alpha.2",
|
|
61
65
|
"@sanity/blueprints": "^0.18.0",
|
|
62
66
|
"@sanity/blueprints-parser": "^0.4.0",
|
|
63
67
|
"@sanity/client": "^7.22.0",
|