@toptal/davinci-ci 1.13.4-alpha-fix-testid-eslint-rule-bug.1335 → 1.14.1-alpha-fx-2279-replace-react-hot-loader-with-fast-refresh.1347

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,18 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1047](https://github.com/toptal/davinci/pull/1047) [`850d14f9`](https://github.com/toptal/davinci/commit/850d14f9574d6b32abe6425e3f3248afb1d2e0b4) Thanks [@dmaklygin1](https://github.com/dmaklygin1)! - Remove npx package
8
+
9
+ ### Patch Changes
10
+
11
+ - [#1042](https://github.com/toptal/davinci/pull/1042) [`da14a73e`](https://github.com/toptal/davinci/commit/da14a73e3ec62f34b709baf80b15cffe3b080bb9) Thanks [@OndrejTuma](https://github.com/OndrejTuma)! - More verbose error of toptal commit message check. Now it tells you where the problem is and hints the correct version
12
+
13
+ - Updated dependencies [[`850d14f9`](https://github.com/toptal/davinci/commit/850d14f9574d6b32abe6425e3f3248afb1d2e0b4)]:
14
+ - @toptal/davinci-cli-shared@1.5.0
15
+
3
16
  ## 1.13.3
4
17
 
5
18
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-ci",
3
- "version": "1.13.4-alpha-fix-testid-eslint-rule-bug.1335+94c355e",
3
+ "version": "1.14.1-alpha-fx-2279-replace-react-hot-loader-with-fast-refresh.1347+8585b28",
4
4
  "description": "Continuos integrations tools for frontend projects",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -32,9 +32,9 @@
32
32
  "dependencies": {
33
33
  "@commitlint/cli": "^12.1.4",
34
34
  "@commitlint/config-conventional": "^12.1.4",
35
- "@toptal/davinci-cli-shared": "1.4.2-alpha-fix-testid-eslint-rule-bug.1335+94c355e",
35
+ "@toptal/davinci-cli-shared": "1.5.1-alpha-fx-2279-replace-react-hot-loader-with-fast-refresh.1347+8585b28",
36
36
  "danger": "^10.7.1",
37
37
  "markdown-table": "^2.0.0"
38
38
  },
39
- "gitHead": "94c355e157c825baf75e8de94c43766d1c4cd8e1"
39
+ "gitHead": "8585b287ba774782c2d4fd77dcebd06b74ff5505"
40
40
  }
@@ -36,7 +36,7 @@ const dangerCommand = ({ options }) => {
36
36
  : toptalCommitsDangerfilePath
37
37
 
38
38
  runSync(
39
- 'npx',
39
+ 'yarn',
40
40
  [
41
41
  'danger',
42
42
  local ? 'local' : 'ci',
@@ -166,7 +166,7 @@ pipeline {
166
166
  -e BUILD_URL=${BUILD_URL} \
167
167
  -e DANGER_GITHUB_API_TOKEN=${DANGER_GITHUB_API_TOKEN} \
168
168
  gcr.io/toptal-hub/${repositoryName}:${commitId} \
169
- npx davinci ci danger
169
+ yarn davinci ci danger
170
170
  """
171
171
  }
172
172
  } //steps
@@ -126,7 +126,7 @@ pipeline {
126
126
  -v ${PWD}/.git:/app/.git \
127
127
  gcr.io/toptal-hub/${repositoryName}:${commitId} \
128
128
  /bin/bash -c "yarn ${params.BUILD_PACKAGE_SCRIPT_NAME} && \
129
- npx davinci engine publish-package \
129
+ yarn davinci engine publish-package \
130
130
  --alpha \
131
131
  --outputVersion /artifacts/.version \
132
132
  --branch ${sourceBranch}"