This repository has been archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use camelCase in JSON files (#158)
Because: - Currently, our JSON files are a mix of camelCase, snake_case, and kebab-case, which is not consistent. This commit: - Uses camelCase in JSON files. - Simplify `ComponentConfig` struct since most of the fields are not used in the component package. Note: - We don't change the JSON keys of `properties` in this PR. We'll use kebab-case for them and address this in another PR.
- Loading branch information
Showing
31 changed files
with
160 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"available_tasks": [ | ||
"availableTasks": [ | ||
"TASK_SCRAPE_WEBSITE" | ||
], | ||
"custom": false, | ||
"documentation_url": "https://www.instill.tech/docs/component/application/website", | ||
"documentationUrl": "https://www.instill.tech/docs/component/application/website", | ||
"icon": "assets/website.svg", | ||
"icon_url": "", | ||
"iconUrl": "", | ||
"id": "website", | ||
"public": true, | ||
"title": "Website", | ||
"description": "Scrape websites", | ||
"type": "COMPONENT_TYPE_APPLICATION", | ||
"uid": "98909958-db7d-4dfe-9858-7761904be17e", | ||
"vendor": "", | ||
"vendor_attributes": {}, | ||
"vendorAttributes": {}, | ||
"version": "0.1.1", | ||
"source_url": "https://github.com/instill-ai/component/blob/main/application/website/v0", | ||
"release_stage": "RELEASE_STAGE_ALPHA" | ||
"sourceUrl": "https://github.com/instill-ai/component/blob/main/application/website/v0", | ||
"releaseStage": "RELEASE_STAGE_ALPHA" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.