# 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 only for package @toptal/davinci-bootstrap

## [2.0.20](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.19...@toptal/davinci-bootstrap@2.0.20) (2020-10-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.19](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.18...@toptal/davinci-bootstrap@2.0.19) (2020-10-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.18](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.17...@toptal/davinci-bootstrap@2.0.18) (2020-10-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.17](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.16...@toptal/davinci-bootstrap@2.0.17) (2020-10-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.16](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.15...@toptal/davinci-bootstrap@2.0.16) (2020-10-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.15](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.14...@toptal/davinci-bootstrap@2.0.15) (2020-10-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.14](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.13...@toptal/davinci-bootstrap@2.0.14) (2020-10-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.13](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.12...@toptal/davinci-bootstrap@2.0.13) (2020-10-01)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.12](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.11...@toptal/davinci-bootstrap@2.0.12) (2020-10-01)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.11](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.10...@toptal/davinci-bootstrap@2.0.11) (2020-09-28)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.10](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.9...@toptal/davinci-bootstrap@2.0.10) (2020-09-28)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.9](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.8...@toptal/davinci-bootstrap@2.0.9) (2020-09-25)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.8](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.7...@toptal/davinci-bootstrap@2.0.8) (2020-09-24)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.7](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.6...@toptal/davinci-bootstrap@2.0.7) (2020-09-24)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.6](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.5...@toptal/davinci-bootstrap@2.0.6) (2020-09-23)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.5](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.4...@toptal/davinci-bootstrap@2.0.5) (2020-09-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.4](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.3...@toptal/davinci-bootstrap@2.0.4) (2020-09-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.3](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.2...@toptal/davinci-bootstrap@2.0.3) (2020-09-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.2](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.1...@toptal/davinci-bootstrap@2.0.2) (2020-09-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [2.0.1](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@2.0.0...@toptal/davinci-bootstrap@2.0.1) (2020-09-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

# [2.0.0](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.2.3...@toptal/davinci-bootstrap@2.0.0) (2020-09-18)

### Features

