Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
davidthor committed Dec 6, 2023
1 parent eee90ec commit 0be0fe2
Show file tree
Hide file tree
Showing 11 changed files with 5,248 additions and 5,155 deletions.
2 changes: 2 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/@resources/bucket/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# The `bucket` resource

2 changes: 1 addition & 1 deletion src/@resources/task/outputs.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"TaskOutputs": {
"additionalProperties": false,
"additionalProperties": {},
"type": "object"
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/@resources/task/outputs.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export type TaskOutputs = {};
export type TaskOutputs = Record<string, unknown>;

export default TaskOutputs;
3 changes: 1 addition & 2 deletions src/@resources/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ export type ResourceType =
| 'secret'
| 'service'
| 'task'
| 'volume'
;
| 'volume';

export const ResourceTypeList: ResourceType[] = [
'bucket',
Expand Down
Loading

0 comments on commit 0be0fe2

Please sign in to comment.