@toptal/davinci-skeleton 8.0.2 → 8.1.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.
package/.husky/pre-push CHANGED
@@ -1,4 +1,4 @@
1
1
  #!/bin/sh
2
2
  . "$(dirname "$0")/_/husky.sh"
3
3
 
4
- yarn davinci ci danger --local
4
+ yarn davinci-ci danger --local
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Change Log
2
2
 
3
+ ## 8.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1524](https://github.com/toptal/davinci/pull/1524) [`c84ae4c9`](https://github.com/toptal/davinci/commit/c84ae4c9fb8a1773a49be9c2db0a30ce1326fd9d) Thanks [@augustobmoura](https://github.com/augustobmoura)! - - change command calls to davinci syntax from `davinci syntax` to its standalone command `davinci-syntax`
8
+
9
+ ### Patch Changes
10
+
11
+ - [#1527](https://github.com/toptal/davinci/pull/1527) [`3a22484d`](https://github.com/toptal/davinci/commit/3a22484df28d116d8905718e91c1d62d77d46d16) Thanks [@LashaJini](https://github.com/LashaJini)! - ---
12
+
13
+ - Remove `@toptal/davinci` from dev dependencies in skeleton
14
+ - Add to dev dependencies in skeleton
15
+ - `@toptal/davinci-engine`
16
+ - `@toptal/davinci-qa`
17
+ - `@toptal/davinci-syntax`
18
+ - `@toptal/davinci-code`
19
+ - `@toptal/davinci-ci`
20
+
3
21
  ## 8.0.2
4
22
 
5
23
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-skeleton",
3
- "version": "8.0.2",
3
+ "version": "8.1.0",
4
4
  "description": "Toptal frontend application created with Davinci CLI",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,17 +36,17 @@
36
36
  "postcss": "8.4.14"
37
37
  },
38
38
  "scripts": {
39
- "analyze": "davinci engine analyze",
40
- "build": "davinci engine build",
41
- "start": "PORT=3000 davinci engine start --https --open-url https://local-development.staging.toptal.net:3000",
42
- "start:ci": "PORT=3000 davinci engine start --https",
39
+ "analyze": "davinci-engine analyze",
40
+ "build": "davinci-engine build",
41
+ "start": "PORT=3000 davinci-engine start --https --open-url https://local-development.staging.toptal.net:3000",
42
+ "start:ci": "PORT=3000 davinci-engine start --https",
43
43
  "test": "davinci-qa unit --runInBand true",
44
44
  "test:ci": "LANG=en_US davinci-qa unit --ci --maxWorkers 100% --testTimeout=10000 --silent",
45
45
  "test:integration": "NODE_ENV=development davinci-qa integration run --baseUrl=https://local-development.staging.toptal.net:3000",
46
46
  "test:integration:ci": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test 'yarn start:ci' https://local-development.staging.toptal.net:3000 'yarn happo-e2e -- -- yarn test:integration'",
47
47
  "test:integration:ct": "NODE_ENV=development davinci-qa integration run --component",
48
48
  "test:integration:ct:ci": "NODE_ENV=development yarn happo-e2e -- -- davinci-qa integration run --component",
49
- "lint": "davinci syntax lint code . && davinci syntax lint styles .",
49
+ "lint": "davinci-syntax lint code . && davinci-syntax lint styles .",
50
50
  "typecheck": "tsc --noEmit && tsc --project cypress --noEmit",
51
51
  "prepublish": "if [ -f 'yarn.lock' ]; then yarn-deduplicate yarn.lock; fi",
52
52
  "build:package": "../../bin/build-package.js",
@@ -60,11 +60,11 @@
60
60
  },
61
61
  "lint-staged": {
62
62
  "*.{js,jsx,ts,tsx}": [
63
- "davinci syntax lint code",
63
+ "davinci-syntax lint code",
64
64
  "prettier --write"
65
65
  ],
66
66
  "styles.{js,jsx,ts,tsx}": [
67
- "davinci syntax lint styles",
67
+ "davinci-syntax lint styles",
68
68
  "prettier --write"
69
69
  ]
70
70
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-skeleton",
3
- "version": "8.0.2",
3
+ "version": "8.1.0",
4
4
  "description": "Toptal frontend application created with Davinci CLI",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,17 +36,17 @@
36
36
  "postcss": "8.4.14"
37
37
  },