- **engine:** [FX-1215] Add sentry source maps uploading ([#532](https://github.com/toptal/davinci/issues/532)) ([4b16781](https://github.com/toptal/davinci/commit/4b16781))

### BREAKING CHANGES

- **engine:** remove --as-library argument from `davinci engine build` command. `davinci engine compile-package` should be used instead.

## [1.2.3](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.2.2...@toptal/davinci-bootstrap@1.2.3) (2020-09-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.2.2](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.2.1...@toptal/davinci-bootstrap@1.2.2) (2020-09-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.2.1](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.2.0...@toptal/davinci-bootstrap@1.2.1) (2020-09-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

# [1.2.0](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.42...@toptal/davinci-bootstrap@1.2.0) (2020-09-15)

### Features

- **skeleton:** Add apollo to skeleton app ([#521](https://github.com/toptal/davinci/issues/521)) ([2ff8033](https://github.com/toptal/davinci/commit/2ff8033))

## [1.1.42](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.41...@toptal/davinci-bootstrap@1.1.42) (2020-09-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.41](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.40...@toptal/davinci-bootstrap@1.1.41) (2020-09-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.40](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.39...@toptal/davinci-bootstrap@1.1.40) (2020-09-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.39](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.37...@toptal/davinci-bootstrap@1.1.39) (2020-09-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.38](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.37...@toptal/davinci-bootstrap@1.1.38) (2020-09-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.37](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.36...@toptal/davinci-bootstrap@1.1.37) (2020-09-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.36](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.35...@toptal/davinci-bootstrap@1.1.36) (2020-09-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.35](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.34...@toptal/davinci-bootstrap@1.1.35) (2020-08-31)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.34](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.33...@toptal/davinci-bootstrap@1.1.34) (2020-08-31)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.33](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.32...@toptal/davinci-bootstrap@1.1.33) (2020-08-31)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.32](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.31...@toptal/davinci-bootstrap@1.1.32) (2020-08-31)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.31](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.30...@toptal/davinci-bootstrap@1.1.31) (2020-08-28)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.30](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.29...@toptal/davinci-bootstrap@1.1.30) (2020-08-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.29](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.28...@toptal/davinci-bootstrap@1.1.29) (2020-08-13)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.28](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.27...@toptal/davinci-bootstrap@1.1.28) (2020-08-13)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.27](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.26...@toptal/davinci-bootstrap@1.1.27) (2020-08-12)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.26](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.25...@toptal/davinci-bootstrap@1.1.26) (2020-08-12)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.25](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.24...@toptal/davinci-bootstrap@1.1.25) (2020-08-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.24](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.23...@toptal/davinci-bootstrap@1.1.24) (2020-08-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.23](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.22...@toptal/davinci-bootstrap@1.1.23) (2020-08-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.22](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.21...@toptal/davinci-bootstrap@1.1.22) (2020-08-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.21](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.20...@toptal/davinci-bootstrap@1.1.21) (2020-08-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.20](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.19...@toptal/davinci-bootstrap@1.1.20) (2020-08-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.19](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.18...@toptal/davinci-bootstrap@1.1.19) (2020-08-07)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.18](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.17...@toptal/davinci-bootstrap@1.1.18) (2020-08-07)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.17](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.16...@toptal/davinci-bootstrap@1.1.17) (2020-08-07)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.16](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.15...@toptal/davinci-bootstrap@1.1.16) (2020-08-07)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.15](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.14...@toptal/davinci-bootstrap@1.1.15) (2020-08-07)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.14](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.13...@toptal/davinci-bootstrap@1.1.14) (2020-08-07)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.13](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.12...@toptal/davinci-bootstrap@1.1.13) (2020-08-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.12](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.11...@toptal/davinci-bootstrap@1.1.12) (2020-08-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.11](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.10...@toptal/davinci-bootstrap@1.1.11) (2020-08-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.10](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.9...@toptal/davinci-bootstrap@1.1.10) (2020-08-03)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.9](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.8...@toptal/davinci-bootstrap@1.1.9) (2020-07-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.8](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.7...@toptal/davinci-bootstrap@1.1.8) (2020-07-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.7](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.6...@toptal/davinci-bootstrap@1.1.7) (2020-07-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.6](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.5...@toptal/davinci-bootstrap@1.1.6) (2020-07-29)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.5](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.4...@toptal/davinci-bootstrap@1.1.5) (2020-07-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.4](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.3...@toptal/davinci-bootstrap@1.1.4) (2020-07-23)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.3](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.2...@toptal/davinci-bootstrap@1.1.3) (2020-07-23)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.2](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.1...@toptal/davinci-bootstrap@1.1.2) (2020-07-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.1.1](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.1.0...@toptal/davinci-bootstrap@1.1.1) (2020-07-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

# [1.1.0](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.51...@toptal/davinci-bootstrap@1.1.0) (2020-07-15)

### Features

- **skeleton:** add start app docs ([#444](https://github.com/toptal/davinci/issues/444)) ([8bb675b](https://github.com/toptal/davinci/commit/8bb675b))

## [1.0.51](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.50...@toptal/davinci-bootstrap@1.0.51) (2020-07-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.50](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.49...@toptal/davinci-bootstrap@1.0.50) (2020-07-14)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.49](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.48...@toptal/davinci-bootstrap@1.0.49) (2020-07-14)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.48](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.47...@toptal/davinci-bootstrap@1.0.48) (2020-07-14)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.47](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.46...@toptal/davinci-bootstrap@1.0.47) (2020-07-13)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.46](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.45...@toptal/davinci-bootstrap@1.0.46) (2020-07-13)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.45](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.44...@toptal/davinci-bootstrap@1.0.45) (2020-07-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.44](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.43...@toptal/davinci-bootstrap@1.0.44) (2020-07-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.43](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.42...@toptal/davinci-bootstrap@1.0.43) (2020-07-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.42](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.41...@toptal/davinci-bootstrap@1.0.42) (2020-07-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.41](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.40...@toptal/davinci-bootstrap@1.0.41) (2020-07-01)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.40](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.39...@toptal/davinci-bootstrap@1.0.40) (2020-07-01)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.39](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.38...@toptal/davinci-bootstrap@1.0.39) (2020-07-01)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.38](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.37...@toptal/davinci-bootstrap@1.0.38) (2020-06-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.37](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.36...@toptal/davinci-bootstrap@1.0.37) (2020-06-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.36](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.35...@toptal/davinci-bootstrap@1.0.36) (2020-06-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.35](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.34...@toptal/davinci-bootstrap@1.0.35) (2020-06-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.34](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.33...@toptal/davinci-bootstrap@1.0.34) (2020-06-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.33](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.32...@toptal/davinci-bootstrap@1.0.33) (2020-06-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.32](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.31...@toptal/davinci-bootstrap@1.0.32) (2020-06-25)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.31](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.30...@toptal/davinci-bootstrap@1.0.31) (2020-06-24)

### Bug Fixes

- add typescript when creating new app ([#422](https://github.com/toptal/davinci/issues/422)) ([1ecfd80](https://github.com/toptal/davinci/commit/1ecfd80))

## [1.0.30](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.29...@toptal/davinci-bootstrap@1.0.30) (2020-06-24)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.29](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.28...@toptal/davinci-bootstrap@1.0.29) (2020-06-24)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.28](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.27...@toptal/davinci-bootstrap@1.0.28) (2020-06-16)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.27](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.26...@toptal/davinci-bootstrap@1.0.27) (2020-06-16)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.26](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.25...@toptal/davinci-bootstrap@1.0.26) (2020-06-16)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.25](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.24...@toptal/davinci-bootstrap@1.0.25) (2020-06-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.24](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.23...@toptal/davinci-bootstrap@1.0.24) (2020-06-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.23](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.22...@toptal/davinci-bootstrap@1.0.23) (2020-06-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.22](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.21...@toptal/davinci-bootstrap@1.0.22) (2020-06-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.21](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.20...@toptal/davinci-bootstrap@1.0.21) (2020-06-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.20](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.19...@toptal/davinci-bootstrap@1.0.20) (2020-06-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.19](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.18...@toptal/davinci-bootstrap@1.0.19) (2020-06-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.18](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.17...@toptal/davinci-bootstrap@1.0.18) (2020-06-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.17](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.16...@toptal/davinci-bootstrap@1.0.17) (2020-06-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.16](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.15...@toptal/davinci-bootstrap@1.0.16) (2020-06-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.15](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.14...@toptal/davinci-bootstrap@1.0.15) (2020-06-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.14](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.13...@toptal/davinci-bootstrap@1.0.14) (2020-06-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.13](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.12...@toptal/davinci-bootstrap@1.0.13) (2020-06-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.12](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.11...@toptal/davinci-bootstrap@1.0.12) (2020-06-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.11](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.10...@toptal/davinci-bootstrap@1.0.11) (2020-06-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.10](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.9...@toptal/davinci-bootstrap@1.0.10) (2020-06-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.9](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.8...@toptal/davinci-bootstrap@1.0.9) (2020-05-29)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.8](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.7...@toptal/davinci-bootstrap@1.0.8) (2020-05-29)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.7](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.6...@toptal/davinci-bootstrap@1.0.7) (2020-05-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.6](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.5...@toptal/davinci-bootstrap@1.0.6) (2020-05-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.5](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.4...@toptal/davinci-bootstrap@1.0.5) (2020-05-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.4](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.3...@toptal/davinci-bootstrap@1.0.4) (2020-05-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.3](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.2...@toptal/davinci-bootstrap@1.0.3) (2020-05-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.2](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.1...@toptal/davinci-bootstrap@1.0.2) (2020-05-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [1.0.1](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@1.0.0...@toptal/davinci-bootstrap@1.0.1) (2020-05-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

# [1.0.0](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.185...@toptal/davinci-bootstrap@1.0.0) (2020-05-21)

### Features

- **qa:** [SPT-562] Upgrade styled-components to v5 ([#372](https://github.com/toptal/davinci/issues/372)) ([4887e65](https://github.com/toptal/davinci/commit/4887e65))

### BREAKING CHANGES

- **qa:** davinci-qa is going to support only
  styled-components@^5.0.0, because of jest-styled-components package not
  having backwards compatibility with styled-components < 5.0.0

## [0.1.185](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.184...@toptal/davinci-bootstrap@0.1.185) (2020-05-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.184](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.183...@toptal/davinci-bootstrap@0.1.184) (2020-05-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.183](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.182...@toptal/davinci-bootstrap@0.1.183) (2020-05-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.182](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.181...@toptal/davinci-bootstrap@0.1.182) (2020-05-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.181](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.180...@toptal/davinci-bootstrap@0.1.181) (2020-05-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.180](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.179...@toptal/davinci-bootstrap@0.1.180) (2020-05-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.179](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.178...@toptal/davinci-bootstrap@0.1.179) (2020-05-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.178](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.177...@toptal/davinci-bootstrap@0.1.178) (2020-05-12)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.177](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.176...@toptal/davinci-bootstrap@0.1.177) (2020-05-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.176](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.175...@toptal/davinci-bootstrap@0.1.176) (2020-05-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.175](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.174...@toptal/davinci-bootstrap@0.1.175) (2020-05-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.174](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.173...@toptal/davinci-bootstrap@0.1.174) (2020-05-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.173](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.172...@toptal/davinci-bootstrap@0.1.173) (2020-04-30)

### Bug Fixes

- install specific version of styled-components ([#347](https://github.com/toptal/davinci/issues/347)) ([aae7a60](https://github.com/toptal/davinci/commit/aae7a60))

## [0.1.172](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.171...@toptal/davinci-bootstrap@0.1.172) (2020-04-29)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.171](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.170...@toptal/davinci-bootstrap@0.1.171) (2020-04-29)

### Bug Fixes

- broken test in skeleton ([#346](https://github.com/toptal/davinci/issues/346)) ([25efe36](https://github.com/toptal/davinci/commit/25efe36))

## [0.1.170](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.169...@toptal/davinci-bootstrap@0.1.170) (2020-04-29)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.169](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.168...@toptal/davinci-bootstrap@0.1.169) (2020-04-28)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.168](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.167...@toptal/davinci-bootstrap@0.1.168) (2020-04-28)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.167](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.166...@toptal/davinci-bootstrap@0.1.167) (2020-04-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.166](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.165...@toptal/davinci-bootstrap@0.1.166) (2020-04-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.165](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.164...@toptal/davinci-bootstrap@0.1.165) (2020-04-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.164](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.163...@toptal/davinci-bootstrap@0.1.164) (2020-04-23)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.163](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.162...@toptal/davinci-bootstrap@0.1.163) (2020-04-23)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.162](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.161...@toptal/davinci-bootstrap@0.1.162) (2020-04-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.161](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.160...@toptal/davinci-bootstrap@0.1.161) (2020-04-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.160](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.159...@toptal/davinci-bootstrap@0.1.160) (2020-04-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.159](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.158...@toptal/davinci-bootstrap@0.1.159) (2020-04-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.158](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.157...@toptal/davinci-bootstrap@0.1.158) (2020-04-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.157](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.156...@toptal/davinci-bootstrap@0.1.157) (2020-04-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.156](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.155...@toptal/davinci-bootstrap@0.1.156) (2020-04-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.155](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.154...@toptal/davinci-bootstrap@0.1.155) (2020-04-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.154](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.153...@toptal/davinci-bootstrap@0.1.154) (2020-04-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.153](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.152...@toptal/davinci-bootstrap@0.1.153) (2020-04-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.152](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.151...@toptal/davinci-bootstrap@0.1.152) (2020-04-16)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.151](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.150...@toptal/davinci-bootstrap@0.1.151) (2020-04-16)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.150](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.149...@toptal/davinci-bootstrap@0.1.150) (2020-04-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.149](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.148...@toptal/davinci-bootstrap@0.1.149) (2020-04-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.148](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.147...@toptal/davinci-bootstrap@0.1.148) (2020-04-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.147](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.146...@toptal/davinci-bootstrap@0.1.147) (2020-04-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.146](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.145...@toptal/davinci-bootstrap@0.1.146) (2020-04-13)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.145](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.144...@toptal/davinci-bootstrap@0.1.145) (2020-04-13)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.144](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.143...@toptal/davinci-bootstrap@0.1.144) (2020-04-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.143](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.142...@toptal/davinci-bootstrap@0.1.143) (2020-04-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.142](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.141...@toptal/davinci-bootstrap@0.1.142) (2020-04-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.141](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.140...@toptal/davinci-bootstrap@0.1.141) (2020-04-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.140](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.139...@toptal/davinci-bootstrap@0.1.140) (2020-04-08)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.139](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.138...@toptal/davinci-bootstrap@0.1.139) (2020-04-03)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.138](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.137...@toptal/davinci-bootstrap@0.1.138) (2020-03-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.137](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.136...@toptal/davinci-bootstrap@0.1.137) (2020-03-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.136](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.135...@toptal/davinci-bootstrap@0.1.136) (2020-03-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.135](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.134...@toptal/davinci-bootstrap@0.1.135) (2020-03-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.134](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.133...@toptal/davinci-bootstrap@0.1.134) (2020-03-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.133](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.132...@toptal/davinci-bootstrap@0.1.133) (2020-03-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.132](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.131...@toptal/davinci-bootstrap@0.1.132) (2020-03-25)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.131](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.130...@toptal/davinci-bootstrap@0.1.131) (2020-03-25)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.130](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.129...@toptal/davinci-bootstrap@0.1.130) (2020-03-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.129](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.128...@toptal/davinci-bootstrap@0.1.129) (2020-03-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.128](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.127...@toptal/davinci-bootstrap@0.1.128) (2020-03-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.127](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.126...@toptal/davinci-bootstrap@0.1.127) (2020-03-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.126](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.125...@toptal/davinci-bootstrap@0.1.126) (2020-03-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.125](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.124...@toptal/davinci-bootstrap@0.1.125) (2020-03-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.124](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.123...@toptal/davinci-bootstrap@0.1.124) (2020-03-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.123](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.122...@toptal/davinci-bootstrap@0.1.123) (2020-03-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.122](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.121...@toptal/davinci-bootstrap@0.1.122) (2020-03-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.121](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.120...@toptal/davinci-bootstrap@0.1.121) (2020-03-16)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.120](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.119...@toptal/davinci-bootstrap@0.1.120) (2020-03-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.119](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.118...@toptal/davinci-bootstrap@0.1.119) (2020-03-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.118](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.117...@toptal/davinci-bootstrap@0.1.118) (2020-03-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.117](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.116...@toptal/davinci-bootstrap@0.1.117) (2020-03-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.116](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.115...@toptal/davinci-bootstrap@0.1.116) (2020-03-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.115](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.114...@toptal/davinci-bootstrap@0.1.115) (2020-03-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.114](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.113...@toptal/davinci-bootstrap@0.1.114) (2020-03-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.113](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.112...@toptal/davinci-bootstrap@0.1.113) (2020-03-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.112](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.111...@toptal/davinci-bootstrap@0.1.112) (2020-03-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.111](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.110...@toptal/davinci-bootstrap@0.1.111) (2020-03-03)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.110](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.109...@toptal/davinci-bootstrap@0.1.110) (2020-03-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.109](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.108...@toptal/davinci-bootstrap@0.1.109) (2020-02-28)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.108](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.107...@toptal/davinci-bootstrap@0.1.108) (2020-02-24)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.107](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.106...@toptal/davinci-bootstrap@0.1.107) (2020-02-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.106](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.105...@toptal/davinci-bootstrap@0.1.106) (2020-02-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.105](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.104...@toptal/davinci-bootstrap@0.1.105) (2020-02-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.104](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.103...@toptal/davinci-bootstrap@0.1.104) (2020-02-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.103](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.102...@toptal/davinci-bootstrap@0.1.103) (2020-02-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.102](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.101...@toptal/davinci-bootstrap@0.1.102) (2020-02-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.101](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.100...@toptal/davinci-bootstrap@0.1.101) (2020-02-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.100](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.99...@toptal/davinci-bootstrap@0.1.100) (2020-02-17)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.99](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.98...@toptal/davinci-bootstrap@0.1.99) (2020-02-14)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.98](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.97...@toptal/davinci-bootstrap@0.1.98) (2020-02-14)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.97](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.96...@toptal/davinci-bootstrap@0.1.97) (2020-02-13)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.96](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.95...@toptal/davinci-bootstrap@0.1.96) (2020-02-13)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.95](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.94...@toptal/davinci-bootstrap@0.1.95) (2020-02-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.94](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.93...@toptal/davinci-bootstrap@0.1.94) (2020-02-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.93](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.92...@toptal/davinci-bootstrap@0.1.93) (2020-02-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.92](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.91...@toptal/davinci-bootstrap@0.1.92) (2020-02-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.91](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.90...@toptal/davinci-bootstrap@0.1.91) (2020-02-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.90](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.89...@toptal/davinci-bootstrap@0.1.90) (2020-02-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.89](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.88...@toptal/davinci-bootstrap@0.1.89) (2020-02-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.88](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.87...@toptal/davinci-bootstrap@0.1.88) (2020-02-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.87](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.86...@toptal/davinci-bootstrap@0.1.87) (2020-02-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.86](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.85...@toptal/davinci-bootstrap@0.1.86) (2020-02-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.85](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.84...@toptal/davinci-bootstrap@0.1.85) (2020-02-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.84](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.83...@toptal/davinci-bootstrap@0.1.84) (2020-02-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.83](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.82...@toptal/davinci-bootstrap@0.1.83) (2020-02-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.82](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.81...@toptal/davinci-bootstrap@0.1.82) (2020-02-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.81](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.80...@toptal/davinci-bootstrap@0.1.81) (2020-02-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.80](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.79...@toptal/davinci-bootstrap@0.1.80) (2020-02-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.79](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.78...@toptal/davinci-bootstrap@0.1.79) (2020-02-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.78](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.77...@toptal/davinci-bootstrap@0.1.78) (2020-02-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.77](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.76...@toptal/davinci-bootstrap@0.1.77) (2020-02-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.76](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.75...@toptal/davinci-bootstrap@0.1.76) (2020-02-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.75](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.74...@toptal/davinci-bootstrap@0.1.75) (2020-02-03)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.74](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.73...@toptal/davinci-bootstrap@0.1.74) (2020-02-03)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.73](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.72...@toptal/davinci-bootstrap@0.1.73) (2020-02-03)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.72](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.71...@toptal/davinci-bootstrap@0.1.72) (2020-02-03)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.71](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.70...@toptal/davinci-bootstrap@0.1.71) (2020-01-31)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.70](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.69...@toptal/davinci-bootstrap@0.1.70) (2020-01-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.69](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.68...@toptal/davinci-bootstrap@0.1.69) (2019-12-23)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.68](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.67...@toptal/davinci-bootstrap@0.1.68) (2019-12-23)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.67](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.66...@toptal/davinci-bootstrap@0.1.67) (2019-12-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.66](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.65...@toptal/davinci-bootstrap@0.1.66) (2019-12-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.65](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.64...@toptal/davinci-bootstrap@0.1.65) (2019-12-16)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.64](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.63...@toptal/davinci-bootstrap@0.1.64) (2019-12-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.63](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.62...@toptal/davinci-bootstrap@0.1.63) (2019-12-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.62](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.61...@toptal/davinci-bootstrap@0.1.62) (2019-12-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.61](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.60...@toptal/davinci-bootstrap@0.1.61) (2019-12-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.60](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.59...@toptal/davinci-bootstrap@0.1.60) (2019-12-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.59](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.58...@toptal/davinci-bootstrap@0.1.59) (2019-12-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.58](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.57...@toptal/davinci-bootstrap@0.1.58) (2019-12-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.57](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.56...@toptal/davinci-bootstrap@0.1.57) (2019-12-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.56](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.55...@toptal/davinci-bootstrap@0.1.56) (2019-12-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.55](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.54...@toptal/davinci-bootstrap@0.1.55) (2019-11-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.54](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.53...@toptal/davinci-bootstrap@0.1.54) (2019-11-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.53](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.52...@toptal/davinci-bootstrap@0.1.53) (2019-11-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.52](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.51...@toptal/davinci-bootstrap@0.1.52) (2019-11-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.51](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.50...@toptal/davinci-bootstrap@0.1.51) (2019-11-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.50](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.49...@toptal/davinci-bootstrap@0.1.50) (2019-11-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.49](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.48...@toptal/davinci-bootstrap@0.1.49) (2019-11-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.48](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.47...@toptal/davinci-bootstrap@0.1.48) (2019-11-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.47](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.46...@toptal/davinci-bootstrap@0.1.47) (2019-11-15)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.46](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.45...@toptal/davinci-bootstrap@0.1.46) (2019-11-14)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.45](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.44...@toptal/davinci-bootstrap@0.1.45) (2019-11-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.44](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.43...@toptal/davinci-bootstrap@0.1.44) (2019-11-07)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.43](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.42...@toptal/davinci-bootstrap@0.1.43) (2019-11-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.42](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.41...@toptal/davinci-bootstrap@0.1.42) (2019-10-31)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.41](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.40...@toptal/davinci-bootstrap@0.1.41) (2019-10-23)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.40](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.39...@toptal/davinci-bootstrap@0.1.40) (2019-10-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.39](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.38...@toptal/davinci-bootstrap@0.1.39) (2019-10-22)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.38](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.37...@toptal/davinci-bootstrap@0.1.38) (2019-10-21)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.37](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.36...@toptal/davinci-bootstrap@0.1.37) (2019-10-14)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.36](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.35...@toptal/davinci-bootstrap@0.1.36) (2019-10-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.35](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.34...@toptal/davinci-bootstrap@0.1.35) (2019-10-10)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.34](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.33...@toptal/davinci-bootstrap@0.1.34) (2019-10-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.33](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.32...@toptal/davinci-bootstrap@0.1.33) (2019-10-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.32](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.31...@toptal/davinci-bootstrap@0.1.32) (2019-10-07)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.31](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.30...@toptal/davinci-bootstrap@0.1.31) (2019-10-03)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.30](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.29...@toptal/davinci-bootstrap@0.1.30) (2019-10-02)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.29](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.28...@toptal/davinci-bootstrap@0.1.29) (2019-10-01)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.28](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.27...@toptal/davinci-bootstrap@0.1.28) (2019-09-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.27](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.26...@toptal/davinci-bootstrap@0.1.27) (2019-09-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.26](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.25...@toptal/davinci-bootstrap@0.1.26) (2019-09-26)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.25](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.24...@toptal/davinci-bootstrap@0.1.25) (2019-09-24)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.24](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.23...@toptal/davinci-bootstrap@0.1.24) (2019-09-24)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.23](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.22...@toptal/davinci-bootstrap@0.1.23) (2019-09-24)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.22](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.21...@toptal/davinci-bootstrap@0.1.22) (2019-09-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.21](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.20...@toptal/davinci-bootstrap@0.1.21) (2019-09-11)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.20](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.19...@toptal/davinci-bootstrap@0.1.20) (2019-09-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.19](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.18...@toptal/davinci-bootstrap@0.1.19) (2019-09-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.18](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.17...@toptal/davinci-bootstrap@0.1.18) (2019-09-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.17](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.16...@toptal/davinci-bootstrap@0.1.17) (2019-09-05)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.16](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.15...@toptal/davinci-bootstrap@0.1.16) (2019-09-04)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.15](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.14...@toptal/davinci-bootstrap@0.1.15) (2019-08-30)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.14](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.13...@toptal/davinci-bootstrap@0.1.14) (2019-08-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.13](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.12...@toptal/davinci-bootstrap@0.1.13) (2019-08-27)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.12](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.11...@toptal/davinci-bootstrap@0.1.12) (2019-08-09)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.11](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.10...@toptal/davinci-bootstrap@0.1.11) (2019-08-06)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.10](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.9...@toptal/davinci-bootstrap@0.1.10) (2019-07-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.9](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.8...@toptal/davinci-bootstrap@0.1.9) (2019-06-20)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.8](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.7...@toptal/davinci-bootstrap@0.1.8) (2019-06-19)

### Bug Fixes

- **bootstrap:** managing npm specific files ([#59](https://github.com/toptal/davinci/issues/59)) ([b16cc83](https://github.com/toptal/davinci/commit/b16cc83))

## [0.1.7](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.6...@toptal/davinci-bootstrap@0.1.7) (2019-06-19)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.6](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.5...@toptal/davinci-bootstrap@0.1.6) (2019-06-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.5](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.4...@toptal/davinci-bootstrap@0.1.5) (2019-06-18)

### Bug Fixes

- **bootstrap:** fix npm token missing ([#49](https://github.com/toptal/davinci/issues/49)) ([b4edfd1](https://github.com/toptal/davinci/commit/b4edfd1))

## [0.1.4](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.3...@toptal/davinci-bootstrap@0.1.4) (2019-06-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.3](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.2...@toptal/davinci-bootstrap@0.1.3) (2019-06-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.2](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.1...@toptal/davinci-bootstrap@0.1.2) (2019-06-18)

**Note:** Version bump only for package @toptal/davinci-bootstrap

## [0.1.1](https://github.com/toptal/davinci/compare/@toptal/davinci-bootstrap@0.1.0...@toptal/davinci-bootstrap@0.1.1) (2019-06-17)

### Bug Fixes

- **davinci-bootstrap:** fix ignoreFiles regex ([#48](https://github.com/toptal/davinci/issues/48)) ([87bd2c3](https://github.com/toptal/davinci/commit/87bd2c3))

# 0.1.0 (2019-06-17)

### Features

- **bootstrap:** implement app bootstrap CLI ([#29](https://github.com/toptal/davinci/issues/29)) ([9986412](https://github.com/toptal/davinci/commit/9986412))
