@toptal/davinci-bootstrap
Version:
Creates application from davinci template
1,225 lines (689 loc) • 114 kB
Markdown
# Change Log
## 7.0.0
### Major Changes
- [#2643](https://github.com/toptal/davinci/pull/2643) [`ab9666f`](https://github.com/toptal/davinci/commit/ab9666f999e7a610f6068e0145200257d8511b46) Thanks [@rocodesign](https://github.com/rocodesign)!
Migrate package manager from Yarn to pnpm
**WHAT (breaking change):**
- switch package manager from Yarn to pnpm across the entire Davinci monorepo
- add `pnpm-workspace.yaml`, `.npmrc`, and `packageManager` field for corepack support
- convert Yarn `resolutions` to `pnpm.overrides` in root `package.json`
- update lerna `npmClient` from `yarn` to `pnpm`
- replace `yarn` with `pnpm` in root scripts (postinstall, test, test:unit:update)
**HOW to update:**
- install pnpm (`corepack enable` or `npm install -g pnpm@10.6.1`)
- replace `yarn install` with `pnpm install` in local workflows
- replace `yarn <script>` with `pnpm <script>` when running commands
### Patch Changes
- Updated dependencies [[`ab9666f`](https://github.com/toptal/davinci/commit/ab9666f999e7a610f6068e0145200257d8511b46)]:
- @toptal/davinci-cli-shared@3.0.0
- @toptal/davinci-skeleton@15.0.0
- @toptal/davinci-workspace-root@2.0.0
## 6.0.0
### Major Changes
- [#2634](https://github.com/toptal/davinci/pull/2634) [`e23bdf6`](https://github.com/toptal/davinci/commit/e23bdf616c7e5bb99a6066836fef4204d4ca1dd3) Thanks [@MrBra1nwash](https://github.com/MrBra1nwash)!
Fix Tailwind style generation for bootstrapped packages
**WHAT (breaking change):**
- bootstrap now pins `tailwindcss` to `^3.3.5` so new apps don't accidentally install Tailwind v4, which is incompatible with the current PostCSS setup.
- skeleton's `tailwind.config.js` now includes `./node_modules/@toptal/picasso-*/**/*.js` in the `content` array so utility classes from all Picasso sub-packages (e.g. `@toptal/picasso-page`) are generated.
**WHY:**
- the skeleton's Tailwind `content` paths only covered `@toptal/picasso`, missing sub-packages like `@toptal/picasso-page` that use utility classes such as `flex-[1]`, `w-full`, and `justify-center`. Without scanning those files, Tailwind never generated the corresponding styles.
- without a pinned version, `davinci-bootstrap new` could install Tailwind v4, which drops the PostCSS plugin API used by the engine's `postcss-loader` configuration.
**HOW to update:**
- **new apps:** no action; new apps created with `davinci-bootstrap new` will get working Tailwind by default.
- **existing bootstrapped apps** where Tailwind classes don't generate: ensure `tailwindcss` is at `^3.3.5` and add `'./node_modules/@toptal/picasso-*/**/*.js'` to the `content` array in `tailwind.config.js`, then run `yarn install` and restart the dev server.
### Patch Changes
- [#2639](https://github.com/toptal/davinci/pull/2639) [`7e4896d`](https://github.com/toptal/davinci/commit/7e4896d4db27e868ddce2bae9002699d5d26a65f) Thanks [@rocodesign](https://github.com/rocodesign)!
- add the new `@toptal/davinci-workspace-root` package with Yarn and pnpm workspace root detection, workspace membership checks, and TypeScript declarations
- replace `find-yarn-workspace-root` usage across Davinci packages with `@toptal/davinci-workspace-root` to make workspace root resolution package-manager agnostic
- Updated dependencies [[`7e4896d`](https://github.com/toptal/davinci/commit/7e4896d4db27e868ddce2bae9002699d5d26a65f), [`e23bdf6`](https://github.com/toptal/davinci/commit/e23bdf616c7e5bb99a6066836fef4204d4ca1dd3)]:
- @toptal/davinci-cli-shared@2.6.1
- @toptal/davinci-workspace-root@1.0.1
- @toptal/davinci-skeleton@14.0.0
## 5.0.0
### Major Changes
- [#2615](https://github.com/toptal/davinci/pull/2615) [`ea751d0`](https://github.com/toptal/davinci/commit/ea751d055251f4c7eeef1360df1427af0ca733c2) Thanks [@denieler](https://github.com/denieler)!
---
- removed commands new-lib and new-app to create libs and apps in monorepos.
## 4.0.35
### Patch Changes
- [#2592](https://github.com/toptal/davinci/pull/2592) [`8902dfeb`](https://github.com/toptal/davinci/commit/8902dfeb674cabc7605079da394873b6d768a151) Thanks [@denieler](https://github.com/denieler)!
---
- update due to upgrade of davinci-cli-shared package
## 4.0.34
### Patch Changes
- [#2578](https://github.com/toptal/davinci/pull/2578) [`223fae8c`](https://github.com/toptal/davinci/commit/223fae8c71d70b957fc0ca6cf22f7c184b379a5f) Thanks [@sashuk](https://github.com/sashuk)!
- set `@apollo/client` version to `v3` (`TopkitApolloClient` relies on `v3` and throws errors in case of `v4+`)
## 4.0.33
### Patch Changes
- [#2522](https://github.com/toptal/davinci/pull/2522) [`c53da9cd`](https://github.com/toptal/davinci/commit/c53da9cdf9f539973f4830af58dcc7675b1503b0) Thanks [@rafael-anachoreta](https://github.com/rafael-anachoreta)!
- hardcode `react` and `react-dom` to the latest 18 version to prevent boostrap from breaking after attempting to install react 19
## 4.0.32
### Patch Changes
- [#2490](https://github.com/toptal/davinci/pull/2490) [`ff111727`](https://github.com/toptal/davinci/commit/ff1117271b3a58928485f867a94631b1a069645b) Thanks [@sashuk](https://github.com/sashuk)!
- bump `@toptal/davinci-cli-shared` version
## 4.0.31
### Patch Changes
- [#2413](https://github.com/toptal/davinci/pull/2413) [`180a94d8`](https://github.com/toptal/davinci/commit/180a94d810958e78ab6f6c171f404dcc36e01511) Thanks [@sashuk](https://github.com/sashuk)!
- add `@toptal/picasso-tailwind-merge` and `@toptal/picasso-tailwind` packages to skeleton
## 4.0.30
### Patch Changes
- [#2400](https://github.com/toptal/davinci/pull/2400) [`718c44b7`](https://github.com/toptal/davinci/commit/718c44b7cbfc58672443369a88dafa55471b8322) Thanks [@mkrl](https://github.com/mkrl)!
- bump `@toptal/davinci-cli-shared` cli-shared version
## 4.0.29
### Patch Changes
- [#2376](https://github.com/toptal/davinci/pull/2376) [`edcf6971`](https://github.com/toptal/davinci/commit/edcf6971a1b97af0f38424e3174dad75e50f5aed) Thanks [@augustobmoura](https://github.com/augustobmoura)!
- bump new version of davinci-cli-shared on all projects
## 4.0.28
### Patch Changes
- [#2215](https://github.com/toptal/davinci/pull/2215) [`7736531e`](https://github.com/toptal/davinci/commit/7736531ebe7d77990f096136f1662c446362428b) Thanks [@TomasSlama](https://github.com/TomasSlama)!
- bump davinci-cli-shared
## 4.0.27
### Patch Changes
- [#2138](https://github.com/toptal/davinci/pull/2138) [`94f5d8cb`](https://github.com/toptal/davinci/commit/94f5d8cb2140bdbf3e148f1ae8d5004db9779ac4) Thanks [@dmaklygin](https://github.com/dmaklygin)!
- fix package.json structure for davinci packages
- Updated dependencies [[`94f5d8cb`](https://github.com/toptal/davinci/commit/94f5d8cb2140bdbf3e148f1ae8d5004db9779ac4)]:
- @toptal/davinci-skeleton-sub-app@1.3.1
- @toptal/davinci-skeleton-lib@0.2.1
- @toptal/davinci-cli-shared@2.3.8
## 4.0.26
### Patch Changes
- Updated dependencies [[`0e449097`](https://github.com/toptal/davinci/commit/0e44909716410e4bda7a1693c4f2a771b27e5c53)]:
- @toptal/davinci-cli-shared@2.3.7
## 4.0.25
### Patch Changes
- Updated dependencies [[`2eacbe7d`](https://github.com/toptal/davinci/commit/2eacbe7db6591b11d56ec1fd17d0e33dd2e52731)]:
- @toptal/davinci-skeleton@13.0.1
## 4.0.24
### Patch Changes
- Updated dependencies [[`d6c99a48`](https://github.com/toptal/davinci/commit/d6c99a4839540b88b33dd398bfad0812029d625a)]:
- @toptal/davinci-cli-shared@2.3.6
## 4.0.23
### Patch Changes
- Updated dependencies [[`a4f66cef`](https://github.com/toptal/davinci/commit/a4f66cefbf938a55d4543a745a43f311fac7ed1a)]:
- @toptal/davinci-cli-shared@2.3.5
## 4.0.22
### Patch Changes
- Updated dependencies [[`d0e203fb`](https://github.com/toptal/davinci/commit/d0e203fbad51110a0e25e979b8b16d8ef137b1a3)]:
- @toptal/davinci-cli-shared@2.3.4
## 4.0.21
### Patch Changes
- Updated dependencies [[`1f5aa922`](https://github.com/toptal/davinci/commit/1f5aa922273631b639c5e2be4a16b4d31997e9ae)]:
- @toptal/davinci-cli-shared@2.3.3
## 4.0.20
### Patch Changes
- Updated dependencies [[`229d7add`](https://github.com/toptal/davinci/commit/229d7add200b11585437e7dce982883056970275)]:
- @toptal/davinci-skeleton@13.0.0
## 4.0.19
### Patch Changes
- Updated dependencies [[`b68eecd6`](https://github.com/toptal/davinci/commit/b68eecd633f7af5bd597f02cadbc0d117c663e3f)]:
- @toptal/davinci-skeleton@12.2.1
## 4.0.18
### Patch Changes
- Updated dependencies [[`6fb9dafc`](https://github.com/toptal/davinci/commit/6fb9dafc018ccc0d05e2aea217b5a56133ccddfe)]:
- @toptal/davinci-cli-shared@2.3.2
## 4.0.17
### Patch Changes
- Updated dependencies [[`481d63cc`](https://github.com/toptal/davinci/commit/481d63cca99f09bb2afcfdc421045556cfcbf81d)]:
- @toptal/davinci-skeleton@12.2.0
## 4.0.16
### Patch Changes
- [#2021](https://github.com/toptal/davinci/pull/2021) [`97abce92`](https://github.com/toptal/davinci/commit/97abce922d3a0720e0806ae9cd2f2866f355a1bc) Thanks [@dmaklygin](https://github.com/dmaklygin)!
---
- standardize command syntax for consistency
- Updated dependencies [[`97abce92`](https://github.com/toptal/davinci/commit/97abce922d3a0720e0806ae9cd2f2866f355a1bc)]:
- @toptal/davinci-cli-shared@2.3.1
## 4.0.15
### Patch Changes
- Updated dependencies [[`a4f216ce`](https://github.com/toptal/davinci/commit/a4f216cec0fdbc16a57bbbfeee2d35de8353bfd2)]:
- @toptal/davinci-skeleton@12.1.0
## 4.0.14
### Patch Changes
- Updated dependencies [[`9d08e66c`](https://github.com/toptal/davinci/commit/9d08e66c30716f3351aa967f377df2e03bd6f2ba)]:
- @toptal/davinci-skeleton@12.0.0
## 4.0.13
### Patch Changes
- Updated dependencies [[`361e10b2`](https://github.com/toptal/davinci/commit/361e10b24c7e55f183af46c15a5f6da6589f7c96)]:
- @toptal/davinci-skeleton@11.0.3
## 4.0.12
### Patch Changes
- Updated dependencies [[`e39c8b4e`](https://github.com/toptal/davinci/commit/e39c8b4e88e0e931bc21b22f0de34b517638eb86)]:
- @toptal/davinci-cli-shared@2.3.0
## 4.0.11
### Patch Changes
- Updated dependencies [[`b08793a1`](https://github.com/toptal/davinci/commit/b08793a196c963eb9aa863928f05fadf4650706c)]:
- @toptal/davinci-skeleton@11.0.2
## 4.0.10
### Patch Changes
- [#1970](https://github.com/toptal/davinci/pull/1970) [`483b48bd`](https://github.com/toptal/davinci/commit/483b48bdee5e164dc2d031477dc365a11b3c2dc2) Thanks [@sashuk](https://github.com/sashuk)! - ---
- the `fs-extra` dependency was updated
## 4.0.9
### Patch Changes
- [#1955](https://github.com/toptal/davinci/pull/1955) [`730c84b0`](https://github.com/toptal/davinci/commit/730c84b00d99aa9fd4371148666a432058b9bf16) Thanks [@dependabot](https://github.com/apps/dependabot)! - ---
- fix incorrect version of typescript dependency
## 4.0.8
### Patch Changes
- [#1937](https://github.com/toptal/davinci/pull/1937) [`8b6806a6`](https://github.com/toptal/davinci/commit/8b6806a6ad1ef3f190e1e9e6a287aed12970b27f) Thanks [@dmaklygin](https://github.com/dmaklygin)! - ---
- apply identical formatting and success messages to all command logs.
- Updated dependencies [[`8b6806a6`](https://github.com/toptal/davinci/commit/8b6806a6ad1ef3f190e1e9e6a287aed12970b27f)]:
- @toptal/davinci-cli-shared@2.2.3
## 4.0.7
### Patch Changes
- Updated dependencies [[`b3b691f4`](https://github.com/toptal/davinci/commit/b3b691f4bdfcd2c4d05133bb61c69c45bc3c06a6)]:
- @toptal/davinci-cli-shared@2.2.2
## 4.0.6
### Patch Changes
- Updated dependencies [[`89f71b13`](https://github.com/toptal/davinci/commit/89f71b1367be41a1ae79e445abc2b74e22327982)]:
- @toptal/davinci-cli-shared@2.2.1
## 4.0.5
### Patch Changes
- Updated dependencies [[`d2b25141`](https://github.com/toptal/davinci/commit/d2b25141b5c25f4cefa35f5d7df289401566eb03), [`d2b25141`](https://github.com/toptal/davinci/commit/d2b25141b5c25f4cefa35f5d7df289401566eb03)]:
- @toptal/davinci-cli-shared@2.2.0
- @toptal/davinci-skeleton@11.0.1
## 4.0.4
### Patch Changes
- Updated dependencies [[`4f1b56c4`](https://github.com/toptal/davinci/commit/4f1b56c4a5e74ec2b8abe7da5cc7414ce6d53c15)]:
- @toptal/davinci-skeleton@11.0.0
## 4.0.3
### Patch Changes
- Updated dependencies [[`de1d21ca`](https://github.com/toptal/davinci/commit/de1d21cac8b6a4ee63bdbb38924d26b75735f88a)]:
- @toptal/davinci-cli-shared@2.1.1
## 4.0.2
### Patch Changes
- Updated dependencies [[`1bab8ffc`](https://github.com/toptal/davinci/commit/1bab8ffc5be9fd58e8b5356f85f01fe9fa10140f)]:
- @toptal/davinci-cli-shared@2.1.0
## 4.0.1
### Patch Changes
- Updated dependencies [[`778c866b`](https://github.com/toptal/davinci/commit/778c866bb76d3c10d3a280c2b573eff0eae681c4)]:
- @toptal/davinci-skeleton@10.0.1
## 4.0.0
### Major Changes
- [#1807](https://github.com/toptal/davinci/pull/1807) [`6c34ee64`](https://github.com/toptal/davinci/commit/6c34ee64302b1fdce5b37db19d608a8ba72e8a9f) Thanks [@augustobmoura](https://github.com/augustobmoura)! - ---
- migrate davinci-bootstrap to ESM
### Patch Changes
- Updated dependencies [[`6c34ee64`](https://github.com/toptal/davinci/commit/6c34ee64302b1fdce5b37db19d608a8ba72e8a9f)]:
- @toptal/davinci-cli-shared@2.0.0
## 3.6.1
### Patch Changes
- Updated dependencies [[`1457314e`](https://github.com/toptal/davinci/commit/1457314e7f449146077753dcc467565e6ce4d3d2)]:
- @toptal/davinci-cli-shared@1.10.2
## 3.6.0
### Minor Changes
- [#1757](https://github.com/toptal/davinci/pull/1757) [`78e67473`](https://github.com/toptal/davinci/commit/78e67473433632a0ffd7de2a526aa409ec540610) Thanks [@augustobmoura](https://github.com/augustobmoura)! - ---
- create option to skip yarn install on davinci-bootstrap new project
### Patch Changes
- [#1757](https://github.com/toptal/davinci/pull/1757) [`78e67473`](https://github.com/toptal/davinci/commit/78e67473433632a0ffd7de2a526aa409ec540610) Thanks [@augustobmoura](https://github.com/augustobmoura)! - ---
- refactor davinci-bootstrap new application to run yarn install once
## 3.5.6
### Patch Changes
- Updated dependencies [[`1a1c3e45`](https://github.com/toptal/davinci/commit/1a1c3e455cc5222c9cbf05128226f14d46ce89db)]:
- @toptal/davinci-cli-shared@1.10.1
## 3.5.5
### Patch Changes
- Updated dependencies [[`103a3ec9`](https://github.com/toptal/davinci/commit/103a3ec94aa9ca9d9d83aab4cbcb510e26bf6071)]:
- @toptal/davinci-skeleton@10.0.0
## 3.5.4
### Patch Changes
- Updated dependencies [[`6804e847`](https://github.com/toptal/davinci/commit/6804e8474aa072da97e5e73d4f565404d38287d7)]:
- @toptal/davinci-skeleton@9.2.2
## 3.5.3
### Patch Changes
- Updated dependencies [[`97bbeb7b`](https://github.com/toptal/davinci/commit/97bbeb7b9d8c5cec56e15547a4c7e6b9b9c79a48)]:
- @toptal/davinci-skeleton@9.2.1
## 3.5.2
### Patch Changes
- Updated dependencies [[`ca7a20f2`](https://github.com/toptal/davinci/commit/ca7a20f248784371af9db64df31e05ada1e69179)]:
- @toptal/davinci-cli-shared@1.10.0
## 3.5.1
### Patch Changes
- Updated dependencies [[`1c422aae`](https://github.com/toptal/davinci/commit/1c422aae676d25cd2216c8a24af4b7e208728931)]:
- @toptal/davinci-cli-shared@1.9.0
## 3.5.0
### Minor Changes
- [#1744](https://github.com/toptal/davinci/pull/1744) [`2d1ac403`](https://github.com/toptal/davinci/commit/2d1ac403779752a3383eb649aee50af9de1589c6) Thanks [@ozgurkececioglu](https://github.com/ozgurkececioglu)! - ---
- update `davinci-bootstrap new` script to add `davinci-storybook-decorators` as a dependency
### Patch Changes
- Updated dependencies [[`2d1ac403`](https://github.com/toptal/davinci/commit/2d1ac403779752a3383eb649aee50af9de1589c6)]:
- @toptal/davinci-skeleton@9.2.0
## 3.4.9
### Patch Changes
- [#1742](https://github.com/toptal/davinci/pull/1742) [`70dad21a`](https://github.com/toptal/davinci/commit/70dad21a63ceea922fd0f79abfd0be74cb9ea176) Thanks [@OndrejTuma](https://github.com/OndrejTuma)! - ---
- exclude `dist-package` directory from skeleton
## 3.4.8
### Patch Changes
- Updated dependencies [[`5624aa8c`](https://github.com/toptal/davinci/commit/5624aa8c725c57a86b40b4845622294833656fe3)]:
- @toptal/davinci-skeleton@9.1.2
## 3.4.7
### Patch Changes
- Updated dependencies [[`d1cb27ee`](https://github.com/toptal/davinci/commit/d1cb27eeaa6416107a0a3328438dd75083ac259b)]:
- @toptal/davinci-skeleton@9.1.1
## 3.4.6
### Patch Changes
- Updated dependencies [[`ea14941a`](https://github.com/toptal/davinci/commit/ea14941a9d4ed43df34a4cdc69e176205e7f8fe2)]:
- @toptal/davinci-skeleton@9.1.0
## 3.4.5
### Patch Changes
- Updated dependencies [[`b350207b`](https://github.com/toptal/davinci/commit/b350207b64d50695d006a1dc6860d6e848b139ed)]:
- @toptal/davinci-skeleton@9.0.0
## 3.4.4
### Patch Changes
- Updated dependencies [[`b12d1d19`](https://github.com/toptal/davinci/commit/b12d1d19af02104b9076a53b6e516198e6cda141)]:
- @toptal/davinci-cli-shared@1.8.1
## 3.4.3
### Patch Changes
- Updated dependencies [[`e602ae7e`](https://github.com/toptal/davinci/commit/e602ae7edc7d075a4192052d6c04868f08fea0a7)]:
- @toptal/davinci-cli-shared@1.8.0
## 3.4.2
### Patch Changes
- Updated dependencies [[`cd184617`](https://github.com/toptal/davinci/commit/cd184617439c5cef222be6683622dd6bbebc171b)]:
- @toptal/davinci-skeleton@8.2.0
## 3.4.1
### Patch Changes
- Updated dependencies [[`9b67beb3`](https://github.com/toptal/davinci/commit/9b67beb3aaf0e24193b2deaba3126c41e3ec9280), [`04fe7ffa`](https://github.com/toptal/davinci/commit/04fe7ffa161027d081c6ae870716bb06a2fcf73f)]:
- @toptal/davinci-cli-shared@1.7.0
## 3.4.0
### Minor Changes
- [#1534](https://github.com/toptal/davinci/pull/1534) [`aae768aa`](https://github.com/toptal/davinci/commit/aae768aa5d913b99441e717f5f586f73d525e820) Thanks [@augustobmoura](https://github.com/augustobmoura)! - - prefer local cache when bootstrapping a new Davinci project
### Patch Changes
- [#1527](https://github.com/toptal/davinci/pull/1527) [`3a22484d`](https://github.com/toptal/davinci/commit/3a22484df28d116d8905718e91c1d62d77d46d16) Thanks [@LashaJini](https://github.com/LashaJini)! - ---
- Remove `@toptal/davinci` from dev dependencies in skeleton
- Add to dev dependencies in skeleton
- `@toptal/davinci-engine`
- `@toptal/davinci-qa`
- `@toptal/davinci-syntax`
- `@toptal/davinci-code`
- `@toptal/davinci-ci`
- Updated dependencies [[`3a22484d`](https://github.com/toptal/davinci/commit/3a22484df28d116d8905718e91c1d62d77d46d16), [`c84ae4c9`](https://github.com/toptal/davinci/commit/c84ae4c9fb8a1773a49be9c2db0a30ce1326fd9d)]:
- @toptal/davinci-skeleton@8.1.0
- @toptal/davinci-skeleton-lib@0.2.0
- @toptal/davinci-skeleton-sub-app@1.3.0
## 3.3.8
### Patch Changes
- [#1514](https://github.com/toptal/davinci/pull/1514) [`4b74ecd7`](https://github.com/toptal/davinci/commit/4b74ecd747446eda3eaaebc4648a0b113bf9a468) Thanks [@TomasSlama](https://github.com/TomasSlama)! - Use `davinci-qa` instead of `davinci qa`
- Updated dependencies [[`4b74ecd7`](https://github.com/toptal/davinci/commit/4b74ecd747446eda3eaaebc4648a0b113bf9a468)]:
- @toptal/davinci-skeleton@8.0.2
- @toptal/davinci-skeleton-lib@0.1.2
- @toptal/davinci-skeleton-sub-app@1.2.1
## 3.3.7
### Patch Changes
- Updated dependencies [[`65ba9d01`](https://github.com/toptal/davinci/commit/65ba9d015134c31844c0826fe7fdf7f83cde8761)]:
- @toptal/davinci-skeleton@8.0.1
## 3.3.6
### Patch Changes
- [#1517](https://github.com/toptal/davinci/pull/1517) [`fa3423f1`](https://github.com/toptal/davinci/commit/fa3423f1f9211b4d8899064aa4afdf5ca2198483) Thanks [@LashaJini](https://github.com/LashaJini)! - ---
- Do not load Jest related eslint rules if project is not using Jest
- [BREAKING CHANGE] Rename `.eslintrc` to `.eslintrc.js`
- Updated dependencies [[`fa3423f1`](https://github.com/toptal/davinci/commit/fa3423f1f9211b4d8899064aa4afdf5ca2198483)]:
- @toptal/davinci-cli-shared@1.6.0
- @toptal/davinci-skeleton@8.0.0
## 3.3.5
### Patch Changes
- Updated dependencies [[`74cad388`](https://github.com/toptal/davinci/commit/74cad3881486d125c439f67bca1cc692aec7582c), [`9ee824e1`](https://github.com/toptal/davinci/commit/9ee824e15ab100085c354ebc001ac132ff624685), [`1551893a`](https://github.com/toptal/davinci/commit/1551893a3b932f9a0362090b461b5c340ae1fedb)]:
- @toptal/davinci-skeleton@7.5.2
## 3.3.4
### Patch Changes
- Updated dependencies [[`d3597ca8`](https://github.com/toptal/davinci/commit/d3597ca80f999a87a367a060ae267b0e26d202dc)]:
- @toptal/davinci-skeleton@7.5.1
## 3.3.3
### Patch Changes
- Updated dependencies [[`a164d75a`](https://github.com/toptal/davinci/commit/a164d75a44364cf40cf1cc5c4101c13314e125d2)]:
- @toptal/davinci-skeleton@7.5.0
## 3.3.2
### Patch Changes
- Updated dependencies [[`e5f4b21e`](https://github.com/toptal/davinci/commit/e5f4b21e86347080bb9107e6e4d823f2fb548650)]:
- @toptal/davinci-skeleton@7.4.2
## 3.3.1
### Patch Changes
- Updated dependencies [[`92f8d6d7`](https://github.com/toptal/davinci/commit/92f8d6d75550dc3c56d16c874d3d6b2369c57d37)]:
- @toptal/davinci-skeleton@7.4.1
## 3.3.0
### Minor Changes
- [#1441](https://github.com/toptal/davinci/pull/1441) [`8fb0b093`](https://github.com/toptal/davinci/commit/8fb0b093aaac3104590acb2c4970bbd5d52b4864) Thanks [@dmaklygin](https://github.com/dmaklygin)! - - Fix incorrect storybook import
- Add davinci-storybook-theme to skeleton
### Patch Changes
- Updated dependencies [[`8fb0b093`](https://github.com/toptal/davinci/commit/8fb0b093aaac3104590acb2c4970bbd5d52b4864)]:
- @toptal/davinci-skeleton@7.4.0
## 3.2.7
### Patch Changes
- Updated dependencies [[`3b9f1a7b`](https://github.com/toptal/davinci/commit/3b9f1a7bd12eb0aa93a09a52dc8dadb02778f70b)]:
- @toptal/davinci-skeleton@7.3.1
## 3.2.6
### Patch Changes
- Updated dependencies [[`45eabb19`](https://github.com/toptal/davinci/commit/45eabb194ccb01173182b5bad6f63b0184a8f640), [`b2f9c785`](https://github.com/toptal/davinci/commit/b2f9c78595d5f65c771b44c6dc2ca0a328f8c42c), [`53fdce83`](https://github.com/toptal/davinci/commit/53fdce83b96d7c33c5b9aa55c5cbd5e917664287)]:
- @toptal/davinci-skeleton@7.3.0
## 3.2.5
### Patch Changes
- Updated dependencies [[`10aeb296`](https://github.com/toptal/davinci/commit/10aeb29639561e6d7c1dfbaf75a43c3390320db9)]:
- @toptal/davinci-skeleton@7.2.0
## 3.2.4
### Patch Changes
- Updated dependencies [[`f3a6867d`](https://github.com/toptal/davinci/commit/f3a6867daa9addedcf28873a46625f2864e0ed0a)]:
- @toptal/davinci-skeleton@7.1.2
## 3.2.3
### Patch Changes
- Updated dependencies [[`64c000c2`](https://github.com/toptal/davinci/commit/64c000c25d97df2c8853a6cf80b7ca81461dae24)]:
- @toptal/davinci-cli-shared@1.5.4
## 3.2.2
### Patch Changes
- Updated dependencies [[`3013b76d`](https://github.com/toptal/davinci/commit/3013b76d7f957924885f3e5933f5227ff42a09e1)]:
- @toptal/davinci-cli-shared@1.5.3
## 3.2.1
### Patch Changes
- Updated dependencies [[`5410a3b7`](https://github.com/toptal/davinci/commit/5410a3b73e3dbbc96ad8dbeca0bdde03d8d2d676)]:
- @toptal/davinci-skeleton@7.1.1
## 3.2.0
### Minor Changes
- [#1342](https://github.com/toptal/davinci/pull/1342) [`44c9deb2`](https://github.com/toptal/davinci/commit/44c9deb22966eabf0bc12adeadb732788e039a8f) Thanks [@OndrejTuma](https://github.com/OndrejTuma)! - - `davinci new-workflow integration-tests` now generate different workflows for monorepo and SPA
### Patch Changes
- Updated dependencies [[`44c9deb2`](https://github.com/toptal/davinci/commit/44c9deb22966eabf0bc12adeadb732788e039a8f)]:
- @toptal/davinci-skeleton@7.1.0
## 3.1.22
### Patch Changes
- Updated dependencies [[`1212e098`](https://github.com/toptal/davinci/commit/1212e098c668fc1c87ee9b1824edf0bc80509bc4)]:
- @toptal/davinci-cli-shared@1.5.2
## 3.1.21
### Patch Changes
- Updated dependencies [[`77adee1f`](https://github.com/toptal/davinci/commit/77adee1f003f6336279ca4ac24476bdece8d9828)]:
- @toptal/davinci-skeleton@7.0.0
## 3.1.20
### Patch Changes
- Updated dependencies [[`e3aac3fc`](https://github.com/toptal/davinci/commit/e3aac3fc5603664e5b2a49fca96d794e229cf498)]:
- @toptal/davinci-skeleton@6.2.1
## 3.1.19
### Patch Changes
- Updated dependencies [[`bdfa5815`](https://github.com/toptal/davinci/commit/bdfa5815191a4e36b12db8624c1e2c8be326d4b9), [`2f7c5ed6`](https://github.com/toptal/davinci/commit/2f7c5ed605257a151a41c0c6bea285f17dd1fe4e), [`24768908`](https://github.com/toptal/davinci/commit/247689082e24d6d2f3c9f4f35a4dfb76f052e4c8)]:
- @toptal/davinci-skeleton@6.2.0
## 3.1.18
### Patch Changes
- Updated dependencies [[`c88fdba9`](https://github.com/toptal/davinci/commit/c88fdba90bae5eff79e56e6cbc8d026333446d6e), [`9d03501b`](https://github.com/toptal/davinci/commit/9d03501bdc91dfe1543e00b611ee147426072eb1), [`5eeff33f`](https://github.com/toptal/davinci/commit/5eeff33f6a662db313b5a205b91ad5060eeb2a1e), [`7863d041`](https://github.com/toptal/davinci/commit/7863d04184e8fa49430ffd4e5fb24f61f5f1408e)]:
- @toptal/davinci-skeleton@6.1.0
## 3.1.17
### Patch Changes
- Updated dependencies [[`a2e88136`](https://github.com/toptal/davinci/commit/a2e8813627878c14888c6e24125d51e3c4450676)]:
- @toptal/davinci-skeleton@6.0.4
## 3.1.16
### Patch Changes
- Updated dependencies [[`659b87be`](https://github.com/toptal/davinci/commit/659b87be8a00a5ab5663ab92a6e78b37d41e5fc2)]:
- @toptal/davinci-skeleton@6.0.3
## 3.1.15
### Patch Changes
- Updated dependencies [[`18e97706`](https://github.com/toptal/davinci/commit/18e97706f5b30589ccd6b2277e0260248a1bdca5)]:
- @toptal/davinci-skeleton@6.0.2
## 3.1.14
### Patch Changes
- Updated dependencies [[`a99253c4`](https://github.com/toptal/davinci/commit/a99253c41eb80f5a31d66766d0efd986d1710bd1)]:
- @toptal/davinci-skeleton@6.0.1
## 3.1.13
### Patch Changes
- Updated dependencies [[`0ce6d842`](https://github.com/toptal/davinci/commit/0ce6d8429f6cebcf1ad7c20ae1316fccc4bb1642), [`0ce6d842`](https://github.com/toptal/davinci/commit/0ce6d8429f6cebcf1ad7c20ae1316fccc4bb1642), [`2c8d4c8b`](https://github.com/toptal/davinci/commit/2c8d4c8b405782001bbbf92a5713013fb1426f87)]:
- @toptal/davinci-skeleton@6.0.0
- @toptal/davinci-skeleton-sub-app@1.2.0
## 3.1.12
### Patch Changes
- Updated dependencies [[`144e5e45`](https://github.com/toptal/davinci/commit/144e5e4596d8f06b46bdab399225c8e3647113fe)]:
- @toptal/davinci-skeleton-sub-app@1.1.1
- @toptal/davinci-skeleton@5.0.2
## 3.1.11
### Patch Changes
- Updated dependencies [[`5f94c2e7`](https://github.com/toptal/davinci/commit/5f94c2e78b6ffc0f4a7ffcaf74b4017022e40e2f)]:
- @toptal/davinci-skeleton@5.0.1
## 3.1.10
### Patch Changes
- Updated dependencies [[`7ed96238`](https://github.com/toptal/davinci/commit/7ed96238b5d8ad9609eb255b7dc4ecbe6efae55e)]:
- @toptal/davinci-skeleton@5.0.0
## 3.1.9
### Patch Changes
- Updated dependencies [[`4c913367`](https://github.com/toptal/davinci/commit/4c91336791c1d1e9ff15fddf661cafe3fbf33a8e)]:
- @toptal/davinci-skeleton@4.8.2
## 3.1.8
### Patch Changes
- Updated dependencies [[`fd12ab7a`](https://github.com/toptal/davinci/commit/fd12ab7a23fe27c31a65672dd0c025713386e41d)]:
- @toptal/davinci-skeleton@4.8.1
## 3.1.7
### Patch Changes
- Updated dependencies [[`c5db5c7b`](https://github.com/toptal/davinci/commit/c5db5c7bf02e10737fbd86aceb3f433ac634c2e4)]:
- @toptal/davinci-skeleton@4.8.0
- @toptal/davinci-skeleton-sub-app@1.1.0
## 3.1.6
### Patch Changes
- Updated dependencies [[`069bd177`](https://github.com/toptal/davinci/commit/069bd17784f850ba3b9483d63284782b18fdf261), [`7dd8b681`](https://github.com/toptal/davinci/commit/7dd8b68177d595538dd8d5cff5c0654d92d68659)]:
- @toptal/davinci-skeleton@4.7.0
- @toptal/davinci-cli-shared@1.5.1
## 3.1.5
### Patch Changes
- Updated dependencies [[`69df67b9`](https://github.com/toptal/davinci/commit/69df67b96f712c2464968cb46d367e1163a5b7bd)]:
- @toptal/davinci-skeleton@4.6.0
## 3.1.4
### Patch Changes
- Updated dependencies [[`e7675365`](https://github.com/toptal/davinci/commit/e7675365aebbf9f259232ce5733863998a6ed3a9)]:
- @toptal/davinci-skeleton@4.5.0
## 3.1.3
### Patch Changes
- Updated dependencies [[`0937d0ab`](https://github.com/toptal/davinci/commit/0937d0ab9dc95c98d194432cc815a9d17631c5b8)]:
- @toptal/davinci-skeleton@4.4.0
## 3.1.2
### Patch Changes
- Updated dependencies [[`ab278c3d`](https://github.com/toptal/davinci/commit/ab278c3d26b0a502091b70fa61554c8141f2b6c7)]:
- @toptal/davinci-skeleton@4.3.0
## 3.1.1
### Patch Changes
- Updated dependencies [[`d2319b35`](https://github.com/toptal/davinci/commit/d2319b350bb5aac23a12572174ad143de24bc107)]:
- @toptal/davinci-skeleton@4.2.0
## 3.1.0
### Minor Changes
- [#1124](https://github.com/toptal/davinci/pull/1124) [`0588901d`](https://github.com/toptal/davinci/commit/0588901dad937c0c16755cdd242a8763405a7ad6) Thanks [@dmaklygin1](https://github.com/dmaklygin1)! - Create Github Workflows package
### Patch Changes
- Updated dependencies [[`0588901d`](https://github.com/toptal/davinci/commit/0588901dad937c0c16755cdd242a8763405a7ad6)]:
- @toptal/davinci-skeleton@4.1.0
## 3.0.2
### Patch Changes
- [#1102](https://github.com/toptal/davinci/pull/1102) [`cf2e0b30`](https://github.com/toptal/davinci/commit/cf2e0b305a00c9b9a5686838ea11f7d62bba5c00) Thanks [@denieler](https://github.com/denieler)! - Fix packages internal dependencies to bump main @toptal/davinci package every time any internal package changed.
- Updated dependencies [[`cf2e0b30`](https://github.com/toptal/davinci/commit/cf2e0b305a00c9b9a5686838ea11f7d62bba5c00)]:
- @toptal/davinci-skeleton@4.0.2
## 3.0.1
### Patch Changes
- Updated dependencies [[`3d7dfece`](https://github.com/toptal/davinci/commit/3d7dfece958e1417e768842243667c0eaa138951)]:
- @toptal/davinci-skeleton@4.0.0
- @toptal/davinci-skeleton-sub-app@1.0.0
## 3.0.0
### Major Changes
- [#1002](https://github.com/toptal/davinci/pull/1002) [`eec2e673`](https://github.com/toptal/davinci/commit/eec2e673a13e2cd0b78454ba173a78c8fe0b6813) Thanks [@denieler](https://github.com/denieler)! - Rename domains to namespaces in monorepos. New libs and apps are created in namespaces instead of domains.
BREAKING CHANGES:
- `davinci new-app` command has changed argument to `--namespace` instead of `--domain` and creates apps in `/namespaces/*` folder from now in monorepo.
- `davinci new-lib` command has changed argument to `--namespace` instead of `--domain` and creates apps in `/namespaces/*` folder from now in monorepo.
## 2.2.4
### Patch Changes
- Updated dependencies [[`da5b2c3e`](https://github.com/toptal/davinci/commit/da5b2c3e04f06b3fb1ffa0bbdbe6862ced9f1f51)]:
- @toptal/davinci-skeleton@3.0.0
## 2.2.3
### Patch Changes
- [#904](https://github.com/toptal/davinci/pull/904) [`4a008cd4`](https://github.com/toptal/davinci/commit/4a008cd4e04bd81146658ad1a11e8cc6708db9b2) Thanks [@denieler](https://github.com/denieler)! - bootstrap: Fix external skeleton imports
- Updated dependencies [[`4a008cd4`](https://github.com/toptal/davinci/commit/4a008cd4e04bd81146658ad1a11e8cc6708db9b2)]:
- @toptal/davinci-skeleton-sub-app@0.1.2
## 2.2.2
### Patch Changes
- [#900](https://github.com/toptal/davinci/pull/900) [`b8c692f6`](https://github.com/toptal/davinci/commit/b8c692f6acd4f691d5e6ae0358f0bb5ae7ef0803) Thanks [@denieler](https://github.com/denieler)! - bootstrap: Fix skeleton libs external dependencies
- Updated dependencies [[`b8c692f6`](https://github.com/toptal/davinci/commit/b8c692f6acd4f691d5e6ae0358f0bb5ae7ef0803)]:
- @toptal/davinci-skeleton-lib@0.1.1
- @toptal/davinci-skeleton-sub-app@0.1.1
## 2.2.1
### Patch Changes
- [#898](https://github.com/toptal/davinci/pull/898) [`1a710c2d`](https://github.com/toptal/davinci/commit/1a710c2dd10fb5c0a1f0b2853bf76456a01fc405) Thanks [@denieler](https://github.com/denieler)! - bootstrap: fix bootstrap dependencies for skeleton sub-packages
## 2.2.0
### Minor Changes
- [#891](https://github.com/toptal/davinci/pull/891) [`16abf510`](https://github.com/toptal/davinci/commit/16abf510bbfe3d5d90c7ba6c8d109ca7ac52e4b1) Thanks [@denieler](https://github.com/denieler)! - bootstrap: Add bootstrapping of the libs and apps in monorepos
## 2.1.74
### Patch Changes
- [#835](https://github.com/toptal/davinci/pull/835) [`1f91f3d`](https://github.com/toptal/davinci/commit/1f91f3d3f314873f3639a8308b049c507904f443) Thanks [@denieler](https://github.com/denieler)! - Replace picasso-lab components with picasso components, due to their move.
- Updated dependencies [[`1f91f3d`](https://github.com/toptal/davinci/commit/1f91f3d3f314873f3639a8308b049c507904f443)]:
- @toptal/davinci-skeleton@2.1.3
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.1.73](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.72...@toptal/davinci-bootstrap@2.1.73) (2021-05-13)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.72](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.71...@toptal/davinci-bootstrap@2.1.72) (2021-05-12)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.71](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.70...@toptal/davinci-bootstrap@2.1.71) (2021-04-21)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.70](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.69...@toptal/davinci-bootstrap@2.1.70) (2021-04-15)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.69](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.68...@toptal/davinci-bootstrap@2.1.69) (2021-04-15)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.68](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.67...@toptal/davinci-bootstrap@2.1.68) (2021-04-15)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.67](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.66...@toptal/davinci-bootstrap@2.1.67) (2021-04-13)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.66](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.65...@toptal/davinci-bootstrap@2.1.66) (2021-04-12)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.65](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.64...@toptal/davinci-bootstrap@2.1.65) (2021-04-09)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.64](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.63...@toptal/davinci-bootstrap@2.1.64) (2021-04-08)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.63](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.62...@toptal/davinci-bootstrap@2.1.63) (2021-03-26)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.62](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.61...@toptal/davinci-bootstrap@2.1.62) (2021-03-23)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.61](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.60...@toptal/davinci-bootstrap@2.1.61) (2021-02-24)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.60](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.59...@toptal/davinci-bootstrap@2.1.60) (2021-02-23)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.59](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.58...@toptal/davinci-bootstrap@2.1.59) (2021-02-23)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.58](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.57...@toptal/davinci-bootstrap@2.1.58) (2021-02-18)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.57](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.56...@toptal/davinci-bootstrap@2.1.57) (2021-02-17)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.56](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.55...@toptal/davinci-bootstrap@2.1.56) (2021-02-17)
### Bug Fixes
- **bootstrap:** fix skeleton license ([#693](https://github.com/toptal/davinci/issues/693)) ([dc22b6f](https://github.com/toptal/davinci/commit/dc22b6f476fb32bb32f3fcf6ed481e2cf4cef48f))
## [2.1.55](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.54...@toptal/davinci-bootstrap@2.1.55) (2021-02-16)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.54](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.53...@toptal/davinci-bootstrap@2.1.54) (2021-02-16)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.53](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.52...@toptal/davinci-bootstrap@2.1.53) (2021-02-12)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.52](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.51...@toptal/davinci-bootstrap@2.1.52) (2021-01-25)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.51](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.50...@toptal/davinci-bootstrap@2.1.51) (2021-01-21)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.50](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.49...@toptal/davinci-bootstrap@2.1.50) (2020-12-24)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.49](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.48...@toptal/davinci-bootstrap@2.1.49) (2020-12-24)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.48](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.47...@toptal/davinci-bootstrap@2.1.48) (2020-12-24)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.47](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.46...@toptal/davinci-bootstrap@2.1.47) (2020-12-24)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.46](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.45...@toptal/davinci-bootstrap@2.1.46) (2020-12-24)
### Bug Fixes
- prepare tests to picasso v5 ([#647](https://github.com/toptal/davinci/issues/647)) ([062eaf0](https://github.com/toptal/davinci/commit/062eaf065797f429fd66837ce4e3e1b543babaf0))
## [2.1.45](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.44...@toptal/davinci-bootstrap@2.1.45) (2020-12-21)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.44](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.43...@toptal/davinci-bootstrap@2.1.44) (2020-12-18)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.43](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.42...@toptal/davinci-bootstrap@2.1.43) (2020-12-18)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.42](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.41...@toptal/davinci-bootstrap@2.1.42) (2020-12-18)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.41](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.40...@toptal/davinci-bootstrap@2.1.41) (2020-12-16)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.40](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.39...@toptal/davinci-bootstrap@2.1.40) (2020-12-16)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.39](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.38...@toptal/davinci-bootstrap@2.1.39) (2020-12-15)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.38](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.37...@toptal/davinci-bootstrap@2.1.38) (2020-12-11)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.37](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.36...@toptal/davinci-bootstrap@2.1.37) (2020-12-11)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.36](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.35...@toptal/davinci-bootstrap@2.1.36) (2020-12-11)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.35](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.34...@toptal/davinci-bootstrap@2.1.35) (2020-12-11)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.34](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.33...@toptal/davinci-bootstrap@2.1.34) (2020-12-10)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.33](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.32...@toptal/davinci-bootstrap@2.1.33) (2020-12-10)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.32](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.31...@toptal/davinci-bootstrap@2.1.32) (2020-12-10)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.31](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.30...@toptal/davinci-bootstrap@2.1.31) (2020-12-10)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.30](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.29...@toptal/davinci-bootstrap@2.1.30) (2020-12-09)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.29](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.28...@toptal/davinci-bootstrap@2.1.29) (2020-11-24)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.28](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.27...@toptal/davinci-bootstrap@2.1.28) (2020-11-23)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.27](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.26...@toptal/davinci-bootstrap@2.1.27) (2020-11-20)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.26](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.25...@toptal/davinci-bootstrap@2.1.26) (2020-11-19)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.25](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.24...@toptal/davinci-bootstrap@2.1.25) (2020-11-19)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.24](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.23...@toptal/davinci-bootstrap@2.1.24) (2020-11-19)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.23](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.22...@toptal/davinci-bootstrap@2.1.23) (2020-11-18)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.22](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.21...@toptal/davinci-bootstrap@2.1.22) (2020-11-17)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.21](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.20...@toptal/davinci-bootstrap@2.1.21) (2020-11-17)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.20](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.19...@toptal/davinci-bootstrap@2.1.20) (2020-11-17)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.19](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.18...@toptal/davinci-bootstrap@2.1.19) (2020-11-16)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.18](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.17...@toptal/davinci-bootstrap@2.1.18) (2020-11-16)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.17](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.16...@toptal/davinci-bootstrap@2.1.17) (2020-11-16)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.16](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.15...@toptal/davinci-bootstrap@2.1.16) (2020-11-09)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.15](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.14...@toptal/davinci-bootstrap@2.1.15) (2020-11-09)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.14](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.13...@toptal/davinci-bootstrap@2.1.14) (2020-11-09)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.13](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.12...@toptal/davinci-bootstrap@2.1.13) (2020-11-09)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.12](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.11...@toptal/davinci-bootstrap@2.1.12) (2020-11-06)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.11](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.10...@toptal/davinci-bootstrap@2.1.11) (2020-11-06)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.10](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.9...@toptal/davinci-bootstrap@2.1.10) (2020-11-05)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.9](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.8...@toptal/davinci-bootstrap@2.1.9) (2020-11-04)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.8](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.7...@toptal/davinci-bootstrap@2.1.8) (2020-11-03)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.7](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.6...@toptal/davinci-bootstrap@2.1.7) (2020-11-03)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.6](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.5...@toptal/davinci-bootstrap@2.1.6) (2020-11-03)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.5](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.4...@toptal/davinci-bootstrap@2.1.5) (2020-11-03)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.4](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.3...@toptal/davinci-bootstrap@2.1.4) (2020-11-02)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.3](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.2...@toptal/davinci-bootstrap@2.1.3) (2020-11-02)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.2](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.1...@toptal/davinci-bootstrap@2.1.2) (2020-10-27)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.1.1](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.1.0...@toptal/davinci-bootstrap@2.1.1) (2020-10-22)
**Note:** Version bump only for package @toptal/davinci-bootstrap
# [2.1.0](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.29...@toptal/davinci-bootstrap@2.1.0) (2020-10-22)
### Features
- move arch docs to confluence ([#517](https://github.com/toptal/davinci/issues/517)) ([cfd819d](https://github.com/toptal/davinci/commit/cfd819d666dd47d8b84fe98d284a93efa81ccd26))
## [2.0.29](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.28...@toptal/davinci-bootstrap@2.0.29) (2020-10-15)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.0.28](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.27...@toptal/davinci-bootstrap@2.0.28) (2020-10-15)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.0.27](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.26...@toptal/davinci-bootstrap@2.0.27) (2020-10-14)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.0.26](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.25...@toptal/davinci-bootstrap@2.0.26) (2020-10-10)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.0.25](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.24...@toptal/davinci-bootstrap@2.0.25) (2020-10-09)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.0.24](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.23...@toptal/davinci-bootstrap@2.0.24) (2020-10-08)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.0.23](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.22...@toptal/davinci-bootstrap@2.0.23) (2020-10-07)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.0.22](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.21...@toptal/davinci-bootstrap@2.0.22) (2020-10-07)
**Note:** Version bump only for package @toptal/davinci-bootstrap
## [2.0.21](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.20...@toptal/davinci-bootstrap@2.0.21) (2020-10-07)
**Note:** Version bump on