@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-monorepo",
3
- "version": "8.1.1",
3
+ "version": "8.1.2",
4
4
  "description": "Monorepo utility tools",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -12,7 +12,7 @@ const list = program => {
12
12
  let codeowners
13
13
  const rootPath = process.cwd()
14
14
  const { default: CodeOwnersTool } = await import(
15
- 'codeowners/core/codeowners/codeowners.js'
15
+ 'codeowners/codeowners.js'
16
16
  )
17
17
 
18
18
  // instantiate new Codeowners obj
@@ -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)