Skip to content

Commit 879c893

Browse files
committed
fix default include dot paths
1 parent 77cdb57 commit 879c893

File tree

8 files changed

+83
-33
lines changed

8 files changed

+83
-33
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
## 5.0.7
33
Task 6.0.6
44
- Fix default case sensitivity in sources and additional variables matching ([#29](https://github.com/qetza/replacetokens-task/issues/29)).
5+
- Fix default directories and files starting with a dot in sources and additional variables matching ([#29](https://github.com/qetza/replacetokens-task/issues/29)).
56

67
## 5.0.6
78
Task 6.0.5

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,11 @@ The task was completely rewritten to use the npm package [@qetza/replacetokens](
148148
# Optional. Default: ignore
149149
ifNoFilesFound: ''
150150

151+
# Include directories and files starting with a dot ('.') in glob matching results for sources and additionalVariables.
152+
#
153+
# Optional. Default: true
154+
includeDotPaths: ''
155+
151156
# The log level.
152157
#
153158
# Accepted values:
@@ -332,6 +337,7 @@ The following **anonymous** data is send:
332337
- _escape_
333338
- _escapeChar_
334339
- _ifNoFilesFound_
340+
- _includeDotPaths_
335341
- _logLevel_
336342
- _missingVarAction_
337343
- _missingVarDefault_

tasks/ReplaceTokensV6/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22
## 6.0.6
33
- Fix default case sensitivity in sources and additional variables matching ([#29](https://github.com/qetza/replacetokens-task/issues/29)).
4+
- Fix default directories and files starting with a dot in sources and additional variables matching ([#29](https://github.com/qetza/replacetokens-task/issues/29)).
45

56
## 6.0.5
67
- Fix normalized variable names not supported as token name ([#15](https://github.com/qetza/replacetokens-task/issues/15)) ([#20](https://github.com/qetza/replacetokens-task/issues/20)).

tasks/ReplaceTokensV6/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,11 @@ The task was completely rewritten to use the npm package [@qetza/replacetokens](
148148
# Optional. Default: ignore
149149
ifNoFilesFound: ''
150150

151+
# Include directories and files starting with a dot ('.') in glob matching results for sources and additionalVariables.
152+
#
153+
# Optional. Default: true
154+
includeDotPaths: ''
155+
151156
# The log level.
152157
#
153158
# Accepted values:
@@ -332,6 +337,7 @@ The following **anonymous** data is send:
332337
- _escape_
333338
- _escapeChar_
334339
- _ifNoFilesFound_
340+
- _includeDotPaths_
335341
- _logLevel_
336342
- _missingVarAction_
337343
- _missingVarDefault_

tasks/ReplaceTokensV6/index.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ async function run() {
6464
recursive: tl.getBoolInput('enableRecursion'),
6565
root: tl.getPathInput('rootDirectory', false, true),
6666
sources: {
67-
caseInsensitive: tl.getBoolInput('caseInsensitivePaths')
67+
caseInsensitive: tl.getBoolInput('caseInsensitivePaths'),
68+
dot: tl.getBoolInput('includeDotPaths')
6869
},
6970
token: {
7071
pattern:
@@ -115,7 +116,7 @@ async function run() {
115116

116117
// load additional variables
117118
const separator = tl.getInput('variableSeparator') || rt.Defaults.Separator;
118-
const additionalVariables = await getAdditionalVariables(options.root, separator, options.sources.caseInsensitive);
119+
const additionalVariables = await getAdditionalVariables(options.root, separator, options.sources.caseInsensitive, options.sources.dot);
119120

120121
// set telemetry attributes
121122
telemetryEvent.setAttributes({
@@ -127,6 +128,7 @@ async function run() {
127128
escape: options.escape.type,
128129
'escape-char': options.escape.escapeChar,
129130
'if-no-files-found': ifNoFilesFound,
131+
'include-dot-paths': options.sources.dot,
130132
'log-level': logLevelStr,
131133
'missing-var-action': options.missing.action,
132134
'missing-var-default': options.missing.default,
@@ -221,7 +223,7 @@ var getChoiceInput = function (name: string, choices: string[], alias?: string):
221223
var variableFilesCount = 0;
222224
var variablesEnvCount = 0;
223225
var inlineVariablesCount = 0;
224-
var getAdditionalVariables = async function (root?: string, separator?: string, caseInsensitive?: boolean): Promise<{ [key: string]: string }> {
226+
var getAdditionalVariables = async function (root?: string, separator?: string, caseInsensitive?: boolean, dot?: boolean): Promise<{ [key: string]: string }> {
225227
const input = tl.getInput('additionalVariables') || '';
226228
if (!input) return {};
227229

@@ -240,7 +242,7 @@ var getAdditionalVariables = async function (root?: string, separator?: string,
240242
return getAdditionalVariablesFromYaml(input);
241243
}
242244
})(),
243-
{ caseInsensitive: caseInsensitive, normalizeWin32: true, root: root, separator: separator }
245+
{ caseInsensitive: caseInsensitive, dot: dot, normalizeWin32: true, root: root, separator: separator }
244246
);
245247
};
246248

tasks/ReplaceTokensV6/task.json

+8
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,14 @@
7979
"label": "Case insensitive paths",
8080
"helpMarkDown": "Enable case-insensitive file path matching in glob patterns (sources and additionalVariables). Default: true"
8181
},
82+
{
83+
"name": "includeDotPaths",
84+
"type": "boolean",
85+
"required": false,
86+
"defaultValue": true,
87+
"label": "Include dot paths",
88+
"helpMarkDown": "Include directories and files starting with a dot ('.') in glob matching results (sources and additionalVariables). Default: true"
89+
},
8290
{
8391
"name": "encoding",
8492
"type": "pickList",

0 commit comments

Comments
 (0)