diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-04-24 16:13:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-24 16:13:33 -0400 |
commit | 63e0f3647f0153059d3bfc5e94e682085fc16609 (patch) | |
tree | 6c2a2d35b3240ecb3610a89b7954cebc808fe614 /cli/schemas | |
parent | 764f3901631099c87577c898536f57be3038c150 (diff) |
fix(config): move json schema unstable examples to item (#23506)
Diffstat (limited to 'cli/schemas')
-rw-r--r-- | cli/schemas/config-file.v1.json | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index a4fb35bc4..a18894016 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -549,24 +549,24 @@ "type": "array", "description": "List of unstable features to enable.", "items": { - "type": "string" - }, - "examples": [ - "broadcast-channel", - "bare-node-builtins", - "byonm", - "cron", - "ffi", - "fs", - "http", - "kv", - "net", - "sloppy-imports", - "temporal", - "unsafe-proto", - "webgpu", - "worker-options" - ] + "type": "string", + "examples": [ + "broadcast-channel", + "bare-node-builtins", + "byonm", + "cron", + "ffi", + "fs", + "http", + "kv", + "net", + "sloppy-imports", + "temporal", + "unsafe-proto", + "webgpu", + "worker-options" + ] + } }, "name": { "type": "string", |