@sanity/cli 3.52.5-canary.18 → 3.52.5-canary.41
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/bin/xdg-open +1066 -0
- package/lib/_chunks-cjs/cli.js +3406 -5148
- package/lib/_chunks-cjs/cli.js.map +1 -1
- package/lib/index.d.mts +1 -0
- package/lib/index.d.ts +1 -0
- package/package.json +6 -6
- package/src/outputters/cliOutputter.ts +2 -2
- package/src/types.ts +2 -0
package/lib/index.d.mts
CHANGED
package/lib/index.d.ts
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sanity/cli",
|
3
|
-
"version": "3.52.5-canary.
|
3
|
+
"version": "3.52.5-canary.41+812e1e3930",
|
4
4
|
"description": "Sanity CLI tool for managing Sanity installations, managing plugins, schemas and datasets",
|
5
5
|
"keywords": [
|
6
6
|
"sanity",
|
@@ -58,9 +58,9 @@
|
|
58
58
|
"dependencies": {
|
59
59
|
"@babel/traverse": "^7.23.5",
|
60
60
|
"@sanity/client": "^6.21.1",
|
61
|
-
"@sanity/codegen": "3.52.5-canary.
|
61
|
+
"@sanity/codegen": "3.52.5-canary.41+812e1e3930",
|
62
62
|
"@sanity/telemetry": "^0.7.7",
|
63
|
-
"@sanity/util": "3.52.5-canary.
|
63
|
+
"@sanity/util": "3.52.5-canary.41+812e1e3930",
|
64
64
|
"chalk": "^4.1.2",
|
65
65
|
"debug": "^4.3.4",
|
66
66
|
"decompress": "^4.2.0",
|
@@ -82,7 +82,7 @@
|
|
82
82
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
83
83
|
"@sanity/eslint-config-studio": "^4.0.0",
|
84
84
|
"@sanity/generate-help-url": "^3.0.0",
|
85
|
-
"@sanity/types": "3.52.5-canary.
|
85
|
+
"@sanity/types": "3.52.5-canary.41+812e1e3930",
|
86
86
|
"@types/babel__traverse": "^7.20.5",
|
87
87
|
"@types/configstore": "^5.0.1",
|
88
88
|
"@types/cpx": "^1.5.2",
|
@@ -117,7 +117,7 @@
|
|
117
117
|
"lodash": "^4.17.21",
|
118
118
|
"minimist": "^1.2.5",
|
119
119
|
"open": "^8.4.0",
|
120
|
-
"ora": "^
|
120
|
+
"ora": "^8.0.1",
|
121
121
|
"p-filter": "^2.1.0",
|
122
122
|
"p-timeout": "^4.0.0",
|
123
123
|
"preferred-pm": "^3.0.3",
|
@@ -135,5 +135,5 @@
|
|
135
135
|
"engines": {
|
136
136
|
"node": ">=18"
|
137
137
|
},
|
138
|
-
"gitHead": "
|
138
|
+
"gitHead": "812e1e393037e12bad90533b992ab4043396b21a"
|
139
139
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/* eslint-disable no-console */
|
2
2
|
import chalk from 'chalk'
|
3
|
-
import ora, {type Ora} from 'ora'
|
3
|
+
import ora, {type Options, type Ora} from 'ora'
|
4
4
|
|
5
5
|
let isFirstClear = true
|
6
6
|
|
@@ -28,7 +28,7 @@ export default {
|
|
28
28
|
isFirstClear = false
|
29
29
|
},
|
30
30
|
|
31
|
-
spinner(options:
|
31
|
+
spinner(options: Options | string): Ora {
|
32
32
|
return ora(options)
|
33
33
|
},
|
34
34
|
}
|