@toptal/davinci-workflow 2.0.10 → 2.0.11
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 +7 -0
- package/package.json +2 -2
- package/src/commands/new-workflow.js +1 -1
- package/src/utils/skeleton.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @toptal/davinci-workflow
|
|
2
2
|
|
|
3
|
+
## 2.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`0517c87a`](https://github.com/toptal/davinci/commit/0517c87adddcebb25ab3e64f647db88516cc6b97)]:
|
|
8
|
+
- @toptal/davinci-monorepo@8.0.0
|
|
9
|
+
|
|
3
10
|
## 2.0.10
|
|
4
11
|
|
|
5
12
|
### 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.11",
|
|
4
4
|
"description": "GH Workflow generator package for frontend applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@toptal/davinci-cli-shared": "2.2.3",
|
|
38
|
-
"@toptal/davinci-monorepo": "^
|
|
38
|
+
"@toptal/davinci-monorepo": "^8.0.0",
|
|
39
39
|
"@toptal/davinci-skeleton": "11.0.2",
|
|
40
40
|
"chalk": "^4.1.2",
|
|
41
41
|
"cosmiconfig": "^7.0.1",
|
|
@@ -98,7 +98,7 @@ const performPostBuildProcedure = async (filename, destDir, workflowName) => {
|
|
|
98
98
|
throw new Error('post build file must export a function')
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
const isMonorepo = utils.checkIfMonorepo()
|
|
101
|
+
const { isMonorepo } = utils.checkIfMonorepo()
|
|
102
102
|
|
|
103
103
|
await executePostBuild({
|
|
104
104
|
print,
|