@toptal/davinci 21.5.1-alpha-fix-wrong-data-structure-in-analytics-e998b099.2 → 21.6.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +18 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # Change Log
2
2
 
3
+ ## 21.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`1457314e`](https://github.com/toptal/davinci/commit/1457314e7f449146077753dcc467565e6ce4d3d2)]:
8
+ - @toptal/davinci-cli-shared@1.10.2
9
+ - @toptal/davinci-bootstrap@3.6.1
10
+ - @toptal/davinci-ci@3.0.2
11
+ - @toptal/davinci-code@1.7.4
12
+ - @toptal/davinci-engine@9.1.1
13
+ - @toptal/davinci-monorepo@6.8.8
14
+ - @toptal/davinci-qa@13.1.3
15
+ - @toptal/davinci-syntax@17.1.7
16
+ - @toptal/davinci-workflow@1.12.10
17
+ - @toptal/davinci-graphql-codegen@0.4.2
18
+
19
+ ## 21.6.0
20
+
21
+ ### Minor Changes
22
+
23
+ - [#1826](https://github.com/toptal/davinci/pull/1826) [`8b13c930`](https://github.com/toptal/davinci/commit/8b13c9307457c60abe50610bf76bf37c78227beb) Thanks [@dmaklygin](https://github.com/dmaklygin)! - ---
24
+
25
+ - add ability to specify root folder in `publish-package` command
26
+ ```shell
27
+ yarn davinci-engine publish-package --alpha --outputVersion .version --publishRootFolder .
28
+ ```
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies [[`8b13c930`](https://github.com/toptal/davinci/commit/8b13c9307457c60abe50610bf76bf37c78227beb)]:
33
+ - @toptal/davinci-engine@9.1.0
34
+
3
35
  ## 21.5.0
4
36
 
5
37
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci",
3
- "version": "21.5.1-alpha-fix-wrong-data-structure-in-analytics-e998b099.2+e998b099",
3
+ "version": "21.6.1",
4
4
  "description": "Davinci CLI",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,29 +16,32 @@
16
16
  "bin": {
17
17
  "davinci": "bin/davinci.js"
18
18
  },
19
+ "files": [
20
+ "src",
21
+ "bin",
22
+ "docker",
23
+ "CHANGELOG.md"
24
+ ],
19
25
  "repository": {
20
26
  "type": "git",
21
27
  "url": "git+https://github.com/toptal/davinci.git"
22
28
  },
23
29
  "scripts": {
24
- "build:package": "../../bin/build-package.js",
25
- "prepublishOnly": "../../bin/prepublish.js",
26
30
  "test": "echo \"Error: run tests from root\" && exit 1"
27
31
  },
28
32
  "bugs": {
29
33
  "url": "https://github.com/toptal/davinci/issues"
30
34
  },
31
35
  "dependencies": {
32
- "@toptal/davinci-bootstrap": "3.6.1-alpha-fix-wrong-data-structure-in-analytics-e998b099.2+e998b099",
33
- "@toptal/davinci-ci": "3.0.2-alpha-fix-wrong-data-structure-in-analytics-e998b099.7+e998b099",
34
- "@toptal/davinci-cli-shared": "1.10.2-alpha-fix-wrong-data-structure-in-analytics-e998b099.7+e998b099",
35
- "@toptal/davinci-code": "1.7.4-alpha-fix-wrong-data-structure-in-analytics-e998b099.7+e998b099",
36
- "@toptal/davinci-engine": "9.0.4-alpha-fix-wrong-data-structure-in-analytics-e998b099.5+e998b099",
37
- "@toptal/davinci-graphql-codegen": "0.4.2-alpha-fix-wrong-data-structure-in-analytics-e998b099.7+e998b099",
38
- "@toptal/davinci-monorepo": "6.8.8-alpha-fix-wrong-data-structure-in-analytics-e998b099.7+e998b099",
39
- "@toptal/davinci-qa": "13.1.3-alpha-fix-wrong-data-structure-in-analytics-e998b099.7+e998b099",
40
- "@toptal/davinci-syntax": "17.1.7-alpha-fix-wrong-data-structure-in-analytics-e998b099.7+e998b099",
41
- "@toptal/davinci-workflow": "1.12.10-alpha-fix-wrong-data-structure-in-analytics-e998b099.7+e998b099"
42
- },
43
- "gitHead": "e998b09949b7b22fd1305544729bb6665fcfe092"
36
+ "@toptal/davinci-bootstrap": "3.6.1",
37
+ "@toptal/davinci-ci": "3.0.2",
38
+ "@toptal/davinci-cli-shared": "1.10.2",
39
+ "@toptal/davinci-code": "1.7.4",
40
+ "@toptal/davinci-engine": "9.1.1",
41
+ "@toptal/davinci-graphql-codegen": "0.4.2",
42
+ "@toptal/davinci-monorepo": "6.8.8",
43
+ "@toptal/davinci-qa": "13.1.3",
44
+ "@toptal/davinci-syntax": "17.1.7",
45
+ "@toptal/davinci-workflow": "1.12.10"
46
+ }
44
47
  }