@toptal/davinci 22.0.45 → 22.0.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/CHANGELOG.md +21 -0
- package/bin/davinci.js +2 -2
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 22.0.46
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2021](https://github.com/toptal/davinci/pull/2021) [`97abce92`](https://github.com/toptal/davinci/commit/97abce922d3a0720e0806ae9cd2f2866f355a1bc) Thanks [@dmaklygin](https://github.com/dmaklygin)!
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
- standardize command syntax for consistency
|
|
12
|
+
- Updated dependencies [[`97abce92`](https://github.com/toptal/davinci/commit/97abce922d3a0720e0806ae9cd2f2866f355a1bc), [`97abce92`](https://github.com/toptal/davinci/commit/97abce922d3a0720e0806ae9cd2f2866f355a1bc)]:
|
|
13
|
+
- @toptal/davinci-cli-shared@2.3.1
|
|
14
|
+
- @toptal/davinci-bootstrap@4.0.16
|
|
15
|
+
- @toptal/davinci-ci@4.0.9
|
|
16
|
+
- @toptal/davinci-code@2.0.8
|
|
17
|
+
- @toptal/davinci-engine@10.5.6
|
|
18
|
+
- @toptal/davinci-monorepo@8.2.1
|
|
19
|
+
- @toptal/davinci-qa@15.2.5
|
|
20
|
+
- @toptal/davinci-syntax@20.1.1
|
|
21
|
+
- @toptal/davinci-workflow@2.0.16
|
|
22
|
+
- @toptal/davinci-graphql-codegen@1.2.5
|
|
23
|
+
|
|
3
24
|
## 22.0.45
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/bin/davinci.js
CHANGED
|
@@ -4,7 +4,7 @@ import { lintCommandFactory } from '@toptal/davinci-syntax'
|
|
|
4
4
|
import { commands as engineCommands } from '@toptal/davinci-engine'
|
|
5
5
|
import { commands as codeCommands } from '@toptal/davinci-code'
|
|
6
6
|
import { commands as qaCommands } from '@toptal/davinci-qa'
|
|
7
|
-
import
|
|
7
|
+
import { createDangerCommand } from '@toptal/davinci-ci/commands'
|
|
8
8
|
import { commands as bootstrapCommands } from '@toptal/davinci-bootstrap'
|
|
9
9
|
import { commands as monorepoCommands } from '@toptal/davinci-monorepo'
|
|
10
10
|
import { commands as graphqlCodegenCommands } from '@toptal/davinci-graphql-codegen'
|
|
@@ -23,7 +23,7 @@ loadCommands(
|
|
|
23
23
|
proxyCommands('code', codeCommands),
|
|
24
24
|
proxyCommands('bootstrap', bootstrapCommands),
|
|
25
25
|
proxyCommands('qa', qaCommands),
|
|
26
|
-
proxyCommands('ci', [
|
|
26
|
+
proxyCommands('ci', [createDangerCommand]),
|
|
27
27
|
proxyCommands('monorepo', monorepoCommands),
|
|
28
28
|
proxyCommands('graphql-codegen', graphqlCodegenCommands),
|
|
29
29
|
proxyCommands('workflow', [newWorkflowCommandFactory]),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.46",
|
|
4
4
|
"description": "Davinci CLI",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"url": "https://github.com/toptal/davinci/issues"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@toptal/davinci-bootstrap": "4.0.
|
|
35
|
-
"@toptal/davinci-ci": "4.0.
|
|
36
|
-
"@toptal/davinci-cli-shared": "2.3.
|
|
37
|
-
"@toptal/davinci-code": "2.0.
|
|
38
|
-
"@toptal/davinci-engine": "10.5.
|
|
39
|
-
"@toptal/davinci-graphql-codegen": "1.2.
|
|
40
|
-
"@toptal/davinci-monorepo": "8.2.
|
|
41
|
-
"@toptal/davinci-qa": "15.2.
|
|
42
|
-
"@toptal/davinci-syntax": "20.1.
|
|
43
|
-
"@toptal/davinci-workflow": "2.0.
|
|
34
|
+
"@toptal/davinci-bootstrap": "4.0.16",
|
|
35
|
+
"@toptal/davinci-ci": "4.0.9",
|
|
36
|
+
"@toptal/davinci-cli-shared": "2.3.1",
|
|
37
|
+
"@toptal/davinci-code": "2.0.8",
|
|
38
|
+
"@toptal/davinci-engine": "10.5.6",
|
|
39
|
+
"@toptal/davinci-graphql-codegen": "1.2.5",
|
|
40
|
+
"@toptal/davinci-monorepo": "8.2.1",
|
|
41
|
+
"@toptal/davinci-qa": "15.2.5",
|
|
42
|
+
"@toptal/davinci-syntax": "20.1.1",
|
|
43
|
+
"@toptal/davinci-workflow": "2.0.16"
|
|
44
44
|
}
|
|
45
45
|
}
|