Skip to content

Commit

Permalink
fix(app): change names from dbt to sql
Browse files Browse the repository at this point in the history
  • Loading branch information
Klochette authored and Klochette committed Aug 31, 2022
1 parent 889418b commit a25df31
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

All notable changes to the "dbtonfhir-vscode" extension will be documented in this file.
All notable changes to the "sqltofhir-vscode" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

Expand All @@ -11,4 +11,4 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
### Added

- all general purpose fhir data-types snippets
- general sql snippets commands for dbtonfhir
- general sql snippets commands for sqltofhir
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dbtonfhir-vscode",
"displayName": "dbtonfhir-vscode",
"name": "sqltofhir-vscode",
"displayName": "sqltofhir-vscode",
"description": "",
"publisher": "Arkhn",
"version": "1.0.0",
Expand All @@ -14,19 +14,19 @@
"snippets": [
{
"language": "sql",
"path": "./snippets/DBTONFHIR_commands.json"
"path": "./snippets/SQLTOFHIR_commands.json"
},
{
"language": "sql",
"path": "./snippets/DBTONFHIR_references.json"
"path": "./snippets/SQLTOFHIR_references.json"
},
{
"language": "sql",
"path": "./snippets/DBTONFHIR_generalPurposeData-types.json"
"path": "./snippets/SQLTOFHIR_generalPurposeData-types.json"
},
{
"language": "sql",
"path": "./snippets/DBTONFHIR_specialPurposeData-types.json"
"path": "./snippets/SQLTOFHIR_specialPurposeData-types.json"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"Create request dbtonfhir": {
"Create request sqltofhir": {
"prefix": "fhirselect",
"description": "Write a sql select request",
"body": ["SELECT", "\t${2}", "AS fhir", "FROM ${1}", "\n"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"Create request dbtonfhir": {
"Create request sqltofhir": {
"prefix": "fhirRefsubject",
"description": "Write a subject reference",
"body": [
Expand Down

0 comments on commit a25df31

Please sign in to comment.