stepzen 0.60.0-experimental.2c0bc73 → 0.60.0-experimental.47e5246
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 +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +20 -7
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ $ npm install -g stepzen
|
|
|
36
36
|
$ stepzen COMMAND
|
|
37
37
|
running command...
|
|
38
38
|
$ stepzen (--version|-v)
|
|
39
|
-
stepzen/0.60.0-experimental.
|
|
39
|
+
stepzen/0.60.0-experimental.47e5246 linux-x64 node-v22.23.1
|
|
40
40
|
$ stepzen --help [COMMAND]
|
|
41
41
|
USAGE
|
|
42
42
|
$ stepzen COMMAND
|
|
@@ -176,7 +176,7 @@ DESCRIPTION
|
|
|
176
176
|
Display help for stepzen.
|
|
177
177
|
```
|
|
178
178
|
|
|
179
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.
|
|
179
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/6.2.53/src/commands/help.ts)_
|
|
180
180
|
|
|
181
181
|
## `stepzen import [SOURCE]`
|
|
182
182
|
|
|
@@ -1144,7 +1144,7 @@ FLAG DESCRIPTIONS
|
|
|
1144
1144
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
1145
1145
|
```
|
|
1146
1146
|
|
|
1147
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.2.
|
|
1147
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/2.2.50/src/commands/version.ts)_
|
|
1148
1148
|
|
|
1149
1149
|
## `stepzen whoami`
|
|
1150
1150
|
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stepzen",
|
|
3
3
|
"description": "The StepZen CLI",
|
|
4
|
-
"version": "0.60.0-experimental.
|
|
4
|
+
"version": "0.60.0-experimental.47e5246",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Darren Waddell <darren@stepzen.com>",
|
|
7
7
|
"contributors": [
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"@oclif/plugin-version": "^2.2.41",
|
|
33
33
|
"@segment/analytics-node": "^2.2.0",
|
|
34
34
|
"@soluble/dsn-parser": "^1.7.5",
|
|
35
|
-
"@stepzen/fetch": "0.60.0-experimental.
|
|
36
|
-
"@stepzen/graphiql-proxy": "0.60.0-experimental.
|
|
37
|
-
"@stepzen/sdk": "0.60.0-experimental.
|
|
38
|
-
"@stepzen/transpiler": "0.60.0-experimental.
|
|
35
|
+
"@stepzen/fetch": "0.60.0-experimental.47e5246",
|
|
36
|
+
"@stepzen/graphiql-proxy": "0.60.0-experimental.47e5246",
|
|
37
|
+
"@stepzen/sdk": "0.60.0-experimental.47e5246",
|
|
38
|
+
"@stepzen/transpiler": "0.60.0-experimental.47e5246",
|
|
39
39
|
"chalk": "^4.1.2",
|
|
40
40
|
"chokidar": "^3.6.0",
|
|
41
41
|
"compare-versions": "^6.1.1",
|
|
@@ -138,6 +138,9 @@
|
|
|
138
138
|
"@oclif/core": {
|
|
139
139
|
"password-prompt": {
|
|
140
140
|
"cross-spawn": "^7.0.0"
|
|
141
|
+
},
|
|
142
|
+
"minimatch": {
|
|
143
|
+
"brace-expansion": "^5.0.7"
|
|
141
144
|
}
|
|
142
145
|
},
|
|
143
146
|
"@oclif/plugin-plugins": {
|
|
@@ -154,11 +157,21 @@
|
|
|
154
157
|
"lodash": "^4.18.0",
|
|
155
158
|
"picomatch": "^4.0.4",
|
|
156
159
|
"minimatch": {
|
|
157
|
-
"brace-expansion": "^2.
|
|
160
|
+
"brace-expansion": "^2.1.2"
|
|
158
161
|
},
|
|
159
162
|
"@oclif/plugin-version": {
|
|
160
163
|
"@oclif/core": "^4.10.5"
|
|
164
|
+
},
|
|
165
|
+
"nodemon": {
|
|
166
|
+
"minimatch": {
|
|
167
|
+
"brace-expansion": "^5.0.7"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
"test-exclude": {
|
|
171
|
+
"minimatch": {
|
|
172
|
+
"brace-expansion": "^5.0.7"
|
|
173
|
+
}
|
|
161
174
|
}
|
|
162
175
|
},
|
|
163
|
-
"gitHead": "
|
|
176
|
+
"gitHead": "47e524624ca2ac1d23b62ce5d09c895f8a0fb797"
|
|
164
177
|
}
|