@toptal/davinci-workflow 2.0.7 → 2.0.8
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 +12 -0
- package/package.json +3 -3
- package/src/commands/new-workflow.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @toptal/davinci-workflow
|
|
2
2
|
|
|
3
|
+
## 2.0.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1937](https://github.com/toptal/davinci/pull/1937) [`8b6806a6`](https://github.com/toptal/davinci/commit/8b6806a6ad1ef3f190e1e9e6a287aed12970b27f) Thanks [@dmaklygin](https://github.com/dmaklygin)! - ---
|
|
8
|
+
|
|
9
|
+
- apply identical formatting and success messages to all command logs.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`8b6806a6`](https://github.com/toptal/davinci/commit/8b6806a6ad1ef3f190e1e9e6a287aed12970b27f)]:
|
|
12
|
+
- @toptal/davinci-cli-shared@2.2.3
|
|
13
|
+
- @toptal/davinci-monorepo@7.1.2
|
|
14
|
+
|
|
3
15
|
## 2.0.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-workflow",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.8",
|
|
4
4
|
"description": "GH Workflow generator package for frontend applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"url": "https://github.com/toptal/davinci/issues"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@toptal/davinci-cli-shared": "2.2.
|
|
38
|
-
"@toptal/davinci-monorepo": "^7.1.
|
|
37
|
+
"@toptal/davinci-cli-shared": "2.2.3",
|
|
38
|
+
"@toptal/davinci-monorepo": "^7.1.2",
|
|
39
39
|
"@toptal/davinci-skeleton": "11.0.1",
|
|
40
40
|
"chalk": "^4.1.2",
|
|
41
41
|
"cosmiconfig": "^7.0.1",
|
|
@@ -116,7 +116,7 @@ const printMandatorySecretsList = async fileName => {
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
const createCommand = async workflowName => {
|
|
119
|
-
print.
|
|
119
|
+
print.header(`Creating "${workflowName}" GH Workflow`)
|
|
120
120
|
|
|
121
121
|
const rootDir = process.cwd()
|
|
122
122
|
|
|
@@ -131,7 +131,7 @@ const createCommand = async workflowName => {
|
|
|
131
131
|
// copy workflow to an appropriate directory
|
|
132
132
|
await copyWorkflowFromSkeleton(fileName, workflowsDir)
|
|
133
133
|
// print successfull result
|
|
134
|
-
print.
|
|
134
|
+
print.success('Workflow has been created.')
|
|
135
135
|
// execute a possible post-build procedure
|
|
136
136
|
await performPostBuildProcedure(
|
|
137
137
|
getWorkflowPostBuildFilename(workflowName),
|