@toptal/davinci-monorepo 8.1.1 → 8.1.2
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @toptal/davinci-monorepo
|
|
2
2
|
|
|
3
|
+
## 8.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2014](https://github.com/toptal/davinci/pull/2014) [`70e9cc60`](https://github.com/toptal/davinci/commit/70e9cc604e50cb9fa3589c770aa9d3c0f59957c4) Thanks [@sashuk](https://github.com/sashuk)!
|
|
8
|
+
- fix calling of code ownership commands
|
|
9
|
+
|
|
3
10
|
## 8.1.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -42,9 +42,7 @@ const processCodeBase = async options => {
|
|
|
42
42
|
let codeowners
|
|
43
43
|
|
|
44
44
|
const rootPath = process.cwd()
|
|
45
|
-
const { default: CodeOwnersTool } = await import(
|
|
46
|
-
'codeowners/core/codeowners/codeowners.js'
|
|
47
|
-
)
|
|
45
|
+
const { default: CodeOwnersTool } = await import('codeowners/codeowners.js')
|
|
48
46
|
|
|
49
47
|
try {
|
|
50
48
|
codeowners = new CodeOwnersTool(rootPath, options.codeownersFilename)
|