@mittwald/cli 1.0.0-alpha.45 → 1.0.0-alpha.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/lib/context_ddev.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5265,7 +5265,7 @@ EXAMPLES
|
|
|
5265
5265
|
$ mw update --available
|
|
5266
5266
|
```
|
|
5267
5267
|
|
|
5268
|
-
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v4.2.
|
|
5268
|
+
_See code: [@oclif/plugin-update](https://github.com/oclif/plugin-update/blob/v4.2.12/src/commands/update.ts)_
|
|
5269
5269
|
|
|
5270
5270
|
## `mw user api-token create`
|
|
5271
5271
|
|
package/dist/lib/context_ddev.js
CHANGED
|
@@ -76,6 +76,6 @@ export class DDEVContextProvider {
|
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
async function findDDEVConfigFiles(dir) {
|
|
79
|
-
const configFilePattern = /^config
|
|
79
|
+
const configFilePattern = /^config\..*\.ya?ml$/;
|
|
80
80
|
return (await fs.readdir(dir)).filter((e) => configFilePattern.test(e));
|
|
81
81
|
}
|