@toptal/davinci-workflow 1.11.10 → 1.11.12
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,21 @@
|
|
|
1
1
|
# @toptal/davinci-workflow
|
|
2
2
|
|
|
3
|
+
## 1.11.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1541](https://github.com/toptal/davinci/pull/1541) [`397a53c9`](https://github.com/toptal/davinci/commit/397a53c9add9f7e8d485648b51cd22676d97c78f) Thanks [@TomasSlama](https://github.com/TomasSlama)! - ---
|
|
8
|
+
- Update documentation about prefering individual davinci packages usage
|
|
9
|
+
- Updated dependencies [[`397a53c9`](https://github.com/toptal/davinci/commit/397a53c9add9f7e8d485648b51cd22676d97c78f)]:
|
|
10
|
+
- @toptal/davinci-monorepo@6.6.5
|
|
11
|
+
|
|
12
|
+
## 1.11.11
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`3a22484d`](https://github.com/toptal/davinci/commit/3a22484df28d116d8905718e91c1d62d77d46d16), [`c84ae4c9`](https://github.com/toptal/davinci/commit/c84ae4c9fb8a1773a49be9c2db0a30ce1326fd9d)]:
|
|
17
|
+
- @toptal/davinci-skeleton@8.1.0
|
|
18
|
+
|
|
3
19
|
## 1.11.10
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -4,17 +4,17 @@ Generates Github (GH) Workflows
|
|
|
4
4
|
|
|
5
5
|
# Usage
|
|
6
6
|
|
|
7
|
-
Use it by installing `yarn add @toptal/davinci` in your project.
|
|
7
|
+
Use it by installing `yarn add @toptal/davinci-workflow` in your project.
|
|
8
8
|
|
|
9
9
|
### Create named workflow
|
|
10
10
|
|
|
11
11
|
Creates a new GH workflow in `/.github/workflow` directory.
|
|
12
12
|
|
|
13
|
-
`davinci new-workflow [workflow-name]`
|
|
13
|
+
`davinci-workflow new-workflow [workflow-name]`
|
|
14
14
|
|
|
15
15
|
or
|
|
16
16
|
|
|
17
|
-
`davinci
|
|
17
|
+
`davinci new-workflow [workflow-name]`
|
|
18
18
|
|
|
19
19
|
Arguments:
|
|
20
20
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-workflow",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.12",
|
|
4
4
|
"description": "GH Workflow generator package for frontend applications",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@toptal/davinci-cli-shared": "1.6.0",
|
|
35
|
-
"@toptal/davinci-monorepo": "^6.6.
|
|
36
|
-
"@toptal/davinci-skeleton": "8.0
|
|
35
|
+
"@toptal/davinci-monorepo": "^6.6.5",
|
|
36
|
+
"@toptal/davinci-skeleton": "8.1.0",
|
|
37
37
|
"chalk": "^4.1.2",
|
|
38
38
|
"cosmiconfig": "^7.0.1",
|
|
39
39
|
"fs-extra": "^9.0.1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-workflow",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.12",
|
|
4
4
|
"description": "GH Workflow generator package for frontend applications",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@toptal/davinci-cli-shared": "1.6.0",
|
|
35
|
-
"@toptal/davinci-monorepo": "^6.6.
|
|
36
|
-
"@toptal/davinci-skeleton": "8.0
|
|
35
|
+
"@toptal/davinci-monorepo": "^6.6.5",
|
|
36
|
+
"@toptal/davinci-skeleton": "8.1.0",
|
|
37
37
|
"chalk": "^4.1.2",
|
|
38
38
|
"cosmiconfig": "^7.0.1",
|
|
39
39
|
"fs-extra": "^9.0.1",
|
|
@@ -19,7 +19,7 @@ const executePostBuild = async ({ destDir }) => {
|
|
|
19
19
|
const config = skeleton.readPackageJson(rootDir)
|
|
20
20
|
|
|
21
21
|
if (!config.scripts['build']) {
|
|
22
|
-
config.scripts['build'] = 'davinci
|
|
22
|
+
config.scripts['build'] = 'davinci-engine build'
|
|
23
23
|
} else {
|
|
24
24
|
isScriptExist = true
|
|
25
25
|
}
|
|
@@ -15,7 +15,7 @@ const executePostBuild = ({ destDir }) => {
|
|
|
15
15
|
const config = skeleton.readPackageJson(rootDir)
|
|
16
16
|
|
|
17
17
|
if (!config.scripts['build']) {
|
|
18
|
-
config.scripts['build'] = 'davinci
|
|
18
|
+
config.scripts['build'] = 'davinci-engine build'
|
|
19
19
|
} else {
|
|
20
20
|
isScriptExist = true
|
|
21
21
|
}
|