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

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 +16 -0
  2. package/package.json +18 -15
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Change Log
2
2
 
3
+ ## 21.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1826](https://github.com/toptal/davinci/pull/1826) [`8b13c930`](https://github.com/toptal/davinci/commit/8b13c9307457c60abe50610bf76bf37c78227beb) Thanks [@dmaklygin](https://github.com/dmaklygin)! - ---
8
+
9
+ - add ability to specify root folder in `publish-package` command
10
+ ```shell
11
+ yarn davinci-engine publish-package --alpha --outputVersion .version --publishRootFolder .
12
+ ```
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [[`8b13c930`](https://github.com/toptal/davinci/commit/8b13c9307457c60abe50610bf76bf37c78227beb)]:
17
+ - @toptal/davinci-engine@9.1.0
18
+
3
19
  ## 21.5.0
4
20
 
5
21
  ### 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.0",
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.0",
37
+ "@toptal/davinci-ci": "3.0.1",
38
+ "@toptal/davinci-cli-shared": "1.10.1",
39
+ "@toptal/davinci-code": "1.7.3",
40
+ "@toptal/davinci-engine": "9.1.0",
41
+ "@toptal/davinci-graphql-codegen": "0.4.1",
42
+ "@toptal/davinci-monorepo": "6.8.7",
43
+ "@toptal/davinci-qa": "13.1.2",
44
+ "@toptal/davinci-syntax": "17.1.6",
45
+ "@toptal/davinci-workflow": "1.12.9"
46
+ }
44
47
  }