38
38
  "scripts": {
39
- "analyze": "davinci engine analyze",
40
- "build": "davinci engine build",
41
- "start": "PORT=3000 davinci engine start --https --open-url https://local-development.staging.toptal.net:3000",
42
- "start:ci": "PORT=3000 davinci engine start --https",
39
+ "analyze": "davinci-engine analyze",
40
+ "build": "davinci-engine build",
41
+ "start": "PORT=3000 davinci-engine start --https --open-url https://local-development.staging.toptal.net:3000",
42
+ "start:ci": "PORT=3000 davinci-engine start --https",
43
43
  "test": "davinci-qa unit --runInBand true",
44
44
  "test:ci": "LANG=en_US davinci-qa unit --ci --maxWorkers 100% --testTimeout=10000 --silent",
45
45
  "test:integration": "NODE_ENV=development davinci-qa integration run --baseUrl=https://local-development.staging.toptal.net:3000",
46
46
  "test:integration:ci": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test 'yarn start:ci' https://local-development.staging.toptal.net:3000 'yarn happo-e2e -- -- yarn test:integration'",
47
47
  "test:integration:ct": "NODE_ENV=development davinci-qa integration run --component",
48
48
  "test:integration:ct:ci": "NODE_ENV=development yarn happo-e2e -- -- davinci-qa integration run --component",
49
- "lint": "davinci syntax lint code . && davinci syntax lint styles .",
49
+ "lint": "davinci-syntax lint code . && davinci-syntax lint styles .",
50
50
  "typecheck": "tsc --noEmit && tsc --project cypress --noEmit",
51
51
  "prepublish": "if [ -f 'yarn.lock' ]; then yarn-deduplicate yarn.lock; fi",
52
52
  "build:package": "../../bin/build-package.js",
@@ -60,11 +60,11 @@
60
60
  },
61
61
  "lint-staged": {
62
62
  "*.{js,jsx,ts,tsx}": [
63
- "davinci syntax lint code",
63
+ "davinci-syntax lint code",
64
64
  "prettier --write"
65
65
  ],
66
66
  "styles.{js,jsx,ts,tsx}": [
67
- "davinci syntax lint styles",
67
+ "davinci-syntax lint styles",
68
68
  "prettier --write"
69
69
  ]
70
70
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-skeleton",
3
- "version": "8.0.2",
3
+ "version": "8.1.0",
4
4
  "description": "Toptal frontend application created with Davinci CLI",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,17 +36,17 @@
36
36
  "postcss": "8.4.14"
37
37
  },
38
38
  "scripts": {
39
- "analyze": "davinci engine analyze",
40
- "build": "davinci engine build",
41
- "start": "PORT=3000 davinci engine start --https --open-url https://local-development.staging.toptal.net:3000",
42
- "start:ci": "PORT=3000 davinci engine start --https",
39
+ "analyze": "davinci-engine analyze",
40
+ "build": "davinci-engine build",
41
+ "start": "PORT=3000 davinci-engine start --https --open-url https://local-development.staging.toptal.net:3000",
42
+ "start:ci": "PORT=3000 davinci-engine start --https",
43
43
  "test": "davinci-qa unit --runInBand true",
44
44
  "test:ci": "LANG=en_US davinci-qa unit --ci --maxWorkers 100% --testTimeout=10000 --silent",
45
45
  "test:integration": "NODE_ENV=development davinci-qa integration run --baseUrl=https://local-development.staging.toptal.net:3000",
46
46
  "test:integration:ci": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test 'yarn start:ci' https://local-development.staging.toptal.net:3000 'yarn happo-e2e -- -- yarn test:integration'",
47
47
  "test:integration:ct": "NODE_ENV=development davinci-qa integration run --component",
48
48
  "test:integration:ct:ci": "NODE_ENV=development yarn happo-e2e -- -- davinci-qa integration run --component",
49
- "lint": "davinci syntax lint code . && davinci syntax lint styles .",
49
+ "lint": "davinci-syntax lint code . && davinci-syntax lint styles .",
50
50
  "typecheck": "tsc --noEmit && tsc --project cypress --noEmit",
51
51
  "prepublish": "if [ -f 'yarn.lock' ]; then yarn-deduplicate yarn.lock; fi",
52
52
  "build:package": "../../bin/build-package.js",
@@ -60,11 +60,11 @@
60
60
  },
61
61
  "lint-staged": {
62
62
  "*.{js,jsx,ts,tsx}": [
63
- "davinci syntax lint code",
63
+ "davinci-syntax lint code",
64
64
  "prettier --write"
65
65
  ],
66
66
  "styles.{js,jsx,ts,tsx}": [
67
- "davinci syntax lint styles",
67
+ "davinci-syntax lint styles",
68
68
  "prettier --write"
69
69
  ]
70
70
  },