-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extend: Add extend config key prefix to avoid
- Loading branch information
Showing
14 changed files
with
207 additions
and
27 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
3 changes: 3 additions & 0 deletions
3
test/fixtures/extend-conf-key-format/with-prefix-/application.ts
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default { | ||
textValue: 'base value', | ||
}; |
1 change: 1 addition & 0 deletions
1
test/fixtures/extend-conf-key-format/with-prefix-/development.ts
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export default {}; |
13 changes: 13 additions & 0 deletions
13
test/fixtures/extend-conf-key-format/with-prefix-/env.yaml
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
application: | ||
appName: | ||
textValue: text override dromedaryCase | ||
AppName: | ||
textValue: text override PascalCase | ||
app-name: | ||
textValue: text override kebab-case | ||
APP-NAME: | ||
textValue: text override UPPER-KEBAB-CASE | ||
app_name: | ||
textValue: text override snake_case | ||
APP_NAME: | ||
textValue: text override UPPER_SNAKE_CASE |
4 changes: 4 additions & 0 deletions
4
test/fixtures/extend-conf-key-format/with-prefix-/package.json
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "prefix-app-name", | ||
"version": "0.0.4" | ||
} |
3 changes: 3 additions & 0 deletions
3
test/fixtures/extend-conf-key-format/with-prefix1/application.ts
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default { | ||
textValue: 'base value', | ||
}; |
1 change: 1 addition & 0 deletions
1
test/fixtures/extend-conf-key-format/with-prefix1/development.ts
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export default {}; |
13 changes: 13 additions & 0 deletions
13
test/fixtures/extend-conf-key-format/with-prefix1/env.yaml
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
application: | ||
appName: | ||
textValue: text override dromedaryCase | ||
AppName: | ||
textValue: text override PascalCase | ||
app-name: | ||
textValue: text override kebab-case | ||
APP-NAME: | ||
textValue: text override UPPER-KEBAB-CASE | ||
app_name: | ||
textValue: text override snake_case | ||
APP_NAME: | ||
textValue: text override UPPER_SNAKE_CASE |
4 changes: 4 additions & 0 deletions
4
test/fixtures/extend-conf-key-format/with-prefix1/package.json
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "prefix1app-name", | ||
"version": "0.0.4" | ||
} |
3 changes: 3 additions & 0 deletions
3
test/fixtures/extend-conf-key-format/with-useless-prefix/application.ts
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default { | ||
textValue: 'base value', | ||
}; |
1 change: 1 addition & 0 deletions
1
test/fixtures/extend-conf-key-format/with-useless-prefix/development.ts
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export default {}; |
13 changes: 13 additions & 0 deletions
13
test/fixtures/extend-conf-key-format/with-useless-prefix/env.yaml
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
application: | ||
appName: | ||
textValue: text override dromedaryCase | ||
AppName: | ||
textValue: text override PascalCase | ||
app-name: | ||
textValue: text override kebab-case | ||
APP-NAME: | ||
textValue: text override UPPER-KEBAB-CASE | ||
app_name: | ||
textValue: text override snake_case | ||
APP_NAME: | ||
textValue: text override UPPER_SNAKE_CASE |
4 changes: 4 additions & 0 deletions
4
test/fixtures/extend-conf-key-format/with-useless-prefix/package.json
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "app-name", | ||
"version": "0.0.4" | ||
} |