From 550b6a94012e1c1a15d8caedf8a40e41304284bf Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 11:25:10 -0300 Subject: [PATCH 01/12] chore: gh actions --- .github/workflows/ci.yml | 71 ++++++++++---------------------- .github/workflows/release.yml | 76 ++++++++++------------------------- 2 files changed, 42 insertions(+), 105 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f915a49ce6..f2ec548d87 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,69 +2,40 @@ name: CI on: - workflow_dispatch: push: branches-ignore: - main - - master -jobs: - lint: - name: Lint - runs-on: ubuntu-latest - - steps: - - name: Checkout repo - uses: actions/checkout@v2 + pull_request: + types: [opened, synchronize] - - name: Use Node 16.x - uses: actions/setup-node@v1 - with: - node-version: '16.x' - - - name: Install deps and build (with cache) - uses: bahmutov/npm-install@v1 - - - name: Lint - run: yarn lint - - test: - name: Test +jobs: + build: + name: Build and Test + timeout-minutes: 15 runs-on: ubuntu-latest + # To use Remote Caching, uncomment the next lines and follow the steps below. + # env: + # TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} + # TURBO_TEAM: ${{ secrets.TURBO_TEAM }} steps: - - name: Checkout repo + - name: Check out code uses: actions/checkout@v2 - - - name: Use Node 16.x - uses: actions/setup-node@v1 with: - node-version: '16.x' - - - name: Install deps and build (with cache) - uses: bahmutov/npm-install@v1 - - - name: Test - run: yarn test --ci --maxWorkers=2 - - size: - name: Size Limit - runs-on: ubuntu-latest + fetch-depth: 2 - steps: - - name: Checkout repo - uses: actions/checkout@v2 - - - name: Use Node 16.x - uses: actions/setup-node@v1 + - name: Setup Node.js environment + uses: actions/setup-node@v2 with: - node-version: '16.x' + node-version: 16 + cache: 'yarn' - - name: Install deps and build (with cache) - uses: bahmutov/npm-install@v1 + - name: Install dependencies + run: yarn - name: Build - run: yarn build --scope "@vtex/gatsby-plugin-thumbor" --scope "@faststore/ui" --scope "@faststore/sdk" --ci + run: yarn build - - name: Size Limit - run: yarn size + - name: Test + run: yarn test diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa0f4b3737..22ffaa3908 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,81 +1,47 @@ -# This Action should run on master and verify lint, test, and then publish the version on npm +# This Action should run on main branch and verify lint, test, and then publish the version on npm name: CD on: push: branches: - main - - master jobs: - lint: - name: Lint + build: + name: Build, Test and Publish + timeout-minutes: 15 runs-on: ubuntu-latest + # To use Remote Caching, uncomment the next lines and follow the steps below. + # env: + # TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} + # TURBO_TEAM: ${{ secrets.TURBO_TEAM }} steps: - - name: Checkout repo + - name: Check out code uses: actions/checkout@v2 - - - name: Use Node 16.x - uses: actions/setup-node@v1 with: - node-version: '16.x' - - - name: Install deps and build (with cache) - uses: bahmutov/npm-install@v1 - - - name: Lint - run: yarn lint - - test: - needs: lint - name: Test - runs-on: ubuntu-latest - - steps: - - name: Checkout repo - uses: actions/checkout@v2 + fetch-depth: 2 - - name: Use Node 16.x - uses: actions/setup-node@v1 + - name: Setup Node.js environment + uses: actions/setup-node@v2 with: - node-version: '16.x' - - - name: Install deps and build (with cache) - uses: bahmutov/npm-install@v1 - - - name: Test - run: yarn test --ci --maxWorkers=2 - - publish: - needs: test - name: Publish - runs-on: ubuntu-latest + node-version: 16 + cache: 'yarn' - steps: - - name: Checkout repo - uses: actions/checkout@v2 - with: - token: ${{ secrets.VTEX_GITHUB_BOT_TOKEN }} + - name: Install dependencies + run: yarn - - name: Use Node 16.x - uses: actions/setup-node@v1 - with: - node-version: '16.x' - registry-url: 'https://registry.npmjs.org' + - name: Build + run: yarn build - - name: Install deps and build (with cache) - uses: bahmutov/npm-install@v1 + - name: Test + run: yarn test - name: Configure CI Git User run: | git config user.name vtexgithubbot git config user.email vtexgithubbot@github.com - - - name: Build - run: yarn build - - - name: Publish package + - name: Publish run: lerna publish patch --yes --no-verify-access --ignore-scripts --conventional-commits env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} From 0c4256089b6b436c74ee5239b73b720bfe70589d Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 11:25:58 -0300 Subject: [PATCH 02/12] chore: gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index ede002ca0c..59c63822f8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +.turbo +.docusaurus + # Logs logs *.log @@ -34,6 +37,7 @@ build/Release # bundle dist/ +build/ storybook-static/ # Dependency directories From e6abf4e1a5847fd65c3532c93c7da6936d2d306a Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 11:26:51 -0300 Subject: [PATCH 03/12] chore: lerna packages --- lerna.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lerna.json b/lerna.json index 7f60074386..11f309fa5f 100644 --- a/lerna.json +++ b/lerna.json @@ -8,9 +8,5 @@ } }, "changelogPreset": "angular", - "packages": [ - "packages/*", - "themes/*", - "docs" - ] + "packages": ["packages/*", "apps/*"] } From c01475cf3276ed86f094750636756768d6051610 Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 11:28:35 -0300 Subject: [PATCH 04/12] feat: config turbo --- package.json | 22 +++++++--------------- turbo.json | 24 ++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 15 deletions(-) create mode 100644 turbo.json diff --git a/package.json b/package.json index d81bb931e9..2b3da84eae 100644 --- a/package.json +++ b/package.json @@ -1,30 +1,21 @@ { "name": "faststore", - "version": "0.0.0", "description": "Digital commerce toolkit for frontend developers.", - "main": "index.js", "repository": "git@github.com:vtex/faststore.git", "license": "MIT", "private": true, "scripts": { - "build": "lerna run build", - "build-themes": "lerna run build --scope '@vtex/theme-*' || true", - "build-docs": "lerna run build --include-dependencies --scope docs", - "build-storybook": "yarn build-themes && yarn workspace @faststore/ui build-storybook", - "storybook": "yarn workspace @faststore/ui storybook", - "clean": "lerna clean && lerna run clean", - "format": "prettier --write \"packages/**/*.{ts,tsx,json}\"", - "lint": "eslint packages/ --ext .ts,.tsx", - "test": "lerna run test --", - "bootstrap": "lerna bootstrap", + "build": "turbo run build", + "dev": "turbo run dev --parallel --no-cache", + "lint": "turbo run lint", + "test": "turbo run test", + "format": "prettier --write \"**/*.{ts,tsx,json}\"", "release": "lerna version minor --yes && lerna publish from-git --yes", - "size": "lerna run size", "generate-ui-component": "yarn plop --plopfile generators/plopfile.ts" }, "workspaces": [ "packages/*", - "themes/*", - "docs" + "apps/*" ], "husky": { "hooks": { @@ -53,6 +44,7 @@ "lint-staged": "^10.5.1", "plop": "^2.7.6", "prettier": "^2.2.1", + "turbo": "latest", "typescript": "^4.1.2" }, "resolutions": { diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000000..25f8d8b930 --- /dev/null +++ b/turbo.json @@ -0,0 +1,24 @@ +{ + "$schema": "https://turborepo.org/schema.json", + "baseBranch": "origin/main", + "pipeline": { + "build": { + "outputs": ["dist/**", "build/**", ".docusaurus/**"], + "dependsOn": ["^build"] + }, + "test": { + "dependsOn": ["^build"], + "outputs": [] + }, + "lint": { + "outputs": [] + }, + "start": {}, + "develop": { + "cache": false + }, + "dev": { + "cache": false + } + } +} From 57e804b5461edd92bd16169800725c1186f680f5 Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 11:46:02 -0300 Subject: [PATCH 05/12] feat: move docs to apps --- .eslintignore | 3 ++- .prettierignore | 3 ++- {docs => apps/docs}/CHANGELOG.md | 0 {docs => apps/docs}/README.md | 0 {docs => apps/docs}/babel.config.js | 0 {docs => apps/docs}/blog/2021-07-05-faststore.md | 0 {docs => apps/docs}/blog/2021-08-03-faststore.md | 0 {docs => apps/docs}/blog/2021-09-01-faststore.md | 0 {docs => apps/docs}/blog/2021-10-08-faststore.md | 0 {docs => apps/docs}/blog/2021-11-18-faststore.md | 0 {docs => apps/docs}/blog/2021-12-22-faststore.md | 0 {docs => apps/docs}/blog/2022-02-04-faststore.md | 0 {docs => apps/docs}/blog/2022-02-08-webops.md | 0 {docs => apps/docs}/blog/2022-03-04-faststore.md | 0 {docs => apps/docs}/blog/2022-04-01-basestore.md | 0 {docs => apps/docs}/blog/2022-04-01-faststore.md | 0 {docs => apps/docs}/blog/2022-04-05-faststore.md | 0 {docs => apps/docs}/blog/2022-04-05-webops.md | 0 {docs => apps/docs}/blog/2022-04-22-webops.md | 0 {docs => apps/docs}/blog/2022-04-29-basestore.md | 0 {docs => apps/docs}/blog/2022-04-30-basestore.md | 0 {docs => apps/docs}/blog/2022-05-02-cms.md | 0 {docs => apps/docs}/blog/2022-05-06-basestore.md | 0 {docs => apps/docs}/blog/2022-05-06-faststore.md | 0 {docs => apps/docs}/blog/2022-05-11-webops.md | 0 {docs => apps/docs}/blog/2022-05-18-faststore.md | 0 {docs => apps/docs}/blog/2022-05-19-cms.md | 0 {docs => apps/docs}/blog/2022-05-19-webops.md | 0 {docs => apps/docs}/config.json | 0 {docs => apps/docs}/docs/conceptual-guides.md | 0 .../docs}/docs/conceptual-guides/jamstack.md | 0 .../docs}/docs/conceptual-guides/plugin.md | 0 .../docs}/docs/conceptual-guides/shadowing.md | 0 .../docs}/docs/conceptual-guides/starter.md | 0 .../docs/conceptual-guides/static-site-generator.md | 0 {docs => apps/docs}/docs/faq.mdx | 0 .../Enabling private CMS previews.md | 0 .../Installing Releases on VTEX Headless CMS.md | 0 ...g from gatsby-plugin-cms to gatsby-source-cms.md | 0 .../Sending CMS updates to VTEX IO WebOps.md | 0 .../docs/how-to-guides/contributing/component.md | 0 .../how-to-guides/contributing/design-principles.md | 0 .../how-to-guides/fetching-data/fetching-data.md | 0 .../troubleshooting-problems-in-faststore.md | 0 .../docs}/docs/how-to-guides/migrating-from-SF.md | 0 .../docs/how-to-guides/performance/performance.md | 0 .../platform-integration/vtex-integration.md | 0 .../vtex/hosting-a-faststore-vtex-website.md | 0 .../vtex/integrating-the-vtex-login.md | 0 .../vtex/integrating-vtex-checkout.md | 0 .../vtex/integrating-vtex-orderplaced-myaccount.md | 0 .../vtex/setting-up-an-account.md | 0 .../how-to-guides/routing/managing-url-redirects.md | 0 .../how-to-guides/styling/styling-components.md | 0 .../docs}/docs/how-to-guides/testing/e2e-testing.md | 0 .../docs}/docs/how-to-guides/webops/security.md | 0 .../webops/security/managing-secrets.md | 0 .../webops/security/setting-up-secrets.md | 0 {docs => apps/docs}/docs/index.mdx | 0 {docs => apps/docs}/docs/openapi/headlesscms.yaml | 0 {docs => apps/docs}/docs/quickstart.md | 0 {docs => apps/docs}/docs/reference.md | 0 {docs => apps/docs}/docs/reference/api/VTEX.md | 0 .../docs}/docs/reference/api/faststore-api.md | 0 .../docs}/docs/reference/plugins/gatsby.md | 0 {docs => apps/docs}/docs/reference/plugins/theme.md | 0 {docs => apps/docs}/docs/reference/sdk/Analytics.md | 0 {docs => apps/docs}/docs/reference/sdk/UI.md | 0 {docs => apps/docs}/docs/reference/sdk/cart.md | 0 .../docs}/docs/reference/sdk/cart/CartProvider.mdx | 0 .../docs}/docs/reference/sdk/cart/useCart.mdx | 0 .../docs}/docs/reference/sdk/faststore-sdk.md | 0 {docs => apps/docs}/docs/reference/sdk/seach.md | 0 .../docs/reference/sdk/search/SearchProvider.mdx | 0 .../docs/reference/sdk/search/usePagination.mdx | 0 .../docs}/docs/reference/sdk/search/useSearch.mdx | 0 .../docs}/docs/reference/ui/atoms/Badge.mdx | 0 .../docs}/docs/reference/ui/atoms/Button.mdx | 0 .../docs}/docs/reference/ui/atoms/Checkbox.mdx | 0 .../docs}/docs/reference/ui/atoms/Icon.mdx | 0 .../docs}/docs/reference/ui/atoms/Incentive.mdx | 0 .../docs}/docs/reference/ui/atoms/Input.mdx | 0 .../docs}/docs/reference/ui/atoms/Label.mdx | 0 .../docs}/docs/reference/ui/atoms/Link.mdx | 0 .../docs}/docs/reference/ui/atoms/List.mdx | 0 .../docs}/docs/reference/ui/atoms/Overlay.mdx | 0 .../docs}/docs/reference/ui/atoms/Popover.mdx | 0 .../docs}/docs/reference/ui/atoms/Price.mdx | 0 .../docs}/docs/reference/ui/atoms/Radio.mdx | 0 .../docs}/docs/reference/ui/atoms/Select.mdx | 0 .../docs}/docs/reference/ui/atoms/Skeleton.mdx | 0 .../docs}/docs/reference/ui/atoms/Slider.mdx | 0 .../docs}/docs/reference/ui/atoms/Spinner.mdx | 0 .../docs}/docs/reference/ui/atoms/TextArea.mdx | 0 .../docs}/docs/reference/ui/faststore-ui.md | 0 .../docs/reference/ui/get-started-faststore-ui.md | 0 .../docs}/docs/reference/ui/molecules/Accordion.mdx | 0 .../docs}/docs/reference/ui/molecules/Alert.mdx | 0 .../docs}/docs/reference/ui/molecules/Banner.mdx | 0 .../docs/reference/ui/molecules/Breadcrumb.mdx | 0 .../docs}/docs/reference/ui/molecules/Bullets.mdx | 0 .../docs}/docs/reference/ui/molecules/Carousel.mdx | 0 .../docs}/docs/reference/ui/molecules/Form.mdx | 0 .../docs/reference/ui/molecules/IconButton.mdx | 0 .../docs/reference/ui/molecules/LoadingButton.mdx | 0 .../docs}/docs/reference/ui/molecules/Modal.mdx | 0 .../docs/reference/ui/molecules/PaymentMethods.mdx | 0 .../docs/reference/ui/molecules/PriceRange.mdx | 0 .../reference/ui/molecules/QuantitySelector.mdx | 0 .../docs/reference/ui/molecules/RadioGroup.mdx | 0 .../docs/reference/ui/molecules/SearchInput.mdx | 0 .../docs}/docs/reference/ui/molecules/Table.mdx | 0 .../docs}/docs/reference/ui/organisms/Card.mdx | 0 {docs => apps/docs}/docs/resources.mdx | 0 .../docs}/docs/templates/how-to-guide-template.md | 0 {docs => apps/docs}/docs/templates/ui-components.md | 0 {docs => apps/docs}/docs/tutorials.mdx | 0 {docs => apps/docs}/docs/tutorials/cms-overview.md | 0 .../00 - Introducing the VTEX CMS.md | 0 ...- Installing and configuring the VTEX CMS app.md | 0 .../02 - Installing the VTEX CMS plugin.md | 0 .../03 - Adding Sections to the CMS.md | 0 .../04 - Adding content types to the CMS.md | 0 .../05 - Defining translation keys.md | 0 .../06 - Querying the CMS data.md | 0 .../07 - Adapting the views components.md | 0 .../docs/tutorials/cms-storecomponents/Overview.mdx | 0 .../tutorials/cms/00 - Introducing the VTEX CMS.md | 0 .../cms/01 - Configuring your VTEX account.md | 0 ...e VTEX Headless CMS in your FastStore project.md | 0 ...t Types and Sections to the VTEX Headless CMS.md | 0 .../tutorials/cms/04 - Querying the CMS data.md | 0 .../cms/05 - Adapting the views components.md | 0 .../docs}/docs/tutorials/cms/Troubleshooting.md | 0 .../docs}/docs/tutorials/fundamentals/concepts.md | 0 .../docs}/docs/tutorials/fundamentals/faststore.md | 0 .../docs}/docs/tutorials/fundamentals/overview.mdx | 0 .../docs}/docs/tutorials/gatsby-overview.mdx | 0 .../tutorials/gatsby/01 - Introducting Gatsby.mdx | 0 ...02 - Setting up your development environment.mdx | 0 .../gatsby/03 - Creating your first SFJ store.mdx | 0 .../04 - Understanding the project structure.md | 0 .../docs/tutorials/gatsby/05 - Using components.md | 0 .../tutorials/gatsby/06 - Styling components.mdx | 0 .../docs}/docs/tutorials/gatsby/Troubleshooting.mdx | 0 {docs => apps/docs}/docs/v0/troubleshooting.md | 0 {docs => apps/docs}/docusaurus.config.js | 0 {docs => apps/docs}/package.json | 0 .../plugins/docusaurus-tailwindcss-loader/index.js | 0 {docs => apps/docs}/sidebars.js | 0 .../docs}/src/components/CardGrid/CardGrid.jsx | 0 .../src/components/CardGrid/CardGrid.module.css | 0 .../CodeBlockWrapper/CodeBlockWrapper.tsx | 0 .../docs}/src/components/CodeBlockWrapper/index.ts | 0 .../CodeBlockWrapper/useCollapsibleCodeBlock.tsx | 0 .../CodeBlockWrapper/useCopyCodeBlock.tsx | 0 .../src/components/DocStructure/DocStructure.js | 0 .../docs}/src/components/DocUpdate/DocUpdate.js | 0 .../src/components/FaqQuestion/FaqQuestion.jsx | 0 .../components/FaqQuestion/FaqQuestion.module.css | 0 .../docs}/src/components/FastStore/FastStore.js | 0 .../src/components/FastStore/FastStore.module.css | 0 .../FastStorePackages/FastStorePackages.module.css | 0 .../FastStorePackages/FastStorePackages.tsx | 0 .../docs}/src/components/FeatureCard/FeatureCard.js | 0 .../components/FeatureCard/FeatureCard.module.css | 0 .../src/components/FeedbackButton/FeedbackButton.js | 0 .../FeedbackButton/FeedbackButton.module.css | 0 .../components/FeedbackForm/FeedbackForm.module.css | 0 .../src/components/FeedbackForm/FeedbackForm.tsx | 0 .../src/components/FeedbackModal/FeedbackModal.js | 0 .../FeedbackModal/FeedbackModal.module.css | 0 .../docs}/src/components/IconGrid/IconGrid.jsx | 0 .../src/components/IconGrid/IconGrid.module.css | 0 .../src/components/ImageSwitcher/ImageSwitcher.js | 0 .../docs}/src/components/InfoCard/InfoCard.js | 0 .../src/components/InfoCard/InfoCard.module.css | 0 .../src/components/LatestUpdates/LatestUpdates.js | 0 .../LatestUpdates/LatestUpdates.module.css | 0 .../PropsComponent/PropsComponent.module.css | 0 .../components/PropsComponent/PropsComponent.tsx | 0 .../src/components/PropsSection/PropsSection.jsx | 0 .../components/PropsSection/PropsSection.module.css | 0 .../src/components/SectionImage/SectionImage.js | 0 .../components/SectionImage/SectionImage.module.css | 0 .../components/StarterComponent/StarterComponent.js | 0 .../docs}/src/components/ViewAll/ViewAll.js | 0 .../docs}/src/components/ViewAll/ViewAll.module.css | 0 .../docs}/src/components/hooks/useInterval.ts | 0 .../docs}/src/components/hooks/useScroll.ts | 0 .../docs}/src/components/hooks/useWindowSize.ts | 0 {docs => apps/docs}/src/components/utils.ts | 0 {docs => apps/docs}/src/css/custom.css | 0 .../sections/EducationSection/EducationSection.js | 0 .../docs}/src/pages/sections/FaqPage/FaqPage.js | 0 .../StarterComponentPage/StarterComponentPage.js | 0 .../src/pages/sections/StarterPage/StarterPage.js | 0 .../StarterSubmissionForm/StarterSubmissionForm.jsx | 0 .../StarterSubmissionForm.module.css | 0 .../pages/sections/UpdatesSection/UpdatesSection.js | 0 {docs => apps/docs}/src/pages/starters.js | 0 .../docs}/src/pages/starters/Submissions.module.css | 0 {docs => apps/docs}/src/pages/starters/base.js | 0 {docs => apps/docs}/src/pages/starters/beauty.js | 0 {docs => apps/docs}/src/pages/starters/cms-base.js | 0 {docs => apps/docs}/src/pages/starters/pets.js | 0 .../docs}/src/pages/starters/submissions.js | 0 {docs => apps/docs}/src/pages/starters/toy.js | 0 .../docs}/src/theme/AnnouncementBar/index.js | 0 .../src/theme/AnnouncementBar/styles.module.css | 0 {docs => apps/docs}/src/theme/BlogLayout/index.js | 0 {docs => apps/docs}/src/theme/BlogPostPage/index.js | 0 .../docs}/src/theme/BlogSidebar/Desktop/index.js | 0 .../src/theme/BlogSidebar/Desktop/styles.module.css | 0 {docs => apps/docs}/src/theme/BlogSidebar/index.js | 0 .../docs}/src/theme/BlogTagsPostsPage/index.js | 0 {docs => apps/docs}/src/theme/DocCard/index.js | 0 .../docs}/src/theme/DocCard/styles.module.css | 0 {docs => apps/docs}/src/theme/DocCardList/index.js | 0 {docs => apps/docs}/src/theme/Layout/index.js | 0 {docs => apps/docs}/src/theme/Layout/styles.css | 0 {docs => apps/docs}/src/theme/NotFound.js | 0 {docs => apps/docs}/src/theme/Playground/index.jsx | 0 .../docs}/src/theme/Playground/styles.module.css | 0 .../docs}/src/theme/ReactLiveScope/index.tsx | 0 {docs => apps/docs}/src/theme/TOC/index.js | 0 {docs => apps/docs}/src/theme/TOC/styles.module.css | 0 {docs => apps/docs}/static/.nojekyll | 0 {docs => apps/docs}/static/data/doc-update.json | 0 {docs => apps/docs}/static/data/releases.json | 0 {docs => apps/docs}/static/data/starters.json | 0 .../docs}/static/fonts/VtexTrustMedium.woff | Bin .../docs}/static/fonts/VtexTrustRegular.woff | Bin .../docs}/static/fonts/VtexTrustVariable.woff | Bin .../docs}/static/img/faststore_thumbnail.png | Bin {docs => apps/docs}/static/img/favicon.ico | Bin {docs => apps/docs}/static/img/logo.svg | 0 {docs => apps/docs}/static/img/white-vtex.svg | 0 {docs => apps/docs}/static/scripts/openReplay.js | 0 {docs => apps/docs}/static/vercel.json | 0 {docs => apps/docs}/tailwind.config.js | 0 241 files changed, 4 insertions(+), 2 deletions(-) rename {docs => apps/docs}/CHANGELOG.md (100%) rename {docs => apps/docs}/README.md (100%) rename {docs => apps/docs}/babel.config.js (100%) rename {docs => apps/docs}/blog/2021-07-05-faststore.md (100%) rename {docs => apps/docs}/blog/2021-08-03-faststore.md (100%) rename {docs => apps/docs}/blog/2021-09-01-faststore.md (100%) rename {docs => apps/docs}/blog/2021-10-08-faststore.md (100%) rename {docs => apps/docs}/blog/2021-11-18-faststore.md (100%) rename {docs => apps/docs}/blog/2021-12-22-faststore.md (100%) rename {docs => apps/docs}/blog/2022-02-04-faststore.md (100%) rename {docs => apps/docs}/blog/2022-02-08-webops.md (100%) rename {docs => apps/docs}/blog/2022-03-04-faststore.md (100%) rename {docs => apps/docs}/blog/2022-04-01-basestore.md (100%) rename {docs => apps/docs}/blog/2022-04-01-faststore.md (100%) rename {docs => apps/docs}/blog/2022-04-05-faststore.md (100%) rename {docs => apps/docs}/blog/2022-04-05-webops.md (100%) rename {docs => apps/docs}/blog/2022-04-22-webops.md (100%) rename {docs => apps/docs}/blog/2022-04-29-basestore.md (100%) rename {docs => apps/docs}/blog/2022-04-30-basestore.md (100%) rename {docs => apps/docs}/blog/2022-05-02-cms.md (100%) rename {docs => apps/docs}/blog/2022-05-06-basestore.md (100%) rename {docs => apps/docs}/blog/2022-05-06-faststore.md (100%) rename {docs => apps/docs}/blog/2022-05-11-webops.md (100%) rename {docs => apps/docs}/blog/2022-05-18-faststore.md (100%) rename {docs => apps/docs}/blog/2022-05-19-cms.md (100%) rename {docs => apps/docs}/blog/2022-05-19-webops.md (100%) rename {docs => apps/docs}/config.json (100%) rename {docs => apps/docs}/docs/conceptual-guides.md (100%) rename {docs => apps/docs}/docs/conceptual-guides/jamstack.md (100%) rename {docs => apps/docs}/docs/conceptual-guides/plugin.md (100%) rename {docs => apps/docs}/docs/conceptual-guides/shadowing.md (100%) rename {docs => apps/docs}/docs/conceptual-guides/starter.md (100%) rename {docs => apps/docs}/docs/conceptual-guides/static-site-generator.md (100%) rename {docs => apps/docs}/docs/faq.mdx (100%) rename {docs => apps/docs}/docs/how-to-guides/cms/vtex-headless-cms/Enabling private CMS previews.md (100%) rename {docs => apps/docs}/docs/how-to-guides/cms/vtex-headless-cms/Installing Releases on VTEX Headless CMS.md (100%) rename {docs => apps/docs}/docs/how-to-guides/cms/vtex-headless-cms/Migrating from gatsby-plugin-cms to gatsby-source-cms.md (100%) rename {docs => apps/docs}/docs/how-to-guides/cms/vtex-headless-cms/Sending CMS updates to VTEX IO WebOps.md (100%) rename {docs => apps/docs}/docs/how-to-guides/contributing/component.md (100%) rename {docs => apps/docs}/docs/how-to-guides/contributing/design-principles.md (100%) rename {docs => apps/docs}/docs/how-to-guides/fetching-data/fetching-data.md (100%) rename {docs => apps/docs}/docs/how-to-guides/local-development/troubleshooting-problems-in-faststore.md (100%) rename {docs => apps/docs}/docs/how-to-guides/migrating-from-SF.md (100%) rename {docs => apps/docs}/docs/how-to-guides/performance/performance.md (100%) rename {docs => apps/docs}/docs/how-to-guides/platform-integration/vtex-integration.md (100%) rename {docs => apps/docs}/docs/how-to-guides/platform-integration/vtex/hosting-a-faststore-vtex-website.md (100%) rename {docs => apps/docs}/docs/how-to-guides/platform-integration/vtex/integrating-the-vtex-login.md (100%) rename {docs => apps/docs}/docs/how-to-guides/platform-integration/vtex/integrating-vtex-checkout.md (100%) rename {docs => apps/docs}/docs/how-to-guides/platform-integration/vtex/integrating-vtex-orderplaced-myaccount.md (100%) rename {docs => apps/docs}/docs/how-to-guides/platform-integration/vtex/setting-up-an-account.md (100%) rename {docs => apps/docs}/docs/how-to-guides/routing/managing-url-redirects.md (100%) rename {docs => apps/docs}/docs/how-to-guides/styling/styling-components.md (100%) rename {docs => apps/docs}/docs/how-to-guides/testing/e2e-testing.md (100%) rename {docs => apps/docs}/docs/how-to-guides/webops/security.md (100%) rename {docs => apps/docs}/docs/how-to-guides/webops/security/managing-secrets.md (100%) rename {docs => apps/docs}/docs/how-to-guides/webops/security/setting-up-secrets.md (100%) rename {docs => apps/docs}/docs/index.mdx (100%) rename {docs => apps/docs}/docs/openapi/headlesscms.yaml (100%) rename {docs => apps/docs}/docs/quickstart.md (100%) rename {docs => apps/docs}/docs/reference.md (100%) rename {docs => apps/docs}/docs/reference/api/VTEX.md (100%) rename {docs => apps/docs}/docs/reference/api/faststore-api.md (100%) rename {docs => apps/docs}/docs/reference/plugins/gatsby.md (100%) rename {docs => apps/docs}/docs/reference/plugins/theme.md (100%) rename {docs => apps/docs}/docs/reference/sdk/Analytics.md (100%) rename {docs => apps/docs}/docs/reference/sdk/UI.md (100%) rename {docs => apps/docs}/docs/reference/sdk/cart.md (100%) rename {docs => apps/docs}/docs/reference/sdk/cart/CartProvider.mdx (100%) rename {docs => apps/docs}/docs/reference/sdk/cart/useCart.mdx (100%) rename {docs => apps/docs}/docs/reference/sdk/faststore-sdk.md (100%) rename {docs => apps/docs}/docs/reference/sdk/seach.md (100%) rename {docs => apps/docs}/docs/reference/sdk/search/SearchProvider.mdx (100%) rename {docs => apps/docs}/docs/reference/sdk/search/usePagination.mdx (100%) rename {docs => apps/docs}/docs/reference/sdk/search/useSearch.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Badge.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Button.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Checkbox.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Icon.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Incentive.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Input.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Label.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Link.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/List.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Overlay.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Popover.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Price.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Radio.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Select.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Skeleton.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Slider.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/Spinner.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/atoms/TextArea.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/faststore-ui.md (100%) rename {docs => apps/docs}/docs/reference/ui/get-started-faststore-ui.md (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Accordion.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Alert.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Banner.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Breadcrumb.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Bullets.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Carousel.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Form.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/IconButton.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/LoadingButton.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Modal.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/PaymentMethods.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/PriceRange.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/QuantitySelector.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/RadioGroup.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/SearchInput.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/molecules/Table.mdx (100%) rename {docs => apps/docs}/docs/reference/ui/organisms/Card.mdx (100%) rename {docs => apps/docs}/docs/resources.mdx (100%) rename {docs => apps/docs}/docs/templates/how-to-guide-template.md (100%) rename {docs => apps/docs}/docs/templates/ui-components.md (100%) rename {docs => apps/docs}/docs/tutorials.mdx (100%) rename {docs => apps/docs}/docs/tutorials/cms-overview.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/00 - Introducing the VTEX CMS.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/01 - Installing and configuring the VTEX CMS app.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/02 - Installing the VTEX CMS plugin.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/03 - Adding Sections to the CMS.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/04 - Adding content types to the CMS.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/05 - Defining translation keys.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/06 - Querying the CMS data.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/07 - Adapting the views components.md (100%) rename {docs => apps/docs}/docs/tutorials/cms-storecomponents/Overview.mdx (100%) rename {docs => apps/docs}/docs/tutorials/cms/00 - Introducing the VTEX CMS.md (100%) rename {docs => apps/docs}/docs/tutorials/cms/01 - Configuring your VTEX account.md (100%) rename {docs => apps/docs}/docs/tutorials/cms/02 - Setting up the VTEX Headless CMS in your FastStore project.md (100%) rename {docs => apps/docs}/docs/tutorials/cms/03 - Adding Content Types and Sections to the VTEX Headless CMS.md (100%) rename {docs => apps/docs}/docs/tutorials/cms/04 - Querying the CMS data.md (100%) rename {docs => apps/docs}/docs/tutorials/cms/05 - Adapting the views components.md (100%) rename {docs => apps/docs}/docs/tutorials/cms/Troubleshooting.md (100%) rename {docs => apps/docs}/docs/tutorials/fundamentals/concepts.md (100%) rename {docs => apps/docs}/docs/tutorials/fundamentals/faststore.md (100%) rename {docs => apps/docs}/docs/tutorials/fundamentals/overview.mdx (100%) rename {docs => apps/docs}/docs/tutorials/gatsby-overview.mdx (100%) rename {docs => apps/docs}/docs/tutorials/gatsby/01 - Introducting Gatsby.mdx (100%) rename {docs => apps/docs}/docs/tutorials/gatsby/02 - Setting up your development environment.mdx (100%) rename {docs => apps/docs}/docs/tutorials/gatsby/03 - Creating your first SFJ store.mdx (100%) rename {docs => apps/docs}/docs/tutorials/gatsby/04 - Understanding the project structure.md (100%) rename {docs => apps/docs}/docs/tutorials/gatsby/05 - Using components.md (100%) rename {docs => apps/docs}/docs/tutorials/gatsby/06 - Styling components.mdx (100%) rename {docs => apps/docs}/docs/tutorials/gatsby/Troubleshooting.mdx (100%) rename {docs => apps/docs}/docs/v0/troubleshooting.md (100%) rename {docs => apps/docs}/docusaurus.config.js (100%) rename {docs => apps/docs}/package.json (100%) rename {docs => apps/docs}/plugins/docusaurus-tailwindcss-loader/index.js (100%) rename {docs => apps/docs}/sidebars.js (100%) rename {docs => apps/docs}/src/components/CardGrid/CardGrid.jsx (100%) rename {docs => apps/docs}/src/components/CardGrid/CardGrid.module.css (100%) rename {docs => apps/docs}/src/components/CodeBlockWrapper/CodeBlockWrapper.tsx (100%) rename {docs => apps/docs}/src/components/CodeBlockWrapper/index.ts (100%) rename {docs => apps/docs}/src/components/CodeBlockWrapper/useCollapsibleCodeBlock.tsx (100%) rename {docs => apps/docs}/src/components/CodeBlockWrapper/useCopyCodeBlock.tsx (100%) rename {docs => apps/docs}/src/components/DocStructure/DocStructure.js (100%) rename {docs => apps/docs}/src/components/DocUpdate/DocUpdate.js (100%) rename {docs => apps/docs}/src/components/FaqQuestion/FaqQuestion.jsx (100%) rename {docs => apps/docs}/src/components/FaqQuestion/FaqQuestion.module.css (100%) rename {docs => apps/docs}/src/components/FastStore/FastStore.js (100%) rename {docs => apps/docs}/src/components/FastStore/FastStore.module.css (100%) rename {docs => apps/docs}/src/components/FastStorePackages/FastStorePackages.module.css (100%) rename {docs => apps/docs}/src/components/FastStorePackages/FastStorePackages.tsx (100%) rename {docs => apps/docs}/src/components/FeatureCard/FeatureCard.js (100%) rename {docs => apps/docs}/src/components/FeatureCard/FeatureCard.module.css (100%) rename {docs => apps/docs}/src/components/FeedbackButton/FeedbackButton.js (100%) rename {docs => apps/docs}/src/components/FeedbackButton/FeedbackButton.module.css (100%) rename {docs => apps/docs}/src/components/FeedbackForm/FeedbackForm.module.css (100%) rename {docs => apps/docs}/src/components/FeedbackForm/FeedbackForm.tsx (100%) rename {docs => apps/docs}/src/components/FeedbackModal/FeedbackModal.js (100%) rename {docs => apps/docs}/src/components/FeedbackModal/FeedbackModal.module.css (100%) rename {docs => apps/docs}/src/components/IconGrid/IconGrid.jsx (100%) rename {docs => apps/docs}/src/components/IconGrid/IconGrid.module.css (100%) rename {docs => apps/docs}/src/components/ImageSwitcher/ImageSwitcher.js (100%) rename {docs => apps/docs}/src/components/InfoCard/InfoCard.js (100%) rename {docs => apps/docs}/src/components/InfoCard/InfoCard.module.css (100%) rename {docs => apps/docs}/src/components/LatestUpdates/LatestUpdates.js (100%) rename {docs => apps/docs}/src/components/LatestUpdates/LatestUpdates.module.css (100%) rename {docs => apps/docs}/src/components/PropsComponent/PropsComponent.module.css (100%) rename {docs => apps/docs}/src/components/PropsComponent/PropsComponent.tsx (100%) rename {docs => apps/docs}/src/components/PropsSection/PropsSection.jsx (100%) rename {docs => apps/docs}/src/components/PropsSection/PropsSection.module.css (100%) rename {docs => apps/docs}/src/components/SectionImage/SectionImage.js (100%) rename {docs => apps/docs}/src/components/SectionImage/SectionImage.module.css (100%) rename {docs => apps/docs}/src/components/StarterComponent/StarterComponent.js (100%) rename {docs => apps/docs}/src/components/ViewAll/ViewAll.js (100%) rename {docs => apps/docs}/src/components/ViewAll/ViewAll.module.css (100%) rename {docs => apps/docs}/src/components/hooks/useInterval.ts (100%) rename {docs => apps/docs}/src/components/hooks/useScroll.ts (100%) rename {docs => apps/docs}/src/components/hooks/useWindowSize.ts (100%) rename {docs => apps/docs}/src/components/utils.ts (100%) rename {docs => apps/docs}/src/css/custom.css (100%) rename {docs => apps/docs}/src/pages/sections/EducationSection/EducationSection.js (100%) rename {docs => apps/docs}/src/pages/sections/FaqPage/FaqPage.js (100%) rename {docs => apps/docs}/src/pages/sections/StarterComponentPage/StarterComponentPage.js (100%) rename {docs => apps/docs}/src/pages/sections/StarterPage/StarterPage.js (100%) rename {docs => apps/docs}/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.jsx (100%) rename {docs => apps/docs}/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.module.css (100%) rename {docs => apps/docs}/src/pages/sections/UpdatesSection/UpdatesSection.js (100%) rename {docs => apps/docs}/src/pages/starters.js (100%) rename {docs => apps/docs}/src/pages/starters/Submissions.module.css (100%) rename {docs => apps/docs}/src/pages/starters/base.js (100%) rename {docs => apps/docs}/src/pages/starters/beauty.js (100%) rename {docs => apps/docs}/src/pages/starters/cms-base.js (100%) rename {docs => apps/docs}/src/pages/starters/pets.js (100%) rename {docs => apps/docs}/src/pages/starters/submissions.js (100%) rename {docs => apps/docs}/src/pages/starters/toy.js (100%) rename {docs => apps/docs}/src/theme/AnnouncementBar/index.js (100%) rename {docs => apps/docs}/src/theme/AnnouncementBar/styles.module.css (100%) rename {docs => apps/docs}/src/theme/BlogLayout/index.js (100%) rename {docs => apps/docs}/src/theme/BlogPostPage/index.js (100%) rename {docs => apps/docs}/src/theme/BlogSidebar/Desktop/index.js (100%) rename {docs => apps/docs}/src/theme/BlogSidebar/Desktop/styles.module.css (100%) rename {docs => apps/docs}/src/theme/BlogSidebar/index.js (100%) rename {docs => apps/docs}/src/theme/BlogTagsPostsPage/index.js (100%) rename {docs => apps/docs}/src/theme/DocCard/index.js (100%) rename {docs => apps/docs}/src/theme/DocCard/styles.module.css (100%) rename {docs => apps/docs}/src/theme/DocCardList/index.js (100%) rename {docs => apps/docs}/src/theme/Layout/index.js (100%) rename {docs => apps/docs}/src/theme/Layout/styles.css (100%) rename {docs => apps/docs}/src/theme/NotFound.js (100%) rename {docs => apps/docs}/src/theme/Playground/index.jsx (100%) rename {docs => apps/docs}/src/theme/Playground/styles.module.css (100%) rename {docs => apps/docs}/src/theme/ReactLiveScope/index.tsx (100%) rename {docs => apps/docs}/src/theme/TOC/index.js (100%) rename {docs => apps/docs}/src/theme/TOC/styles.module.css (100%) rename {docs => apps/docs}/static/.nojekyll (100%) rename {docs => apps/docs}/static/data/doc-update.json (100%) rename {docs => apps/docs}/static/data/releases.json (100%) rename {docs => apps/docs}/static/data/starters.json (100%) rename {docs => apps/docs}/static/fonts/VtexTrustMedium.woff (100%) rename {docs => apps/docs}/static/fonts/VtexTrustRegular.woff (100%) rename {docs => apps/docs}/static/fonts/VtexTrustVariable.woff (100%) rename {docs => apps/docs}/static/img/faststore_thumbnail.png (100%) rename {docs => apps/docs}/static/img/favicon.ico (100%) rename {docs => apps/docs}/static/img/logo.svg (100%) rename {docs => apps/docs}/static/img/white-vtex.svg (100%) rename {docs => apps/docs}/static/scripts/openReplay.js (100%) rename {docs => apps/docs}/static/vercel.json (100%) rename {docs => apps/docs}/tailwind.config.js (100%) diff --git a/.eslintignore b/.eslintignore index efdced2817..9c16f2a949 100644 --- a/.eslintignore +++ b/.eslintignore @@ -5,6 +5,7 @@ dist/ coverage/ .vscode/ .cache/ +.turbo/ # generated js files packages/gatsby-*/**/*.js @@ -14,4 +15,4 @@ __generated__/ # declaration files packages/gatsby-*/**/*.d.ts -docs/* +apps/docs/* diff --git a/.prettierignore b/.prettierignore index 44bd24d194..f5bcd77b55 100644 --- a/.prettierignore +++ b/.prettierignore @@ -4,5 +4,6 @@ public/ coverage/ .vscode/ .cache/ +.turbo/ __generated__/ -docs/ +apps/docs/ diff --git a/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md similarity index 100% rename from docs/CHANGELOG.md rename to apps/docs/CHANGELOG.md diff --git a/docs/README.md b/apps/docs/README.md similarity index 100% rename from docs/README.md rename to apps/docs/README.md diff --git a/docs/babel.config.js b/apps/docs/babel.config.js similarity index 100% rename from docs/babel.config.js rename to apps/docs/babel.config.js diff --git a/docs/blog/2021-07-05-faststore.md b/apps/docs/blog/2021-07-05-faststore.md similarity index 100% rename from docs/blog/2021-07-05-faststore.md rename to apps/docs/blog/2021-07-05-faststore.md diff --git a/docs/blog/2021-08-03-faststore.md b/apps/docs/blog/2021-08-03-faststore.md similarity index 100% rename from docs/blog/2021-08-03-faststore.md rename to apps/docs/blog/2021-08-03-faststore.md diff --git a/docs/blog/2021-09-01-faststore.md b/apps/docs/blog/2021-09-01-faststore.md similarity index 100% rename from docs/blog/2021-09-01-faststore.md rename to apps/docs/blog/2021-09-01-faststore.md diff --git a/docs/blog/2021-10-08-faststore.md b/apps/docs/blog/2021-10-08-faststore.md similarity index 100% rename from docs/blog/2021-10-08-faststore.md rename to apps/docs/blog/2021-10-08-faststore.md diff --git a/docs/blog/2021-11-18-faststore.md b/apps/docs/blog/2021-11-18-faststore.md similarity index 100% rename from docs/blog/2021-11-18-faststore.md rename to apps/docs/blog/2021-11-18-faststore.md diff --git a/docs/blog/2021-12-22-faststore.md b/apps/docs/blog/2021-12-22-faststore.md similarity index 100% rename from docs/blog/2021-12-22-faststore.md rename to apps/docs/blog/2021-12-22-faststore.md diff --git a/docs/blog/2022-02-04-faststore.md b/apps/docs/blog/2022-02-04-faststore.md similarity index 100% rename from docs/blog/2022-02-04-faststore.md rename to apps/docs/blog/2022-02-04-faststore.md diff --git a/docs/blog/2022-02-08-webops.md b/apps/docs/blog/2022-02-08-webops.md similarity index 100% rename from docs/blog/2022-02-08-webops.md rename to apps/docs/blog/2022-02-08-webops.md diff --git a/docs/blog/2022-03-04-faststore.md b/apps/docs/blog/2022-03-04-faststore.md similarity index 100% rename from docs/blog/2022-03-04-faststore.md rename to apps/docs/blog/2022-03-04-faststore.md diff --git a/docs/blog/2022-04-01-basestore.md b/apps/docs/blog/2022-04-01-basestore.md similarity index 100% rename from docs/blog/2022-04-01-basestore.md rename to apps/docs/blog/2022-04-01-basestore.md diff --git a/docs/blog/2022-04-01-faststore.md b/apps/docs/blog/2022-04-01-faststore.md similarity index 100% rename from docs/blog/2022-04-01-faststore.md rename to apps/docs/blog/2022-04-01-faststore.md diff --git a/docs/blog/2022-04-05-faststore.md b/apps/docs/blog/2022-04-05-faststore.md similarity index 100% rename from docs/blog/2022-04-05-faststore.md rename to apps/docs/blog/2022-04-05-faststore.md diff --git a/docs/blog/2022-04-05-webops.md b/apps/docs/blog/2022-04-05-webops.md similarity index 100% rename from docs/blog/2022-04-05-webops.md rename to apps/docs/blog/2022-04-05-webops.md diff --git a/docs/blog/2022-04-22-webops.md b/apps/docs/blog/2022-04-22-webops.md similarity index 100% rename from docs/blog/2022-04-22-webops.md rename to apps/docs/blog/2022-04-22-webops.md diff --git a/docs/blog/2022-04-29-basestore.md b/apps/docs/blog/2022-04-29-basestore.md similarity index 100% rename from docs/blog/2022-04-29-basestore.md rename to apps/docs/blog/2022-04-29-basestore.md diff --git a/docs/blog/2022-04-30-basestore.md b/apps/docs/blog/2022-04-30-basestore.md similarity index 100% rename from docs/blog/2022-04-30-basestore.md rename to apps/docs/blog/2022-04-30-basestore.md diff --git a/docs/blog/2022-05-02-cms.md b/apps/docs/blog/2022-05-02-cms.md similarity index 100% rename from docs/blog/2022-05-02-cms.md rename to apps/docs/blog/2022-05-02-cms.md diff --git a/docs/blog/2022-05-06-basestore.md b/apps/docs/blog/2022-05-06-basestore.md similarity index 100% rename from docs/blog/2022-05-06-basestore.md rename to apps/docs/blog/2022-05-06-basestore.md diff --git a/docs/blog/2022-05-06-faststore.md b/apps/docs/blog/2022-05-06-faststore.md similarity index 100% rename from docs/blog/2022-05-06-faststore.md rename to apps/docs/blog/2022-05-06-faststore.md diff --git a/docs/blog/2022-05-11-webops.md b/apps/docs/blog/2022-05-11-webops.md similarity index 100% rename from docs/blog/2022-05-11-webops.md rename to apps/docs/blog/2022-05-11-webops.md diff --git a/docs/blog/2022-05-18-faststore.md b/apps/docs/blog/2022-05-18-faststore.md similarity index 100% rename from docs/blog/2022-05-18-faststore.md rename to apps/docs/blog/2022-05-18-faststore.md diff --git a/docs/blog/2022-05-19-cms.md b/apps/docs/blog/2022-05-19-cms.md similarity index 100% rename from docs/blog/2022-05-19-cms.md rename to apps/docs/blog/2022-05-19-cms.md diff --git a/docs/blog/2022-05-19-webops.md b/apps/docs/blog/2022-05-19-webops.md similarity index 100% rename from docs/blog/2022-05-19-webops.md rename to apps/docs/blog/2022-05-19-webops.md diff --git a/docs/config.json b/apps/docs/config.json similarity index 100% rename from docs/config.json rename to apps/docs/config.json diff --git a/docs/docs/conceptual-guides.md b/apps/docs/docs/conceptual-guides.md similarity index 100% rename from docs/docs/conceptual-guides.md rename to apps/docs/docs/conceptual-guides.md diff --git a/docs/docs/conceptual-guides/jamstack.md b/apps/docs/docs/conceptual-guides/jamstack.md similarity index 100% rename from docs/docs/conceptual-guides/jamstack.md rename to apps/docs/docs/conceptual-guides/jamstack.md diff --git a/docs/docs/conceptual-guides/plugin.md b/apps/docs/docs/conceptual-guides/plugin.md similarity index 100% rename from docs/docs/conceptual-guides/plugin.md rename to apps/docs/docs/conceptual-guides/plugin.md diff --git a/docs/docs/conceptual-guides/shadowing.md b/apps/docs/docs/conceptual-guides/shadowing.md similarity index 100% rename from docs/docs/conceptual-guides/shadowing.md rename to apps/docs/docs/conceptual-guides/shadowing.md diff --git a/docs/docs/conceptual-guides/starter.md b/apps/docs/docs/conceptual-guides/starter.md similarity index 100% rename from docs/docs/conceptual-guides/starter.md rename to apps/docs/docs/conceptual-guides/starter.md diff --git a/docs/docs/conceptual-guides/static-site-generator.md b/apps/docs/docs/conceptual-guides/static-site-generator.md similarity index 100% rename from docs/docs/conceptual-guides/static-site-generator.md rename to apps/docs/docs/conceptual-guides/static-site-generator.md diff --git a/docs/docs/faq.mdx b/apps/docs/docs/faq.mdx similarity index 100% rename from docs/docs/faq.mdx rename to apps/docs/docs/faq.mdx diff --git a/docs/docs/how-to-guides/cms/vtex-headless-cms/Enabling private CMS previews.md b/apps/docs/docs/how-to-guides/cms/vtex-headless-cms/Enabling private CMS previews.md similarity index 100% rename from docs/docs/how-to-guides/cms/vtex-headless-cms/Enabling private CMS previews.md rename to apps/docs/docs/how-to-guides/cms/vtex-headless-cms/Enabling private CMS previews.md diff --git a/docs/docs/how-to-guides/cms/vtex-headless-cms/Installing Releases on VTEX Headless CMS.md b/apps/docs/docs/how-to-guides/cms/vtex-headless-cms/Installing Releases on VTEX Headless CMS.md similarity index 100% rename from docs/docs/how-to-guides/cms/vtex-headless-cms/Installing Releases on VTEX Headless CMS.md rename to apps/docs/docs/how-to-guides/cms/vtex-headless-cms/Installing Releases on VTEX Headless CMS.md diff --git a/docs/docs/how-to-guides/cms/vtex-headless-cms/Migrating from gatsby-plugin-cms to gatsby-source-cms.md b/apps/docs/docs/how-to-guides/cms/vtex-headless-cms/Migrating from gatsby-plugin-cms to gatsby-source-cms.md similarity index 100% rename from docs/docs/how-to-guides/cms/vtex-headless-cms/Migrating from gatsby-plugin-cms to gatsby-source-cms.md rename to apps/docs/docs/how-to-guides/cms/vtex-headless-cms/Migrating from gatsby-plugin-cms to gatsby-source-cms.md diff --git a/docs/docs/how-to-guides/cms/vtex-headless-cms/Sending CMS updates to VTEX IO WebOps.md b/apps/docs/docs/how-to-guides/cms/vtex-headless-cms/Sending CMS updates to VTEX IO WebOps.md similarity index 100% rename from docs/docs/how-to-guides/cms/vtex-headless-cms/Sending CMS updates to VTEX IO WebOps.md rename to apps/docs/docs/how-to-guides/cms/vtex-headless-cms/Sending CMS updates to VTEX IO WebOps.md diff --git a/docs/docs/how-to-guides/contributing/component.md b/apps/docs/docs/how-to-guides/contributing/component.md similarity index 100% rename from docs/docs/how-to-guides/contributing/component.md rename to apps/docs/docs/how-to-guides/contributing/component.md diff --git a/docs/docs/how-to-guides/contributing/design-principles.md b/apps/docs/docs/how-to-guides/contributing/design-principles.md similarity index 100% rename from docs/docs/how-to-guides/contributing/design-principles.md rename to apps/docs/docs/how-to-guides/contributing/design-principles.md diff --git a/docs/docs/how-to-guides/fetching-data/fetching-data.md b/apps/docs/docs/how-to-guides/fetching-data/fetching-data.md similarity index 100% rename from docs/docs/how-to-guides/fetching-data/fetching-data.md rename to apps/docs/docs/how-to-guides/fetching-data/fetching-data.md diff --git a/docs/docs/how-to-guides/local-development/troubleshooting-problems-in-faststore.md b/apps/docs/docs/how-to-guides/local-development/troubleshooting-problems-in-faststore.md similarity index 100% rename from docs/docs/how-to-guides/local-development/troubleshooting-problems-in-faststore.md rename to apps/docs/docs/how-to-guides/local-development/troubleshooting-problems-in-faststore.md diff --git a/docs/docs/how-to-guides/migrating-from-SF.md b/apps/docs/docs/how-to-guides/migrating-from-SF.md similarity index 100% rename from docs/docs/how-to-guides/migrating-from-SF.md rename to apps/docs/docs/how-to-guides/migrating-from-SF.md diff --git a/docs/docs/how-to-guides/performance/performance.md b/apps/docs/docs/how-to-guides/performance/performance.md similarity index 100% rename from docs/docs/how-to-guides/performance/performance.md rename to apps/docs/docs/how-to-guides/performance/performance.md diff --git a/docs/docs/how-to-guides/platform-integration/vtex-integration.md b/apps/docs/docs/how-to-guides/platform-integration/vtex-integration.md similarity index 100% rename from docs/docs/how-to-guides/platform-integration/vtex-integration.md rename to apps/docs/docs/how-to-guides/platform-integration/vtex-integration.md diff --git a/docs/docs/how-to-guides/platform-integration/vtex/hosting-a-faststore-vtex-website.md b/apps/docs/docs/how-to-guides/platform-integration/vtex/hosting-a-faststore-vtex-website.md similarity index 100% rename from docs/docs/how-to-guides/platform-integration/vtex/hosting-a-faststore-vtex-website.md rename to apps/docs/docs/how-to-guides/platform-integration/vtex/hosting-a-faststore-vtex-website.md diff --git a/docs/docs/how-to-guides/platform-integration/vtex/integrating-the-vtex-login.md b/apps/docs/docs/how-to-guides/platform-integration/vtex/integrating-the-vtex-login.md similarity index 100% rename from docs/docs/how-to-guides/platform-integration/vtex/integrating-the-vtex-login.md rename to apps/docs/docs/how-to-guides/platform-integration/vtex/integrating-the-vtex-login.md diff --git a/docs/docs/how-to-guides/platform-integration/vtex/integrating-vtex-checkout.md b/apps/docs/docs/how-to-guides/platform-integration/vtex/integrating-vtex-checkout.md similarity index 100% rename from docs/docs/how-to-guides/platform-integration/vtex/integrating-vtex-checkout.md rename to apps/docs/docs/how-to-guides/platform-integration/vtex/integrating-vtex-checkout.md diff --git a/docs/docs/how-to-guides/platform-integration/vtex/integrating-vtex-orderplaced-myaccount.md b/apps/docs/docs/how-to-guides/platform-integration/vtex/integrating-vtex-orderplaced-myaccount.md similarity index 100% rename from docs/docs/how-to-guides/platform-integration/vtex/integrating-vtex-orderplaced-myaccount.md rename to apps/docs/docs/how-to-guides/platform-integration/vtex/integrating-vtex-orderplaced-myaccount.md diff --git a/docs/docs/how-to-guides/platform-integration/vtex/setting-up-an-account.md b/apps/docs/docs/how-to-guides/platform-integration/vtex/setting-up-an-account.md similarity index 100% rename from docs/docs/how-to-guides/platform-integration/vtex/setting-up-an-account.md rename to apps/docs/docs/how-to-guides/platform-integration/vtex/setting-up-an-account.md diff --git a/docs/docs/how-to-guides/routing/managing-url-redirects.md b/apps/docs/docs/how-to-guides/routing/managing-url-redirects.md similarity index 100% rename from docs/docs/how-to-guides/routing/managing-url-redirects.md rename to apps/docs/docs/how-to-guides/routing/managing-url-redirects.md diff --git a/docs/docs/how-to-guides/styling/styling-components.md b/apps/docs/docs/how-to-guides/styling/styling-components.md similarity index 100% rename from docs/docs/how-to-guides/styling/styling-components.md rename to apps/docs/docs/how-to-guides/styling/styling-components.md diff --git a/docs/docs/how-to-guides/testing/e2e-testing.md b/apps/docs/docs/how-to-guides/testing/e2e-testing.md similarity index 100% rename from docs/docs/how-to-guides/testing/e2e-testing.md rename to apps/docs/docs/how-to-guides/testing/e2e-testing.md diff --git a/docs/docs/how-to-guides/webops/security.md b/apps/docs/docs/how-to-guides/webops/security.md similarity index 100% rename from docs/docs/how-to-guides/webops/security.md rename to apps/docs/docs/how-to-guides/webops/security.md diff --git a/docs/docs/how-to-guides/webops/security/managing-secrets.md b/apps/docs/docs/how-to-guides/webops/security/managing-secrets.md similarity index 100% rename from docs/docs/how-to-guides/webops/security/managing-secrets.md rename to apps/docs/docs/how-to-guides/webops/security/managing-secrets.md diff --git a/docs/docs/how-to-guides/webops/security/setting-up-secrets.md b/apps/docs/docs/how-to-guides/webops/security/setting-up-secrets.md similarity index 100% rename from docs/docs/how-to-guides/webops/security/setting-up-secrets.md rename to apps/docs/docs/how-to-guides/webops/security/setting-up-secrets.md diff --git a/docs/docs/index.mdx b/apps/docs/docs/index.mdx similarity index 100% rename from docs/docs/index.mdx rename to apps/docs/docs/index.mdx diff --git a/docs/docs/openapi/headlesscms.yaml b/apps/docs/docs/openapi/headlesscms.yaml similarity index 100% rename from docs/docs/openapi/headlesscms.yaml rename to apps/docs/docs/openapi/headlesscms.yaml diff --git a/docs/docs/quickstart.md b/apps/docs/docs/quickstart.md similarity index 100% rename from docs/docs/quickstart.md rename to apps/docs/docs/quickstart.md diff --git a/docs/docs/reference.md b/apps/docs/docs/reference.md similarity index 100% rename from docs/docs/reference.md rename to apps/docs/docs/reference.md diff --git a/docs/docs/reference/api/VTEX.md b/apps/docs/docs/reference/api/VTEX.md similarity index 100% rename from docs/docs/reference/api/VTEX.md rename to apps/docs/docs/reference/api/VTEX.md diff --git a/docs/docs/reference/api/faststore-api.md b/apps/docs/docs/reference/api/faststore-api.md similarity index 100% rename from docs/docs/reference/api/faststore-api.md rename to apps/docs/docs/reference/api/faststore-api.md diff --git a/docs/docs/reference/plugins/gatsby.md b/apps/docs/docs/reference/plugins/gatsby.md similarity index 100% rename from docs/docs/reference/plugins/gatsby.md rename to apps/docs/docs/reference/plugins/gatsby.md diff --git a/docs/docs/reference/plugins/theme.md b/apps/docs/docs/reference/plugins/theme.md similarity index 100% rename from docs/docs/reference/plugins/theme.md rename to apps/docs/docs/reference/plugins/theme.md diff --git a/docs/docs/reference/sdk/Analytics.md b/apps/docs/docs/reference/sdk/Analytics.md similarity index 100% rename from docs/docs/reference/sdk/Analytics.md rename to apps/docs/docs/reference/sdk/Analytics.md diff --git a/docs/docs/reference/sdk/UI.md b/apps/docs/docs/reference/sdk/UI.md similarity index 100% rename from docs/docs/reference/sdk/UI.md rename to apps/docs/docs/reference/sdk/UI.md diff --git a/docs/docs/reference/sdk/cart.md b/apps/docs/docs/reference/sdk/cart.md similarity index 100% rename from docs/docs/reference/sdk/cart.md rename to apps/docs/docs/reference/sdk/cart.md diff --git a/docs/docs/reference/sdk/cart/CartProvider.mdx b/apps/docs/docs/reference/sdk/cart/CartProvider.mdx similarity index 100% rename from docs/docs/reference/sdk/cart/CartProvider.mdx rename to apps/docs/docs/reference/sdk/cart/CartProvider.mdx diff --git a/docs/docs/reference/sdk/cart/useCart.mdx b/apps/docs/docs/reference/sdk/cart/useCart.mdx similarity index 100% rename from docs/docs/reference/sdk/cart/useCart.mdx rename to apps/docs/docs/reference/sdk/cart/useCart.mdx diff --git a/docs/docs/reference/sdk/faststore-sdk.md b/apps/docs/docs/reference/sdk/faststore-sdk.md similarity index 100% rename from docs/docs/reference/sdk/faststore-sdk.md rename to apps/docs/docs/reference/sdk/faststore-sdk.md diff --git a/docs/docs/reference/sdk/seach.md b/apps/docs/docs/reference/sdk/seach.md similarity index 100% rename from docs/docs/reference/sdk/seach.md rename to apps/docs/docs/reference/sdk/seach.md diff --git a/docs/docs/reference/sdk/search/SearchProvider.mdx b/apps/docs/docs/reference/sdk/search/SearchProvider.mdx similarity index 100% rename from docs/docs/reference/sdk/search/SearchProvider.mdx rename to apps/docs/docs/reference/sdk/search/SearchProvider.mdx diff --git a/docs/docs/reference/sdk/search/usePagination.mdx b/apps/docs/docs/reference/sdk/search/usePagination.mdx similarity index 100% rename from docs/docs/reference/sdk/search/usePagination.mdx rename to apps/docs/docs/reference/sdk/search/usePagination.mdx diff --git a/docs/docs/reference/sdk/search/useSearch.mdx b/apps/docs/docs/reference/sdk/search/useSearch.mdx similarity index 100% rename from docs/docs/reference/sdk/search/useSearch.mdx rename to apps/docs/docs/reference/sdk/search/useSearch.mdx diff --git a/docs/docs/reference/ui/atoms/Badge.mdx b/apps/docs/docs/reference/ui/atoms/Badge.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Badge.mdx rename to apps/docs/docs/reference/ui/atoms/Badge.mdx diff --git a/docs/docs/reference/ui/atoms/Button.mdx b/apps/docs/docs/reference/ui/atoms/Button.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Button.mdx rename to apps/docs/docs/reference/ui/atoms/Button.mdx diff --git a/docs/docs/reference/ui/atoms/Checkbox.mdx b/apps/docs/docs/reference/ui/atoms/Checkbox.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Checkbox.mdx rename to apps/docs/docs/reference/ui/atoms/Checkbox.mdx diff --git a/docs/docs/reference/ui/atoms/Icon.mdx b/apps/docs/docs/reference/ui/atoms/Icon.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Icon.mdx rename to apps/docs/docs/reference/ui/atoms/Icon.mdx diff --git a/docs/docs/reference/ui/atoms/Incentive.mdx b/apps/docs/docs/reference/ui/atoms/Incentive.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Incentive.mdx rename to apps/docs/docs/reference/ui/atoms/Incentive.mdx diff --git a/docs/docs/reference/ui/atoms/Input.mdx b/apps/docs/docs/reference/ui/atoms/Input.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Input.mdx rename to apps/docs/docs/reference/ui/atoms/Input.mdx diff --git a/docs/docs/reference/ui/atoms/Label.mdx b/apps/docs/docs/reference/ui/atoms/Label.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Label.mdx rename to apps/docs/docs/reference/ui/atoms/Label.mdx diff --git a/docs/docs/reference/ui/atoms/Link.mdx b/apps/docs/docs/reference/ui/atoms/Link.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Link.mdx rename to apps/docs/docs/reference/ui/atoms/Link.mdx diff --git a/docs/docs/reference/ui/atoms/List.mdx b/apps/docs/docs/reference/ui/atoms/List.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/List.mdx rename to apps/docs/docs/reference/ui/atoms/List.mdx diff --git a/docs/docs/reference/ui/atoms/Overlay.mdx b/apps/docs/docs/reference/ui/atoms/Overlay.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Overlay.mdx rename to apps/docs/docs/reference/ui/atoms/Overlay.mdx diff --git a/docs/docs/reference/ui/atoms/Popover.mdx b/apps/docs/docs/reference/ui/atoms/Popover.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Popover.mdx rename to apps/docs/docs/reference/ui/atoms/Popover.mdx diff --git a/docs/docs/reference/ui/atoms/Price.mdx b/apps/docs/docs/reference/ui/atoms/Price.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Price.mdx rename to apps/docs/docs/reference/ui/atoms/Price.mdx diff --git a/docs/docs/reference/ui/atoms/Radio.mdx b/apps/docs/docs/reference/ui/atoms/Radio.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Radio.mdx rename to apps/docs/docs/reference/ui/atoms/Radio.mdx diff --git a/docs/docs/reference/ui/atoms/Select.mdx b/apps/docs/docs/reference/ui/atoms/Select.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Select.mdx rename to apps/docs/docs/reference/ui/atoms/Select.mdx diff --git a/docs/docs/reference/ui/atoms/Skeleton.mdx b/apps/docs/docs/reference/ui/atoms/Skeleton.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Skeleton.mdx rename to apps/docs/docs/reference/ui/atoms/Skeleton.mdx diff --git a/docs/docs/reference/ui/atoms/Slider.mdx b/apps/docs/docs/reference/ui/atoms/Slider.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Slider.mdx rename to apps/docs/docs/reference/ui/atoms/Slider.mdx diff --git a/docs/docs/reference/ui/atoms/Spinner.mdx b/apps/docs/docs/reference/ui/atoms/Spinner.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/Spinner.mdx rename to apps/docs/docs/reference/ui/atoms/Spinner.mdx diff --git a/docs/docs/reference/ui/atoms/TextArea.mdx b/apps/docs/docs/reference/ui/atoms/TextArea.mdx similarity index 100% rename from docs/docs/reference/ui/atoms/TextArea.mdx rename to apps/docs/docs/reference/ui/atoms/TextArea.mdx diff --git a/docs/docs/reference/ui/faststore-ui.md b/apps/docs/docs/reference/ui/faststore-ui.md similarity index 100% rename from docs/docs/reference/ui/faststore-ui.md rename to apps/docs/docs/reference/ui/faststore-ui.md diff --git a/docs/docs/reference/ui/get-started-faststore-ui.md b/apps/docs/docs/reference/ui/get-started-faststore-ui.md similarity index 100% rename from docs/docs/reference/ui/get-started-faststore-ui.md rename to apps/docs/docs/reference/ui/get-started-faststore-ui.md diff --git a/docs/docs/reference/ui/molecules/Accordion.mdx b/apps/docs/docs/reference/ui/molecules/Accordion.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Accordion.mdx rename to apps/docs/docs/reference/ui/molecules/Accordion.mdx diff --git a/docs/docs/reference/ui/molecules/Alert.mdx b/apps/docs/docs/reference/ui/molecules/Alert.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Alert.mdx rename to apps/docs/docs/reference/ui/molecules/Alert.mdx diff --git a/docs/docs/reference/ui/molecules/Banner.mdx b/apps/docs/docs/reference/ui/molecules/Banner.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Banner.mdx rename to apps/docs/docs/reference/ui/molecules/Banner.mdx diff --git a/docs/docs/reference/ui/molecules/Breadcrumb.mdx b/apps/docs/docs/reference/ui/molecules/Breadcrumb.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Breadcrumb.mdx rename to apps/docs/docs/reference/ui/molecules/Breadcrumb.mdx diff --git a/docs/docs/reference/ui/molecules/Bullets.mdx b/apps/docs/docs/reference/ui/molecules/Bullets.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Bullets.mdx rename to apps/docs/docs/reference/ui/molecules/Bullets.mdx diff --git a/docs/docs/reference/ui/molecules/Carousel.mdx b/apps/docs/docs/reference/ui/molecules/Carousel.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Carousel.mdx rename to apps/docs/docs/reference/ui/molecules/Carousel.mdx diff --git a/docs/docs/reference/ui/molecules/Form.mdx b/apps/docs/docs/reference/ui/molecules/Form.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Form.mdx rename to apps/docs/docs/reference/ui/molecules/Form.mdx diff --git a/docs/docs/reference/ui/molecules/IconButton.mdx b/apps/docs/docs/reference/ui/molecules/IconButton.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/IconButton.mdx rename to apps/docs/docs/reference/ui/molecules/IconButton.mdx diff --git a/docs/docs/reference/ui/molecules/LoadingButton.mdx b/apps/docs/docs/reference/ui/molecules/LoadingButton.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/LoadingButton.mdx rename to apps/docs/docs/reference/ui/molecules/LoadingButton.mdx diff --git a/docs/docs/reference/ui/molecules/Modal.mdx b/apps/docs/docs/reference/ui/molecules/Modal.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Modal.mdx rename to apps/docs/docs/reference/ui/molecules/Modal.mdx diff --git a/docs/docs/reference/ui/molecules/PaymentMethods.mdx b/apps/docs/docs/reference/ui/molecules/PaymentMethods.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/PaymentMethods.mdx rename to apps/docs/docs/reference/ui/molecules/PaymentMethods.mdx diff --git a/docs/docs/reference/ui/molecules/PriceRange.mdx b/apps/docs/docs/reference/ui/molecules/PriceRange.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/PriceRange.mdx rename to apps/docs/docs/reference/ui/molecules/PriceRange.mdx diff --git a/docs/docs/reference/ui/molecules/QuantitySelector.mdx b/apps/docs/docs/reference/ui/molecules/QuantitySelector.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/QuantitySelector.mdx rename to apps/docs/docs/reference/ui/molecules/QuantitySelector.mdx diff --git a/docs/docs/reference/ui/molecules/RadioGroup.mdx b/apps/docs/docs/reference/ui/molecules/RadioGroup.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/RadioGroup.mdx rename to apps/docs/docs/reference/ui/molecules/RadioGroup.mdx diff --git a/docs/docs/reference/ui/molecules/SearchInput.mdx b/apps/docs/docs/reference/ui/molecules/SearchInput.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/SearchInput.mdx rename to apps/docs/docs/reference/ui/molecules/SearchInput.mdx diff --git a/docs/docs/reference/ui/molecules/Table.mdx b/apps/docs/docs/reference/ui/molecules/Table.mdx similarity index 100% rename from docs/docs/reference/ui/molecules/Table.mdx rename to apps/docs/docs/reference/ui/molecules/Table.mdx diff --git a/docs/docs/reference/ui/organisms/Card.mdx b/apps/docs/docs/reference/ui/organisms/Card.mdx similarity index 100% rename from docs/docs/reference/ui/organisms/Card.mdx rename to apps/docs/docs/reference/ui/organisms/Card.mdx diff --git a/docs/docs/resources.mdx b/apps/docs/docs/resources.mdx similarity index 100% rename from docs/docs/resources.mdx rename to apps/docs/docs/resources.mdx diff --git a/docs/docs/templates/how-to-guide-template.md b/apps/docs/docs/templates/how-to-guide-template.md similarity index 100% rename from docs/docs/templates/how-to-guide-template.md rename to apps/docs/docs/templates/how-to-guide-template.md diff --git a/docs/docs/templates/ui-components.md b/apps/docs/docs/templates/ui-components.md similarity index 100% rename from docs/docs/templates/ui-components.md rename to apps/docs/docs/templates/ui-components.md diff --git a/docs/docs/tutorials.mdx b/apps/docs/docs/tutorials.mdx similarity index 100% rename from docs/docs/tutorials.mdx rename to apps/docs/docs/tutorials.mdx diff --git a/docs/docs/tutorials/cms-overview.md b/apps/docs/docs/tutorials/cms-overview.md similarity index 100% rename from docs/docs/tutorials/cms-overview.md rename to apps/docs/docs/tutorials/cms-overview.md diff --git a/docs/docs/tutorials/cms-storecomponents/00 - Introducing the VTEX CMS.md b/apps/docs/docs/tutorials/cms-storecomponents/00 - Introducing the VTEX CMS.md similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/00 - Introducing the VTEX CMS.md rename to apps/docs/docs/tutorials/cms-storecomponents/00 - Introducing the VTEX CMS.md diff --git a/docs/docs/tutorials/cms-storecomponents/01 - Installing and configuring the VTEX CMS app.md b/apps/docs/docs/tutorials/cms-storecomponents/01 - Installing and configuring the VTEX CMS app.md similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/01 - Installing and configuring the VTEX CMS app.md rename to apps/docs/docs/tutorials/cms-storecomponents/01 - Installing and configuring the VTEX CMS app.md diff --git a/docs/docs/tutorials/cms-storecomponents/02 - Installing the VTEX CMS plugin.md b/apps/docs/docs/tutorials/cms-storecomponents/02 - Installing the VTEX CMS plugin.md similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/02 - Installing the VTEX CMS plugin.md rename to apps/docs/docs/tutorials/cms-storecomponents/02 - Installing the VTEX CMS plugin.md diff --git a/docs/docs/tutorials/cms-storecomponents/03 - Adding Sections to the CMS.md b/apps/docs/docs/tutorials/cms-storecomponents/03 - Adding Sections to the CMS.md similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/03 - Adding Sections to the CMS.md rename to apps/docs/docs/tutorials/cms-storecomponents/03 - Adding Sections to the CMS.md diff --git a/docs/docs/tutorials/cms-storecomponents/04 - Adding content types to the CMS.md b/apps/docs/docs/tutorials/cms-storecomponents/04 - Adding content types to the CMS.md similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/04 - Adding content types to the CMS.md rename to apps/docs/docs/tutorials/cms-storecomponents/04 - Adding content types to the CMS.md diff --git a/docs/docs/tutorials/cms-storecomponents/05 - Defining translation keys.md b/apps/docs/docs/tutorials/cms-storecomponents/05 - Defining translation keys.md similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/05 - Defining translation keys.md rename to apps/docs/docs/tutorials/cms-storecomponents/05 - Defining translation keys.md diff --git a/docs/docs/tutorials/cms-storecomponents/06 - Querying the CMS data.md b/apps/docs/docs/tutorials/cms-storecomponents/06 - Querying the CMS data.md similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/06 - Querying the CMS data.md rename to apps/docs/docs/tutorials/cms-storecomponents/06 - Querying the CMS data.md diff --git a/docs/docs/tutorials/cms-storecomponents/07 - Adapting the views components.md b/apps/docs/docs/tutorials/cms-storecomponents/07 - Adapting the views components.md similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/07 - Adapting the views components.md rename to apps/docs/docs/tutorials/cms-storecomponents/07 - Adapting the views components.md diff --git a/docs/docs/tutorials/cms-storecomponents/Overview.mdx b/apps/docs/docs/tutorials/cms-storecomponents/Overview.mdx similarity index 100% rename from docs/docs/tutorials/cms-storecomponents/Overview.mdx rename to apps/docs/docs/tutorials/cms-storecomponents/Overview.mdx diff --git a/docs/docs/tutorials/cms/00 - Introducing the VTEX CMS.md b/apps/docs/docs/tutorials/cms/00 - Introducing the VTEX CMS.md similarity index 100% rename from docs/docs/tutorials/cms/00 - Introducing the VTEX CMS.md rename to apps/docs/docs/tutorials/cms/00 - Introducing the VTEX CMS.md diff --git a/docs/docs/tutorials/cms/01 - Configuring your VTEX account.md b/apps/docs/docs/tutorials/cms/01 - Configuring your VTEX account.md similarity index 100% rename from docs/docs/tutorials/cms/01 - Configuring your VTEX account.md rename to apps/docs/docs/tutorials/cms/01 - Configuring your VTEX account.md diff --git a/docs/docs/tutorials/cms/02 - Setting up the VTEX Headless CMS in your FastStore project.md b/apps/docs/docs/tutorials/cms/02 - Setting up the VTEX Headless CMS in your FastStore project.md similarity index 100% rename from docs/docs/tutorials/cms/02 - Setting up the VTEX Headless CMS in your FastStore project.md rename to apps/docs/docs/tutorials/cms/02 - Setting up the VTEX Headless CMS in your FastStore project.md diff --git a/docs/docs/tutorials/cms/03 - Adding Content Types and Sections to the VTEX Headless CMS.md b/apps/docs/docs/tutorials/cms/03 - Adding Content Types and Sections to the VTEX Headless CMS.md similarity index 100% rename from docs/docs/tutorials/cms/03 - Adding Content Types and Sections to the VTEX Headless CMS.md rename to apps/docs/docs/tutorials/cms/03 - Adding Content Types and Sections to the VTEX Headless CMS.md diff --git a/docs/docs/tutorials/cms/04 - Querying the CMS data.md b/apps/docs/docs/tutorials/cms/04 - Querying the CMS data.md similarity index 100% rename from docs/docs/tutorials/cms/04 - Querying the CMS data.md rename to apps/docs/docs/tutorials/cms/04 - Querying the CMS data.md diff --git a/docs/docs/tutorials/cms/05 - Adapting the views components.md b/apps/docs/docs/tutorials/cms/05 - Adapting the views components.md similarity index 100% rename from docs/docs/tutorials/cms/05 - Adapting the views components.md rename to apps/docs/docs/tutorials/cms/05 - Adapting the views components.md diff --git a/docs/docs/tutorials/cms/Troubleshooting.md b/apps/docs/docs/tutorials/cms/Troubleshooting.md similarity index 100% rename from docs/docs/tutorials/cms/Troubleshooting.md rename to apps/docs/docs/tutorials/cms/Troubleshooting.md diff --git a/docs/docs/tutorials/fundamentals/concepts.md b/apps/docs/docs/tutorials/fundamentals/concepts.md similarity index 100% rename from docs/docs/tutorials/fundamentals/concepts.md rename to apps/docs/docs/tutorials/fundamentals/concepts.md diff --git a/docs/docs/tutorials/fundamentals/faststore.md b/apps/docs/docs/tutorials/fundamentals/faststore.md similarity index 100% rename from docs/docs/tutorials/fundamentals/faststore.md rename to apps/docs/docs/tutorials/fundamentals/faststore.md diff --git a/docs/docs/tutorials/fundamentals/overview.mdx b/apps/docs/docs/tutorials/fundamentals/overview.mdx similarity index 100% rename from docs/docs/tutorials/fundamentals/overview.mdx rename to apps/docs/docs/tutorials/fundamentals/overview.mdx diff --git a/docs/docs/tutorials/gatsby-overview.mdx b/apps/docs/docs/tutorials/gatsby-overview.mdx similarity index 100% rename from docs/docs/tutorials/gatsby-overview.mdx rename to apps/docs/docs/tutorials/gatsby-overview.mdx diff --git a/docs/docs/tutorials/gatsby/01 - Introducting Gatsby.mdx b/apps/docs/docs/tutorials/gatsby/01 - Introducting Gatsby.mdx similarity index 100% rename from docs/docs/tutorials/gatsby/01 - Introducting Gatsby.mdx rename to apps/docs/docs/tutorials/gatsby/01 - Introducting Gatsby.mdx diff --git a/docs/docs/tutorials/gatsby/02 - Setting up your development environment.mdx b/apps/docs/docs/tutorials/gatsby/02 - Setting up your development environment.mdx similarity index 100% rename from docs/docs/tutorials/gatsby/02 - Setting up your development environment.mdx rename to apps/docs/docs/tutorials/gatsby/02 - Setting up your development environment.mdx diff --git a/docs/docs/tutorials/gatsby/03 - Creating your first SFJ store.mdx b/apps/docs/docs/tutorials/gatsby/03 - Creating your first SFJ store.mdx similarity index 100% rename from docs/docs/tutorials/gatsby/03 - Creating your first SFJ store.mdx rename to apps/docs/docs/tutorials/gatsby/03 - Creating your first SFJ store.mdx diff --git a/docs/docs/tutorials/gatsby/04 - Understanding the project structure.md b/apps/docs/docs/tutorials/gatsby/04 - Understanding the project structure.md similarity index 100% rename from docs/docs/tutorials/gatsby/04 - Understanding the project structure.md rename to apps/docs/docs/tutorials/gatsby/04 - Understanding the project structure.md diff --git a/docs/docs/tutorials/gatsby/05 - Using components.md b/apps/docs/docs/tutorials/gatsby/05 - Using components.md similarity index 100% rename from docs/docs/tutorials/gatsby/05 - Using components.md rename to apps/docs/docs/tutorials/gatsby/05 - Using components.md diff --git a/docs/docs/tutorials/gatsby/06 - Styling components.mdx b/apps/docs/docs/tutorials/gatsby/06 - Styling components.mdx similarity index 100% rename from docs/docs/tutorials/gatsby/06 - Styling components.mdx rename to apps/docs/docs/tutorials/gatsby/06 - Styling components.mdx diff --git a/docs/docs/tutorials/gatsby/Troubleshooting.mdx b/apps/docs/docs/tutorials/gatsby/Troubleshooting.mdx similarity index 100% rename from docs/docs/tutorials/gatsby/Troubleshooting.mdx rename to apps/docs/docs/tutorials/gatsby/Troubleshooting.mdx diff --git a/docs/docs/v0/troubleshooting.md b/apps/docs/docs/v0/troubleshooting.md similarity index 100% rename from docs/docs/v0/troubleshooting.md rename to apps/docs/docs/v0/troubleshooting.md diff --git a/docs/docusaurus.config.js b/apps/docs/docusaurus.config.js similarity index 100% rename from docs/docusaurus.config.js rename to apps/docs/docusaurus.config.js diff --git a/docs/package.json b/apps/docs/package.json similarity index 100% rename from docs/package.json rename to apps/docs/package.json diff --git a/docs/plugins/docusaurus-tailwindcss-loader/index.js b/apps/docs/plugins/docusaurus-tailwindcss-loader/index.js similarity index 100% rename from docs/plugins/docusaurus-tailwindcss-loader/index.js rename to apps/docs/plugins/docusaurus-tailwindcss-loader/index.js diff --git a/docs/sidebars.js b/apps/docs/sidebars.js similarity index 100% rename from docs/sidebars.js rename to apps/docs/sidebars.js diff --git a/docs/src/components/CardGrid/CardGrid.jsx b/apps/docs/src/components/CardGrid/CardGrid.jsx similarity index 100% rename from docs/src/components/CardGrid/CardGrid.jsx rename to apps/docs/src/components/CardGrid/CardGrid.jsx diff --git a/docs/src/components/CardGrid/CardGrid.module.css b/apps/docs/src/components/CardGrid/CardGrid.module.css similarity index 100% rename from docs/src/components/CardGrid/CardGrid.module.css rename to apps/docs/src/components/CardGrid/CardGrid.module.css diff --git a/docs/src/components/CodeBlockWrapper/CodeBlockWrapper.tsx b/apps/docs/src/components/CodeBlockWrapper/CodeBlockWrapper.tsx similarity index 100% rename from docs/src/components/CodeBlockWrapper/CodeBlockWrapper.tsx rename to apps/docs/src/components/CodeBlockWrapper/CodeBlockWrapper.tsx diff --git a/docs/src/components/CodeBlockWrapper/index.ts b/apps/docs/src/components/CodeBlockWrapper/index.ts similarity index 100% rename from docs/src/components/CodeBlockWrapper/index.ts rename to apps/docs/src/components/CodeBlockWrapper/index.ts diff --git a/docs/src/components/CodeBlockWrapper/useCollapsibleCodeBlock.tsx b/apps/docs/src/components/CodeBlockWrapper/useCollapsibleCodeBlock.tsx similarity index 100% rename from docs/src/components/CodeBlockWrapper/useCollapsibleCodeBlock.tsx rename to apps/docs/src/components/CodeBlockWrapper/useCollapsibleCodeBlock.tsx diff --git a/docs/src/components/CodeBlockWrapper/useCopyCodeBlock.tsx b/apps/docs/src/components/CodeBlockWrapper/useCopyCodeBlock.tsx similarity index 100% rename from docs/src/components/CodeBlockWrapper/useCopyCodeBlock.tsx rename to apps/docs/src/components/CodeBlockWrapper/useCopyCodeBlock.tsx diff --git a/docs/src/components/DocStructure/DocStructure.js b/apps/docs/src/components/DocStructure/DocStructure.js similarity index 100% rename from docs/src/components/DocStructure/DocStructure.js rename to apps/docs/src/components/DocStructure/DocStructure.js diff --git a/docs/src/components/DocUpdate/DocUpdate.js b/apps/docs/src/components/DocUpdate/DocUpdate.js similarity index 100% rename from docs/src/components/DocUpdate/DocUpdate.js rename to apps/docs/src/components/DocUpdate/DocUpdate.js diff --git a/docs/src/components/FaqQuestion/FaqQuestion.jsx b/apps/docs/src/components/FaqQuestion/FaqQuestion.jsx similarity index 100% rename from docs/src/components/FaqQuestion/FaqQuestion.jsx rename to apps/docs/src/components/FaqQuestion/FaqQuestion.jsx diff --git a/docs/src/components/FaqQuestion/FaqQuestion.module.css b/apps/docs/src/components/FaqQuestion/FaqQuestion.module.css similarity index 100% rename from docs/src/components/FaqQuestion/FaqQuestion.module.css rename to apps/docs/src/components/FaqQuestion/FaqQuestion.module.css diff --git a/docs/src/components/FastStore/FastStore.js b/apps/docs/src/components/FastStore/FastStore.js similarity index 100% rename from docs/src/components/FastStore/FastStore.js rename to apps/docs/src/components/FastStore/FastStore.js diff --git a/docs/src/components/FastStore/FastStore.module.css b/apps/docs/src/components/FastStore/FastStore.module.css similarity index 100% rename from docs/src/components/FastStore/FastStore.module.css rename to apps/docs/src/components/FastStore/FastStore.module.css diff --git a/docs/src/components/FastStorePackages/FastStorePackages.module.css b/apps/docs/src/components/FastStorePackages/FastStorePackages.module.css similarity index 100% rename from docs/src/components/FastStorePackages/FastStorePackages.module.css rename to apps/docs/src/components/FastStorePackages/FastStorePackages.module.css diff --git a/docs/src/components/FastStorePackages/FastStorePackages.tsx b/apps/docs/src/components/FastStorePackages/FastStorePackages.tsx similarity index 100% rename from docs/src/components/FastStorePackages/FastStorePackages.tsx rename to apps/docs/src/components/FastStorePackages/FastStorePackages.tsx diff --git a/docs/src/components/FeatureCard/FeatureCard.js b/apps/docs/src/components/FeatureCard/FeatureCard.js similarity index 100% rename from docs/src/components/FeatureCard/FeatureCard.js rename to apps/docs/src/components/FeatureCard/FeatureCard.js diff --git a/docs/src/components/FeatureCard/FeatureCard.module.css b/apps/docs/src/components/FeatureCard/FeatureCard.module.css similarity index 100% rename from docs/src/components/FeatureCard/FeatureCard.module.css rename to apps/docs/src/components/FeatureCard/FeatureCard.module.css diff --git a/docs/src/components/FeedbackButton/FeedbackButton.js b/apps/docs/src/components/FeedbackButton/FeedbackButton.js similarity index 100% rename from docs/src/components/FeedbackButton/FeedbackButton.js rename to apps/docs/src/components/FeedbackButton/FeedbackButton.js diff --git a/docs/src/components/FeedbackButton/FeedbackButton.module.css b/apps/docs/src/components/FeedbackButton/FeedbackButton.module.css similarity index 100% rename from docs/src/components/FeedbackButton/FeedbackButton.module.css rename to apps/docs/src/components/FeedbackButton/FeedbackButton.module.css diff --git a/docs/src/components/FeedbackForm/FeedbackForm.module.css b/apps/docs/src/components/FeedbackForm/FeedbackForm.module.css similarity index 100% rename from docs/src/components/FeedbackForm/FeedbackForm.module.css rename to apps/docs/src/components/FeedbackForm/FeedbackForm.module.css diff --git a/docs/src/components/FeedbackForm/FeedbackForm.tsx b/apps/docs/src/components/FeedbackForm/FeedbackForm.tsx similarity index 100% rename from docs/src/components/FeedbackForm/FeedbackForm.tsx rename to apps/docs/src/components/FeedbackForm/FeedbackForm.tsx diff --git a/docs/src/components/FeedbackModal/FeedbackModal.js b/apps/docs/src/components/FeedbackModal/FeedbackModal.js similarity index 100% rename from docs/src/components/FeedbackModal/FeedbackModal.js rename to apps/docs/src/components/FeedbackModal/FeedbackModal.js diff --git a/docs/src/components/FeedbackModal/FeedbackModal.module.css b/apps/docs/src/components/FeedbackModal/FeedbackModal.module.css similarity index 100% rename from docs/src/components/FeedbackModal/FeedbackModal.module.css rename to apps/docs/src/components/FeedbackModal/FeedbackModal.module.css diff --git a/docs/src/components/IconGrid/IconGrid.jsx b/apps/docs/src/components/IconGrid/IconGrid.jsx similarity index 100% rename from docs/src/components/IconGrid/IconGrid.jsx rename to apps/docs/src/components/IconGrid/IconGrid.jsx diff --git a/docs/src/components/IconGrid/IconGrid.module.css b/apps/docs/src/components/IconGrid/IconGrid.module.css similarity index 100% rename from docs/src/components/IconGrid/IconGrid.module.css rename to apps/docs/src/components/IconGrid/IconGrid.module.css diff --git a/docs/src/components/ImageSwitcher/ImageSwitcher.js b/apps/docs/src/components/ImageSwitcher/ImageSwitcher.js similarity index 100% rename from docs/src/components/ImageSwitcher/ImageSwitcher.js rename to apps/docs/src/components/ImageSwitcher/ImageSwitcher.js diff --git a/docs/src/components/InfoCard/InfoCard.js b/apps/docs/src/components/InfoCard/InfoCard.js similarity index 100% rename from docs/src/components/InfoCard/InfoCard.js rename to apps/docs/src/components/InfoCard/InfoCard.js diff --git a/docs/src/components/InfoCard/InfoCard.module.css b/apps/docs/src/components/InfoCard/InfoCard.module.css similarity index 100% rename from docs/src/components/InfoCard/InfoCard.module.css rename to apps/docs/src/components/InfoCard/InfoCard.module.css diff --git a/docs/src/components/LatestUpdates/LatestUpdates.js b/apps/docs/src/components/LatestUpdates/LatestUpdates.js similarity index 100% rename from docs/src/components/LatestUpdates/LatestUpdates.js rename to apps/docs/src/components/LatestUpdates/LatestUpdates.js diff --git a/docs/src/components/LatestUpdates/LatestUpdates.module.css b/apps/docs/src/components/LatestUpdates/LatestUpdates.module.css similarity index 100% rename from docs/src/components/LatestUpdates/LatestUpdates.module.css rename to apps/docs/src/components/LatestUpdates/LatestUpdates.module.css diff --git a/docs/src/components/PropsComponent/PropsComponent.module.css b/apps/docs/src/components/PropsComponent/PropsComponent.module.css similarity index 100% rename from docs/src/components/PropsComponent/PropsComponent.module.css rename to apps/docs/src/components/PropsComponent/PropsComponent.module.css diff --git a/docs/src/components/PropsComponent/PropsComponent.tsx b/apps/docs/src/components/PropsComponent/PropsComponent.tsx similarity index 100% rename from docs/src/components/PropsComponent/PropsComponent.tsx rename to apps/docs/src/components/PropsComponent/PropsComponent.tsx diff --git a/docs/src/components/PropsSection/PropsSection.jsx b/apps/docs/src/components/PropsSection/PropsSection.jsx similarity index 100% rename from docs/src/components/PropsSection/PropsSection.jsx rename to apps/docs/src/components/PropsSection/PropsSection.jsx diff --git a/docs/src/components/PropsSection/PropsSection.module.css b/apps/docs/src/components/PropsSection/PropsSection.module.css similarity index 100% rename from docs/src/components/PropsSection/PropsSection.module.css rename to apps/docs/src/components/PropsSection/PropsSection.module.css diff --git a/docs/src/components/SectionImage/SectionImage.js b/apps/docs/src/components/SectionImage/SectionImage.js similarity index 100% rename from docs/src/components/SectionImage/SectionImage.js rename to apps/docs/src/components/SectionImage/SectionImage.js diff --git a/docs/src/components/SectionImage/SectionImage.module.css b/apps/docs/src/components/SectionImage/SectionImage.module.css similarity index 100% rename from docs/src/components/SectionImage/SectionImage.module.css rename to apps/docs/src/components/SectionImage/SectionImage.module.css diff --git a/docs/src/components/StarterComponent/StarterComponent.js b/apps/docs/src/components/StarterComponent/StarterComponent.js similarity index 100% rename from docs/src/components/StarterComponent/StarterComponent.js rename to apps/docs/src/components/StarterComponent/StarterComponent.js diff --git a/docs/src/components/ViewAll/ViewAll.js b/apps/docs/src/components/ViewAll/ViewAll.js similarity index 100% rename from docs/src/components/ViewAll/ViewAll.js rename to apps/docs/src/components/ViewAll/ViewAll.js diff --git a/docs/src/components/ViewAll/ViewAll.module.css b/apps/docs/src/components/ViewAll/ViewAll.module.css similarity index 100% rename from docs/src/components/ViewAll/ViewAll.module.css rename to apps/docs/src/components/ViewAll/ViewAll.module.css diff --git a/docs/src/components/hooks/useInterval.ts b/apps/docs/src/components/hooks/useInterval.ts similarity index 100% rename from docs/src/components/hooks/useInterval.ts rename to apps/docs/src/components/hooks/useInterval.ts diff --git a/docs/src/components/hooks/useScroll.ts b/apps/docs/src/components/hooks/useScroll.ts similarity index 100% rename from docs/src/components/hooks/useScroll.ts rename to apps/docs/src/components/hooks/useScroll.ts diff --git a/docs/src/components/hooks/useWindowSize.ts b/apps/docs/src/components/hooks/useWindowSize.ts similarity index 100% rename from docs/src/components/hooks/useWindowSize.ts rename to apps/docs/src/components/hooks/useWindowSize.ts diff --git a/docs/src/components/utils.ts b/apps/docs/src/components/utils.ts similarity index 100% rename from docs/src/components/utils.ts rename to apps/docs/src/components/utils.ts diff --git a/docs/src/css/custom.css b/apps/docs/src/css/custom.css similarity index 100% rename from docs/src/css/custom.css rename to apps/docs/src/css/custom.css diff --git a/docs/src/pages/sections/EducationSection/EducationSection.js b/apps/docs/src/pages/sections/EducationSection/EducationSection.js similarity index 100% rename from docs/src/pages/sections/EducationSection/EducationSection.js rename to apps/docs/src/pages/sections/EducationSection/EducationSection.js diff --git a/docs/src/pages/sections/FaqPage/FaqPage.js b/apps/docs/src/pages/sections/FaqPage/FaqPage.js similarity index 100% rename from docs/src/pages/sections/FaqPage/FaqPage.js rename to apps/docs/src/pages/sections/FaqPage/FaqPage.js diff --git a/docs/src/pages/sections/StarterComponentPage/StarterComponentPage.js b/apps/docs/src/pages/sections/StarterComponentPage/StarterComponentPage.js similarity index 100% rename from docs/src/pages/sections/StarterComponentPage/StarterComponentPage.js rename to apps/docs/src/pages/sections/StarterComponentPage/StarterComponentPage.js diff --git a/docs/src/pages/sections/StarterPage/StarterPage.js b/apps/docs/src/pages/sections/StarterPage/StarterPage.js similarity index 100% rename from docs/src/pages/sections/StarterPage/StarterPage.js rename to apps/docs/src/pages/sections/StarterPage/StarterPage.js diff --git a/docs/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.jsx b/apps/docs/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.jsx similarity index 100% rename from docs/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.jsx rename to apps/docs/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.jsx diff --git a/docs/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.module.css b/apps/docs/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.module.css similarity index 100% rename from docs/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.module.css rename to apps/docs/src/pages/sections/StarterSubmissionForm/StarterSubmissionForm.module.css diff --git a/docs/src/pages/sections/UpdatesSection/UpdatesSection.js b/apps/docs/src/pages/sections/UpdatesSection/UpdatesSection.js similarity index 100% rename from docs/src/pages/sections/UpdatesSection/UpdatesSection.js rename to apps/docs/src/pages/sections/UpdatesSection/UpdatesSection.js diff --git a/docs/src/pages/starters.js b/apps/docs/src/pages/starters.js similarity index 100% rename from docs/src/pages/starters.js rename to apps/docs/src/pages/starters.js diff --git a/docs/src/pages/starters/Submissions.module.css b/apps/docs/src/pages/starters/Submissions.module.css similarity index 100% rename from docs/src/pages/starters/Submissions.module.css rename to apps/docs/src/pages/starters/Submissions.module.css diff --git a/docs/src/pages/starters/base.js b/apps/docs/src/pages/starters/base.js similarity index 100% rename from docs/src/pages/starters/base.js rename to apps/docs/src/pages/starters/base.js diff --git a/docs/src/pages/starters/beauty.js b/apps/docs/src/pages/starters/beauty.js similarity index 100% rename from docs/src/pages/starters/beauty.js rename to apps/docs/src/pages/starters/beauty.js diff --git a/docs/src/pages/starters/cms-base.js b/apps/docs/src/pages/starters/cms-base.js similarity index 100% rename from docs/src/pages/starters/cms-base.js rename to apps/docs/src/pages/starters/cms-base.js diff --git a/docs/src/pages/starters/pets.js b/apps/docs/src/pages/starters/pets.js similarity index 100% rename from docs/src/pages/starters/pets.js rename to apps/docs/src/pages/starters/pets.js diff --git a/docs/src/pages/starters/submissions.js b/apps/docs/src/pages/starters/submissions.js similarity index 100% rename from docs/src/pages/starters/submissions.js rename to apps/docs/src/pages/starters/submissions.js diff --git a/docs/src/pages/starters/toy.js b/apps/docs/src/pages/starters/toy.js similarity index 100% rename from docs/src/pages/starters/toy.js rename to apps/docs/src/pages/starters/toy.js diff --git a/docs/src/theme/AnnouncementBar/index.js b/apps/docs/src/theme/AnnouncementBar/index.js similarity index 100% rename from docs/src/theme/AnnouncementBar/index.js rename to apps/docs/src/theme/AnnouncementBar/index.js diff --git a/docs/src/theme/AnnouncementBar/styles.module.css b/apps/docs/src/theme/AnnouncementBar/styles.module.css similarity index 100% rename from docs/src/theme/AnnouncementBar/styles.module.css rename to apps/docs/src/theme/AnnouncementBar/styles.module.css diff --git a/docs/src/theme/BlogLayout/index.js b/apps/docs/src/theme/BlogLayout/index.js similarity index 100% rename from docs/src/theme/BlogLayout/index.js rename to apps/docs/src/theme/BlogLayout/index.js diff --git a/docs/src/theme/BlogPostPage/index.js b/apps/docs/src/theme/BlogPostPage/index.js similarity index 100% rename from docs/src/theme/BlogPostPage/index.js rename to apps/docs/src/theme/BlogPostPage/index.js diff --git a/docs/src/theme/BlogSidebar/Desktop/index.js b/apps/docs/src/theme/BlogSidebar/Desktop/index.js similarity index 100% rename from docs/src/theme/BlogSidebar/Desktop/index.js rename to apps/docs/src/theme/BlogSidebar/Desktop/index.js diff --git a/docs/src/theme/BlogSidebar/Desktop/styles.module.css b/apps/docs/src/theme/BlogSidebar/Desktop/styles.module.css similarity index 100% rename from docs/src/theme/BlogSidebar/Desktop/styles.module.css rename to apps/docs/src/theme/BlogSidebar/Desktop/styles.module.css diff --git a/docs/src/theme/BlogSidebar/index.js b/apps/docs/src/theme/BlogSidebar/index.js similarity index 100% rename from docs/src/theme/BlogSidebar/index.js rename to apps/docs/src/theme/BlogSidebar/index.js diff --git a/docs/src/theme/BlogTagsPostsPage/index.js b/apps/docs/src/theme/BlogTagsPostsPage/index.js similarity index 100% rename from docs/src/theme/BlogTagsPostsPage/index.js rename to apps/docs/src/theme/BlogTagsPostsPage/index.js diff --git a/docs/src/theme/DocCard/index.js b/apps/docs/src/theme/DocCard/index.js similarity index 100% rename from docs/src/theme/DocCard/index.js rename to apps/docs/src/theme/DocCard/index.js diff --git a/docs/src/theme/DocCard/styles.module.css b/apps/docs/src/theme/DocCard/styles.module.css similarity index 100% rename from docs/src/theme/DocCard/styles.module.css rename to apps/docs/src/theme/DocCard/styles.module.css diff --git a/docs/src/theme/DocCardList/index.js b/apps/docs/src/theme/DocCardList/index.js similarity index 100% rename from docs/src/theme/DocCardList/index.js rename to apps/docs/src/theme/DocCardList/index.js diff --git a/docs/src/theme/Layout/index.js b/apps/docs/src/theme/Layout/index.js similarity index 100% rename from docs/src/theme/Layout/index.js rename to apps/docs/src/theme/Layout/index.js diff --git a/docs/src/theme/Layout/styles.css b/apps/docs/src/theme/Layout/styles.css similarity index 100% rename from docs/src/theme/Layout/styles.css rename to apps/docs/src/theme/Layout/styles.css diff --git a/docs/src/theme/NotFound.js b/apps/docs/src/theme/NotFound.js similarity index 100% rename from docs/src/theme/NotFound.js rename to apps/docs/src/theme/NotFound.js diff --git a/docs/src/theme/Playground/index.jsx b/apps/docs/src/theme/Playground/index.jsx similarity index 100% rename from docs/src/theme/Playground/index.jsx rename to apps/docs/src/theme/Playground/index.jsx diff --git a/docs/src/theme/Playground/styles.module.css b/apps/docs/src/theme/Playground/styles.module.css similarity index 100% rename from docs/src/theme/Playground/styles.module.css rename to apps/docs/src/theme/Playground/styles.module.css diff --git a/docs/src/theme/ReactLiveScope/index.tsx b/apps/docs/src/theme/ReactLiveScope/index.tsx similarity index 100% rename from docs/src/theme/ReactLiveScope/index.tsx rename to apps/docs/src/theme/ReactLiveScope/index.tsx diff --git a/docs/src/theme/TOC/index.js b/apps/docs/src/theme/TOC/index.js similarity index 100% rename from docs/src/theme/TOC/index.js rename to apps/docs/src/theme/TOC/index.js diff --git a/docs/src/theme/TOC/styles.module.css b/apps/docs/src/theme/TOC/styles.module.css similarity index 100% rename from docs/src/theme/TOC/styles.module.css rename to apps/docs/src/theme/TOC/styles.module.css diff --git a/docs/static/.nojekyll b/apps/docs/static/.nojekyll similarity index 100% rename from docs/static/.nojekyll rename to apps/docs/static/.nojekyll diff --git a/docs/static/data/doc-update.json b/apps/docs/static/data/doc-update.json similarity index 100% rename from docs/static/data/doc-update.json rename to apps/docs/static/data/doc-update.json diff --git a/docs/static/data/releases.json b/apps/docs/static/data/releases.json similarity index 100% rename from docs/static/data/releases.json rename to apps/docs/static/data/releases.json diff --git a/docs/static/data/starters.json b/apps/docs/static/data/starters.json similarity index 100% rename from docs/static/data/starters.json rename to apps/docs/static/data/starters.json diff --git a/docs/static/fonts/VtexTrustMedium.woff b/apps/docs/static/fonts/VtexTrustMedium.woff similarity index 100% rename from docs/static/fonts/VtexTrustMedium.woff rename to apps/docs/static/fonts/VtexTrustMedium.woff diff --git a/docs/static/fonts/VtexTrustRegular.woff b/apps/docs/static/fonts/VtexTrustRegular.woff similarity index 100% rename from docs/static/fonts/VtexTrustRegular.woff rename to apps/docs/static/fonts/VtexTrustRegular.woff diff --git a/docs/static/fonts/VtexTrustVariable.woff b/apps/docs/static/fonts/VtexTrustVariable.woff similarity index 100% rename from docs/static/fonts/VtexTrustVariable.woff rename to apps/docs/static/fonts/VtexTrustVariable.woff diff --git a/docs/static/img/faststore_thumbnail.png b/apps/docs/static/img/faststore_thumbnail.png similarity index 100% rename from docs/static/img/faststore_thumbnail.png rename to apps/docs/static/img/faststore_thumbnail.png diff --git a/docs/static/img/favicon.ico b/apps/docs/static/img/favicon.ico similarity index 100% rename from docs/static/img/favicon.ico rename to apps/docs/static/img/favicon.ico diff --git a/docs/static/img/logo.svg b/apps/docs/static/img/logo.svg similarity index 100% rename from docs/static/img/logo.svg rename to apps/docs/static/img/logo.svg diff --git a/docs/static/img/white-vtex.svg b/apps/docs/static/img/white-vtex.svg similarity index 100% rename from docs/static/img/white-vtex.svg rename to apps/docs/static/img/white-vtex.svg diff --git a/docs/static/scripts/openReplay.js b/apps/docs/static/scripts/openReplay.js similarity index 100% rename from docs/static/scripts/openReplay.js rename to apps/docs/static/scripts/openReplay.js diff --git a/docs/static/vercel.json b/apps/docs/static/vercel.json similarity index 100% rename from docs/static/vercel.json rename to apps/docs/static/vercel.json diff --git a/docs/tailwind.config.js b/apps/docs/tailwind.config.js similarity index 100% rename from docs/tailwind.config.js rename to apps/docs/tailwind.config.js From 6e2e27a0de38fdfff039b63c1364477db1f9f09c Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 11:47:34 -0300 Subject: [PATCH 06/12] feat: move theme to packages --- {themes => packages}/theme-b2c-tailwind/CHANGELOG.md | 0 {themes => packages}/theme-b2c-tailwind/README.md | 0 {themes => packages}/theme-b2c-tailwind/package.json | 0 {themes => packages}/theme-b2c-tailwind/postcss.config.js | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/badge.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/button.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/icon.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/incentive.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/index.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/input.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/label.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/link.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/overlay.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/popover.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/price.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/skeleton.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/slider.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/spinner.css | 0 {themes => packages}/theme-b2c-tailwind/src/atoms/textarea.css | 0 {themes => packages}/theme-b2c-tailwind/src/index.css | 0 .../theme-b2c-tailwind/src/molecules/accordion.css | 0 .../theme-b2c-tailwind/src/molecules/aggregate-rating.css | 0 {themes => packages}/theme-b2c-tailwind/src/molecules/alert.css | 0 {themes => packages}/theme-b2c-tailwind/src/molecules/banner.css | 0 .../theme-b2c-tailwind/src/molecules/breadcrumb.css | 0 {themes => packages}/theme-b2c-tailwind/src/molecules/bullets.css | 0 {themes => packages}/theme-b2c-tailwind/src/molecules/card.css | 0 .../theme-b2c-tailwind/src/molecules/carousel.css | 0 .../theme-b2c-tailwind/src/molecules/dropdown.css | 0 {themes => packages}/theme-b2c-tailwind/src/molecules/form.css | 0 .../theme-b2c-tailwind/src/molecules/icon-button.css | 0 {themes => packages}/theme-b2c-tailwind/src/molecules/index.css | 0 .../theme-b2c-tailwind/src/molecules/loading-button.css | 0 {themes => packages}/theme-b2c-tailwind/src/molecules/modal.css | 0 .../theme-b2c-tailwind/src/molecules/payment-methods.css | 0 .../theme-b2c-tailwind/src/molecules/price-range.css | 0 .../theme-b2c-tailwind/src/molecules/product-card.css | 0 .../theme-b2c-tailwind/src/molecules/quantity-selector.css | 0 .../theme-b2c-tailwind/src/molecules/radio-group.css | 0 .../theme-b2c-tailwind/src/molecules/search-input.css | 0 {themes => packages}/theme-b2c-tailwind/src/molecules/table.css | 0 {themes => packages}/theme-b2c-tailwind/src/organisms/index.css | 0 .../theme-b2c-tailwind/src/organisms/out-of-stock.css | 0 {themes => packages}/theme-b2c-tailwind/src/utils/base.css | 0 {themes => packages}/theme-b2c-tailwind/src/utils/components.css | 0 {themes => packages}/theme-b2c-tailwind/src/utils/utilities.css | 0 {themes => packages}/theme-b2c-tailwind/tailwind.config.js | 0 47 files changed, 0 insertions(+), 0 deletions(-) rename {themes => packages}/theme-b2c-tailwind/CHANGELOG.md (100%) rename {themes => packages}/theme-b2c-tailwind/README.md (100%) rename {themes => packages}/theme-b2c-tailwind/package.json (100%) rename {themes => packages}/theme-b2c-tailwind/postcss.config.js (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/badge.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/button.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/icon.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/incentive.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/index.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/input.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/label.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/link.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/overlay.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/popover.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/price.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/skeleton.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/slider.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/spinner.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/atoms/textarea.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/index.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/accordion.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/aggregate-rating.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/alert.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/banner.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/breadcrumb.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/bullets.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/card.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/carousel.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/dropdown.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/form.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/icon-button.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/index.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/loading-button.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/modal.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/payment-methods.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/price-range.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/product-card.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/quantity-selector.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/radio-group.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/search-input.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/molecules/table.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/organisms/index.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/organisms/out-of-stock.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/utils/base.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/utils/components.css (100%) rename {themes => packages}/theme-b2c-tailwind/src/utils/utilities.css (100%) rename {themes => packages}/theme-b2c-tailwind/tailwind.config.js (100%) diff --git a/themes/theme-b2c-tailwind/CHANGELOG.md b/packages/theme-b2c-tailwind/CHANGELOG.md similarity index 100% rename from themes/theme-b2c-tailwind/CHANGELOG.md rename to packages/theme-b2c-tailwind/CHANGELOG.md diff --git a/themes/theme-b2c-tailwind/README.md b/packages/theme-b2c-tailwind/README.md similarity index 100% rename from themes/theme-b2c-tailwind/README.md rename to packages/theme-b2c-tailwind/README.md diff --git a/themes/theme-b2c-tailwind/package.json b/packages/theme-b2c-tailwind/package.json similarity index 100% rename from themes/theme-b2c-tailwind/package.json rename to packages/theme-b2c-tailwind/package.json diff --git a/themes/theme-b2c-tailwind/postcss.config.js b/packages/theme-b2c-tailwind/postcss.config.js similarity index 100% rename from themes/theme-b2c-tailwind/postcss.config.js rename to packages/theme-b2c-tailwind/postcss.config.js diff --git a/themes/theme-b2c-tailwind/src/atoms/badge.css b/packages/theme-b2c-tailwind/src/atoms/badge.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/badge.css rename to packages/theme-b2c-tailwind/src/atoms/badge.css diff --git a/themes/theme-b2c-tailwind/src/atoms/button.css b/packages/theme-b2c-tailwind/src/atoms/button.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/button.css rename to packages/theme-b2c-tailwind/src/atoms/button.css diff --git a/themes/theme-b2c-tailwind/src/atoms/icon.css b/packages/theme-b2c-tailwind/src/atoms/icon.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/icon.css rename to packages/theme-b2c-tailwind/src/atoms/icon.css diff --git a/themes/theme-b2c-tailwind/src/atoms/incentive.css b/packages/theme-b2c-tailwind/src/atoms/incentive.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/incentive.css rename to packages/theme-b2c-tailwind/src/atoms/incentive.css diff --git a/themes/theme-b2c-tailwind/src/atoms/index.css b/packages/theme-b2c-tailwind/src/atoms/index.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/index.css rename to packages/theme-b2c-tailwind/src/atoms/index.css diff --git a/themes/theme-b2c-tailwind/src/atoms/input.css b/packages/theme-b2c-tailwind/src/atoms/input.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/input.css rename to packages/theme-b2c-tailwind/src/atoms/input.css diff --git a/themes/theme-b2c-tailwind/src/atoms/label.css b/packages/theme-b2c-tailwind/src/atoms/label.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/label.css rename to packages/theme-b2c-tailwind/src/atoms/label.css diff --git a/themes/theme-b2c-tailwind/src/atoms/link.css b/packages/theme-b2c-tailwind/src/atoms/link.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/link.css rename to packages/theme-b2c-tailwind/src/atoms/link.css diff --git a/themes/theme-b2c-tailwind/src/atoms/overlay.css b/packages/theme-b2c-tailwind/src/atoms/overlay.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/overlay.css rename to packages/theme-b2c-tailwind/src/atoms/overlay.css diff --git a/themes/theme-b2c-tailwind/src/atoms/popover.css b/packages/theme-b2c-tailwind/src/atoms/popover.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/popover.css rename to packages/theme-b2c-tailwind/src/atoms/popover.css diff --git a/themes/theme-b2c-tailwind/src/atoms/price.css b/packages/theme-b2c-tailwind/src/atoms/price.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/price.css rename to packages/theme-b2c-tailwind/src/atoms/price.css diff --git a/themes/theme-b2c-tailwind/src/atoms/skeleton.css b/packages/theme-b2c-tailwind/src/atoms/skeleton.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/skeleton.css rename to packages/theme-b2c-tailwind/src/atoms/skeleton.css diff --git a/themes/theme-b2c-tailwind/src/atoms/slider.css b/packages/theme-b2c-tailwind/src/atoms/slider.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/slider.css rename to packages/theme-b2c-tailwind/src/atoms/slider.css diff --git a/themes/theme-b2c-tailwind/src/atoms/spinner.css b/packages/theme-b2c-tailwind/src/atoms/spinner.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/spinner.css rename to packages/theme-b2c-tailwind/src/atoms/spinner.css diff --git a/themes/theme-b2c-tailwind/src/atoms/textarea.css b/packages/theme-b2c-tailwind/src/atoms/textarea.css similarity index 100% rename from themes/theme-b2c-tailwind/src/atoms/textarea.css rename to packages/theme-b2c-tailwind/src/atoms/textarea.css diff --git a/themes/theme-b2c-tailwind/src/index.css b/packages/theme-b2c-tailwind/src/index.css similarity index 100% rename from themes/theme-b2c-tailwind/src/index.css rename to packages/theme-b2c-tailwind/src/index.css diff --git a/themes/theme-b2c-tailwind/src/molecules/accordion.css b/packages/theme-b2c-tailwind/src/molecules/accordion.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/accordion.css rename to packages/theme-b2c-tailwind/src/molecules/accordion.css diff --git a/themes/theme-b2c-tailwind/src/molecules/aggregate-rating.css b/packages/theme-b2c-tailwind/src/molecules/aggregate-rating.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/aggregate-rating.css rename to packages/theme-b2c-tailwind/src/molecules/aggregate-rating.css diff --git a/themes/theme-b2c-tailwind/src/molecules/alert.css b/packages/theme-b2c-tailwind/src/molecules/alert.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/alert.css rename to packages/theme-b2c-tailwind/src/molecules/alert.css diff --git a/themes/theme-b2c-tailwind/src/molecules/banner.css b/packages/theme-b2c-tailwind/src/molecules/banner.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/banner.css rename to packages/theme-b2c-tailwind/src/molecules/banner.css diff --git a/themes/theme-b2c-tailwind/src/molecules/breadcrumb.css b/packages/theme-b2c-tailwind/src/molecules/breadcrumb.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/breadcrumb.css rename to packages/theme-b2c-tailwind/src/molecules/breadcrumb.css diff --git a/themes/theme-b2c-tailwind/src/molecules/bullets.css b/packages/theme-b2c-tailwind/src/molecules/bullets.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/bullets.css rename to packages/theme-b2c-tailwind/src/molecules/bullets.css diff --git a/themes/theme-b2c-tailwind/src/molecules/card.css b/packages/theme-b2c-tailwind/src/molecules/card.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/card.css rename to packages/theme-b2c-tailwind/src/molecules/card.css diff --git a/themes/theme-b2c-tailwind/src/molecules/carousel.css b/packages/theme-b2c-tailwind/src/molecules/carousel.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/carousel.css rename to packages/theme-b2c-tailwind/src/molecules/carousel.css diff --git a/themes/theme-b2c-tailwind/src/molecules/dropdown.css b/packages/theme-b2c-tailwind/src/molecules/dropdown.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/dropdown.css rename to packages/theme-b2c-tailwind/src/molecules/dropdown.css diff --git a/themes/theme-b2c-tailwind/src/molecules/form.css b/packages/theme-b2c-tailwind/src/molecules/form.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/form.css rename to packages/theme-b2c-tailwind/src/molecules/form.css diff --git a/themes/theme-b2c-tailwind/src/molecules/icon-button.css b/packages/theme-b2c-tailwind/src/molecules/icon-button.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/icon-button.css rename to packages/theme-b2c-tailwind/src/molecules/icon-button.css diff --git a/themes/theme-b2c-tailwind/src/molecules/index.css b/packages/theme-b2c-tailwind/src/molecules/index.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/index.css rename to packages/theme-b2c-tailwind/src/molecules/index.css diff --git a/themes/theme-b2c-tailwind/src/molecules/loading-button.css b/packages/theme-b2c-tailwind/src/molecules/loading-button.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/loading-button.css rename to packages/theme-b2c-tailwind/src/molecules/loading-button.css diff --git a/themes/theme-b2c-tailwind/src/molecules/modal.css b/packages/theme-b2c-tailwind/src/molecules/modal.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/modal.css rename to packages/theme-b2c-tailwind/src/molecules/modal.css diff --git a/themes/theme-b2c-tailwind/src/molecules/payment-methods.css b/packages/theme-b2c-tailwind/src/molecules/payment-methods.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/payment-methods.css rename to packages/theme-b2c-tailwind/src/molecules/payment-methods.css diff --git a/themes/theme-b2c-tailwind/src/molecules/price-range.css b/packages/theme-b2c-tailwind/src/molecules/price-range.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/price-range.css rename to packages/theme-b2c-tailwind/src/molecules/price-range.css diff --git a/themes/theme-b2c-tailwind/src/molecules/product-card.css b/packages/theme-b2c-tailwind/src/molecules/product-card.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/product-card.css rename to packages/theme-b2c-tailwind/src/molecules/product-card.css diff --git a/themes/theme-b2c-tailwind/src/molecules/quantity-selector.css b/packages/theme-b2c-tailwind/src/molecules/quantity-selector.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/quantity-selector.css rename to packages/theme-b2c-tailwind/src/molecules/quantity-selector.css diff --git a/themes/theme-b2c-tailwind/src/molecules/radio-group.css b/packages/theme-b2c-tailwind/src/molecules/radio-group.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/radio-group.css rename to packages/theme-b2c-tailwind/src/molecules/radio-group.css diff --git a/themes/theme-b2c-tailwind/src/molecules/search-input.css b/packages/theme-b2c-tailwind/src/molecules/search-input.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/search-input.css rename to packages/theme-b2c-tailwind/src/molecules/search-input.css diff --git a/themes/theme-b2c-tailwind/src/molecules/table.css b/packages/theme-b2c-tailwind/src/molecules/table.css similarity index 100% rename from themes/theme-b2c-tailwind/src/molecules/table.css rename to packages/theme-b2c-tailwind/src/molecules/table.css diff --git a/themes/theme-b2c-tailwind/src/organisms/index.css b/packages/theme-b2c-tailwind/src/organisms/index.css similarity index 100% rename from themes/theme-b2c-tailwind/src/organisms/index.css rename to packages/theme-b2c-tailwind/src/organisms/index.css diff --git a/themes/theme-b2c-tailwind/src/organisms/out-of-stock.css b/packages/theme-b2c-tailwind/src/organisms/out-of-stock.css similarity index 100% rename from themes/theme-b2c-tailwind/src/organisms/out-of-stock.css rename to packages/theme-b2c-tailwind/src/organisms/out-of-stock.css diff --git a/themes/theme-b2c-tailwind/src/utils/base.css b/packages/theme-b2c-tailwind/src/utils/base.css similarity index 100% rename from themes/theme-b2c-tailwind/src/utils/base.css rename to packages/theme-b2c-tailwind/src/utils/base.css diff --git a/themes/theme-b2c-tailwind/src/utils/components.css b/packages/theme-b2c-tailwind/src/utils/components.css similarity index 100% rename from themes/theme-b2c-tailwind/src/utils/components.css rename to packages/theme-b2c-tailwind/src/utils/components.css diff --git a/themes/theme-b2c-tailwind/src/utils/utilities.css b/packages/theme-b2c-tailwind/src/utils/utilities.css similarity index 100% rename from themes/theme-b2c-tailwind/src/utils/utilities.css rename to packages/theme-b2c-tailwind/src/utils/utilities.css diff --git a/themes/theme-b2c-tailwind/tailwind.config.js b/packages/theme-b2c-tailwind/tailwind.config.js similarity index 100% rename from themes/theme-b2c-tailwind/tailwind.config.js rename to packages/theme-b2c-tailwind/tailwind.config.js From f18d0aff113a4e6733523366376d488019aae8ba Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 11:59:16 -0300 Subject: [PATCH 07/12] chore: yarn lock --- yarn.lock | 747 +++++++++++++++++++++++++++++++++--------------------- 1 file changed, 464 insertions(+), 283 deletions(-) diff --git a/yarn.lock b/yarn.lock index 0904f0c4cf..a35e11fb49 100644 --- a/yarn.lock +++ b/yarn.lock @@ -408,7 +408,7 @@ semver "^6.3.0" source-map "^0.5.0" -"@babel/core@^7.17.5": +"@babel/core@^7.17.10": version "7.18.2" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.2.tgz#87b2fcd7cce9becaa7f5acebdc4f09f3dd19d876" integrity sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ== @@ -483,6 +483,15 @@ jsesc "^2.5.1" source-map "^0.5.0" +"@babel/generator@^7.17.10", "@babel/generator@^7.18.2": + version "7.18.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d" + integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw== + dependencies: + "@babel/types" "^7.18.2" + "@jridgewell/gen-mapping" "^0.3.0" + jsesc "^2.5.1" + "@babel/generator@^7.17.3": version "7.17.3" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.17.3.tgz#a2c30b0c4f89858cb87050c3ffdfd36bdf443200" @@ -492,15 +501,6 @@ jsesc "^2.5.1" source-map "^0.5.0" -"@babel/generator@^7.18.2": - version "7.18.2" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.2.tgz#33873d6f89b21efe2da63fe554460f3df1c5880d" - integrity sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw== - dependencies: - "@babel/types" "^7.18.2" - "@jridgewell/gen-mapping" "^0.3.0" - jsesc "^2.5.1" - "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13": version "7.12.13" resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab" @@ -1385,6 +1385,11 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.12.tgz#9474794f9a650cf5e2f892444227f98e28cdf8b6" integrity sha512-VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A== +"@babel/parser@^7.17.10": + version "7.18.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.4.tgz#6774231779dd700e0af29f6ad8d479582d7ce5ef" + integrity sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow== + "@babel/parser@^7.17.3": version "7.17.3" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.3.tgz#b07702b982990bf6fdc1da5049a23fece4c5c3d0" @@ -2787,7 +2792,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.17.12" -"@babel/plugin-transform-runtime@^7.17.0": +"@babel/plugin-transform-runtime@^7.17.10": version "7.18.2" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.2.tgz#04637de1e45ae8847ff14b9beead09c33d34374d" integrity sha512-mr1ufuRMfS52ttq+1G1PD8OJNqgcTFjq3hwn8SZ5n1x1pBhi0E36rYMdTK0TsKtApJ4lDEdfXJwtGobQMHSMPg== @@ -3209,7 +3214,7 @@ core-js-compat "^3.9.0" semver "^6.3.0" -"@babel/preset-env@^7.16.11": +"@babel/preset-env@^7.17.10": version "7.18.2" resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.2.tgz#f47d3000a098617926e674c945d95a28cb90977a" integrity sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q== @@ -3415,7 +3420,7 @@ core-js-pure "^3.0.0" regenerator-runtime "^0.13.4" -"@babel/runtime-corejs3@^7.17.2": +"@babel/runtime-corejs3@^7.17.9": version "7.18.3" resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.3.tgz#52f0241a31e0ec61a6187530af6227c2846bd60c" integrity sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q== @@ -3459,7 +3464,7 @@ dependencies: regenerator-runtime "^0.13.4" -"@babel/runtime@^7.17.2": +"@babel/runtime@^7.17.9": version "7.18.3" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4" integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug== @@ -3608,7 +3613,7 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/traverse@^7.17.3", "@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2": +"@babel/traverse@^7.17.10", "@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2": version "7.18.2" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.2.tgz#b77a52604b5cc836a9e1e08dca01cba67a12d2e8" integrity sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA== @@ -3806,46 +3811,45 @@ "@docsearch/css" "3.1.0" algoliasearch "^4.0.0" -"@docusaurus/core@2.0.0-beta.21", "@docusaurus/core@^2.0.0-beta.17": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-2.0.0-beta.21.tgz#50897317b22dbd94b1bf91bb30c2a0fddd15a806" - integrity sha512-qysDMVp1M5UozK3u/qOxsEZsHF7jeBvJDS+5ItMPYmNKvMbNKeYZGA0g6S7F9hRDwjIlEbvo7BaX0UMDcmTAWA== +"@docusaurus/core@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/core/-/core-2.0.0-beta.20.tgz#cf4aeeccecacb547a6fb42340c83bed0cccb57c0" + integrity sha512-a3UgZ4lIcIOoZd4j9INqVkWSXEDxR7EicJXt8eq2whg4N5hKGqLHoDSnWfrVSPQn4NoG5T7jhPypphSoysImfQ== dependencies: - "@babel/core" "^7.18.2" - "@babel/generator" "^7.18.2" + "@babel/core" "^7.17.10" + "@babel/generator" "^7.17.10" "@babel/plugin-syntax-dynamic-import" "^7.8.3" - "@babel/plugin-transform-runtime" "^7.18.2" - "@babel/preset-env" "^7.18.2" - "@babel/preset-react" "^7.17.12" - "@babel/preset-typescript" "^7.17.12" - "@babel/runtime" "^7.18.3" - "@babel/runtime-corejs3" "^7.18.3" - "@babel/traverse" "^7.18.2" - "@docusaurus/cssnano-preset" "2.0.0-beta.21" - "@docusaurus/logger" "2.0.0-beta.21" - "@docusaurus/mdx-loader" "2.0.0-beta.21" + "@babel/plugin-transform-runtime" "^7.17.10" + "@babel/preset-env" "^7.17.10" + "@babel/preset-react" "^7.16.7" + "@babel/preset-typescript" "^7.16.7" + "@babel/runtime" "^7.17.9" + "@babel/runtime-corejs3" "^7.17.9" + "@babel/traverse" "^7.17.10" + "@docusaurus/cssnano-preset" "2.0.0-beta.20" + "@docusaurus/logger" "2.0.0-beta.20" + "@docusaurus/mdx-loader" "2.0.0-beta.20" "@docusaurus/react-loadable" "5.5.2" - "@docusaurus/utils" "2.0.0-beta.21" - "@docusaurus/utils-common" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" + "@docusaurus/utils" "2.0.0-beta.20" + "@docusaurus/utils-common" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" "@slorber/static-site-generator-webpack-plugin" "^4.0.4" "@svgr/webpack" "^6.2.1" - autoprefixer "^10.4.7" + autoprefixer "^10.4.5" babel-loader "^8.2.5" - babel-plugin-dynamic-import-node "^2.3.3" + babel-plugin-dynamic-import-node "2.3.0" boxen "^6.2.1" - chalk "^4.1.2" chokidar "^3.5.3" clean-css "^5.3.0" cli-table3 "^0.6.2" combine-promises "^1.1.0" commander "^5.1.0" - copy-webpack-plugin "^11.0.0" - core-js "^3.22.7" + copy-webpack-plugin "^10.2.4" + core-js "^3.22.3" css-loader "^6.7.1" - css-minimizer-webpack-plugin "^4.0.0" - cssnano "^5.1.9" - del "^6.1.1" + css-minimizer-webpack-plugin "^3.4.1" + cssnano "^5.1.7" + del "^6.0.0" detect-port "^1.3.0" escape-html "^1.0.3" eta "^1.12.3" @@ -3858,16 +3862,16 @@ leven "^3.1.0" lodash "^4.17.21" mini-css-extract-plugin "^2.6.0" - postcss "^8.4.14" - postcss-loader "^7.0.0" + postcss "^8.4.13" + postcss-loader "^6.2.1" prompts "^2.4.2" react-dev-utils "^12.0.1" react-helmet-async "^1.3.0" react-loadable "npm:@docusaurus/react-loadable@5.5.2" react-loadable-ssr-addon-v5-slorber "^1.0.1" - react-router "^5.3.3" + react-router "^5.2.0" react-router-config "^5.1.1" - react-router-dom "^5.3.3" + react-router-dom "^5.2.0" remark-admonitions "^1.2.1" rtl-detect "^1.0.4" semver "^7.3.7" @@ -3878,21 +3882,20 @@ update-notifier "^5.1.0" url-loader "^4.1.1" wait-on "^6.0.1" - webpack "^5.72.1" + webpack "^5.72.0" webpack-bundle-analyzer "^4.5.0" - webpack-dev-server "^4.9.0" + webpack-dev-server "^4.8.1" webpack-merge "^5.8.0" webpackbar "^5.0.2" -"@docusaurus/cssnano-preset@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-2.0.0-beta.21.tgz#38113877a5857c3f9d493522085d20909dcec474" - integrity sha512-fhTZrg1vc6zYYZIIMXpe1TnEVGEjqscBo0s1uomSwKjjtMgu7wkzc1KKJYY7BndsSA+fVVkZ+OmL/kAsmK7xxw== +"@docusaurus/cssnano-preset@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/cssnano-preset/-/cssnano-preset-2.0.0-beta.20.tgz#c47722e347fd044f2372e924199eabf61733232f" + integrity sha512-7pfrYuahHl3YYS+gYhbb1YHsq5s5+hk+1KIU7QqNNn4YjrIqAHlOznCQ9XfQfspe9boZmaNFGMZQ1tawNOVLqQ== dependencies: - cssnano-preset-advanced "^5.3.5" - postcss "^8.4.14" + cssnano-preset-advanced "^5.3.3" + postcss "^8.4.13" postcss-sort-media-queries "^4.2.1" - tslib "^2.4.0" "@docusaurus/logger@2.0.0-beta.17": version "2.0.0-beta.17" @@ -3902,23 +3905,23 @@ chalk "^4.1.2" tslib "^2.3.1" -"@docusaurus/logger@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-2.0.0-beta.21.tgz#f6ab4133917965349ae03fd9111a940b24d4fd12" - integrity sha512-HTFp8FsSMrAj7Uxl5p72U+P7rjYU/LRRBazEoJbs9RaqoKEdtZuhv8MYPOCh46K9TekaoquRYqag2o23Qt4ggA== +"@docusaurus/logger@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/logger/-/logger-2.0.0-beta.20.tgz#bb49e8516e48082ab96bca11569a18541476d5a6" + integrity sha512-7Rt7c8m3ZM81o5jsm6ENgdbjq/hUICv8Om2i7grynI4GT2aQyFoHcusaNbRji4FZt0DaKT2CQxiAWP8BbD4xzQ== dependencies: chalk "^4.1.2" tslib "^2.4.0" -"@docusaurus/mdx-loader@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-2.0.0-beta.21.tgz#52af341e21f22be882d2155a7349bea10f5d77a3" - integrity sha512-AI+4obJnpOaBOAYV6df2ux5Y1YJCBS+MhXFf0yhED12sVLJi2vffZgdamYd/d/FwvWDw6QLs/VD2jebd7P50yQ== +"@docusaurus/mdx-loader@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/mdx-loader/-/mdx-loader-2.0.0-beta.20.tgz#7016e8ce7e4a11c9ea458e2236d3c93af71f393f" + integrity sha512-BBuf77sji3JxbCEW7Qsv3CXlgpm+iSLTQn6JUK7x8vJ1JYZ3KJbNgpo9TmxIIltpcvNQ/QOy6dvqrpSStaWmKQ== dependencies: - "@babel/parser" "^7.18.3" - "@babel/traverse" "^7.18.2" - "@docusaurus/logger" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" + "@babel/parser" "^7.17.10" + "@babel/traverse" "^7.17.10" + "@docusaurus/logger" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" "@mdx-js/mdx" "^1.6.22" escape-html "^1.0.3" file-loader "^6.2.0" @@ -3930,31 +3933,31 @@ tslib "^2.4.0" unist-util-visit "^2.0.3" url-loader "^4.1.1" - webpack "^5.72.1" + webpack "^5.72.0" -"@docusaurus/module-type-aliases@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-2.0.0-beta.21.tgz#345f1c1a99407775d1d3ffc1a90c2df93d50a9b8" - integrity sha512-gRkWICgQZiqSJgrwRKWjXm5gAB+9IcfYdUbCG0PRPP/G8sNs9zBIOY4uT4Z5ox2CWFEm44U3RTTxj7BiLVMBXw== +"@docusaurus/module-type-aliases@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/module-type-aliases/-/module-type-aliases-2.0.0-beta.20.tgz#669605a64b04226c391e0284c44743e137eb2595" + integrity sha512-lUIXLwQEOyYwcb3iCNibPUL6O9ijvYF5xQwehGeVraTEBts/Ch8ZwELFk+XbaGHKh52PiVxuWL2CP4Gdjy5QKw== dependencies: - "@docusaurus/types" "2.0.0-beta.21" + "@docusaurus/types" "2.0.0-beta.20" "@types/react" "*" "@types/react-router-config" "*" "@types/react-router-dom" "*" react-helmet-async "*" -"@docusaurus/plugin-content-blog@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.0.0-beta.21.tgz#86211deeea901ddcd77ca387778e121e93ee8d01" - integrity sha512-IP21yJViP3oBmgsWBU5LhrG1MZXV4mYCQSoCAboimESmy1Z11RCNP2tXaqizE3iTmXOwZZL+SNBk06ajKCEzWg== - dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/logger" "2.0.0-beta.21" - "@docusaurus/mdx-loader" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" - "@docusaurus/utils-common" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" - cheerio "^1.0.0-rc.11" +"@docusaurus/plugin-content-blog@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-blog/-/plugin-content-blog-2.0.0-beta.20.tgz#7c0d413ac8df9a422a0b3ddd90b77ec491bbda15" + integrity sha512-6aby36Gmny5h2oo/eEZ2iwVsIlBWbRnNNeqT0BYnJO5aj53iCU/ctFPpJVYcw0l2l8+8ITS70FyePIWEsaZ0jA== + dependencies: + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/logger" "2.0.0-beta.20" + "@docusaurus/mdx-loader" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" + "@docusaurus/utils-common" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" + cheerio "^1.0.0-rc.10" feed "^4.2.2" fs-extra "^10.1.0" lodash "^4.17.21" @@ -3963,18 +3966,18 @@ tslib "^2.4.0" unist-util-visit "^2.0.3" utility-types "^3.10.0" - webpack "^5.72.1" - -"@docusaurus/plugin-content-docs@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.0.0-beta.21.tgz#b3171fa9aed99e367b6eb7111187bd0e3dcf2949" - integrity sha512-aa4vrzJy4xRy81wNskyhE3wzRf3AgcESZ1nfKh8xgHUkT7fDTZ1UWlg50Jb3LBCQFFyQG2XQB9N6llskI/KUnw== - dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/logger" "2.0.0-beta.21" - "@docusaurus/mdx-loader" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" + webpack "^5.72.0" + +"@docusaurus/plugin-content-docs@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-docs/-/plugin-content-docs-2.0.0-beta.20.tgz#2a53b9fc355f45bf7c6917f19be7bfa0698b8b9e" + integrity sha512-XOgwUqXtr/DStpB3azdN6wgkKtQkOXOx1XetORzhHnjihrSMn6daxg+spmcJh1ki/mpT3n7yBbKJxVNo+VB38Q== + dependencies: + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/logger" "2.0.0-beta.20" + "@docusaurus/mdx-loader" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" combine-promises "^1.1.0" fs-extra "^10.1.0" import-fresh "^3.3.0" @@ -3983,81 +3986,80 @@ remark-admonitions "^1.2.1" tslib "^2.4.0" utility-types "^3.10.0" - webpack "^5.72.1" + webpack "^5.72.0" -"@docusaurus/plugin-content-pages@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.0.0-beta.21.tgz#df6b4c5c4cde8a0ea491a30002e84941ca7bf0cf" - integrity sha512-DmXOXjqNI+7X5hISzCvt54QIK6XBugu2MOxjxzuqI7q92Lk/EVdraEj5mthlH8IaEH/VlpWYJ1O9TzLqX5vH2g== +"@docusaurus/plugin-content-pages@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-content-pages/-/plugin-content-pages-2.0.0-beta.20.tgz#6a76c7fa049983d2d94d8c4d738802acf01611fe" + integrity sha512-ubY6DG4F0skFKjfNGCbfO34Qf+MZy6C05OtpIYsoA2YU8ADx0nRH7qPgdEkwR3ma860DbY612rleRT13ogSlhg== dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/mdx-loader" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/mdx-loader" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" fs-extra "^10.1.0" remark-admonitions "^1.2.1" tslib "^2.4.0" - webpack "^5.72.1" + webpack "^5.72.0" -"@docusaurus/plugin-debug@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-2.0.0-beta.21.tgz#dfa212fd90fe2f54439aacdc8c143e8ce96b0d27" - integrity sha512-P54J4q4ecsyWW0Jy4zbimSIHna999AfbxpXGmF1IjyHrjoA3PtuakV1Ai51XrGEAaIq9q6qMQkEhbUd3CffGAw== +"@docusaurus/plugin-debug@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-debug/-/plugin-debug-2.0.0-beta.20.tgz#7c026e81c45fd4f00801a785c928b9e8727a99de" + integrity sha512-acGZmpncPA1XDczpV1ji1ajBCRBY/H2lXN8alSjOB1vh0c/2Qz+KKD05p17lsUbhIyvsnZBa/BaOwtek91Lu7Q== dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" fs-extra "^10.1.0" react-json-view "^1.21.3" tslib "^2.4.0" -"@docusaurus/plugin-google-analytics@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.0.0-beta.21.tgz#5475c58fb23603badf41d84298569f6c46b4e6b2" - integrity sha512-+5MS0PeGaJRgPuNZlbd/WMdQSpOACaxEz7A81HAxm6kE+tIASTW3l8jgj1eWFy/PGPzaLnQrEjxI1McAfnYmQw== +"@docusaurus/plugin-google-analytics@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-2.0.0-beta.20.tgz#c1bdbc1239f987f9716fa30c2fd86962c190a765" + integrity sha512-4C5nY25j0R1lntFmpSEalhL7jYA7tWvk0VZObiIxGilLagT/f9gWPQtIjNBe4yzdQvkhiaXpa8xcMcJUAKRJyw== dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" tslib "^2.4.0" -"@docusaurus/plugin-google-gtag@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.0.0-beta.21.tgz#a4a101089994a7103c1cc7cddb15170427b185d6" - integrity sha512-4zxKZOnf0rfh6myXLG7a6YZfQcxYDMBsWqANEjCX77H5gPdK+GHZuDrxK6sjFvRBv4liYCrNjo7HJ4DpPoT0zA== +"@docusaurus/plugin-google-gtag@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-2.0.0-beta.20.tgz#7284bcfad9cb4e5d63605e95f6da73ca8ac8f053" + integrity sha512-EMZdiMTNg4NwE60xwjbetcqMDqAOazMTwQAQ4OuNAclv7oh8+VPCvqRF8s8AxCoI2Uqc7vh8yzNUuM307Ne9JA== dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" tslib "^2.4.0" -"@docusaurus/plugin-sitemap@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.0.0-beta.21.tgz#8bfa695eada2ec95c9376a884641237ffca5dd3d" - integrity sha512-/ynWbcXZXcYZ6sT2X6vAJbnfqcPxwdGEybd0rcRZi4gBHq6adMofYI25AqELmnbBDxt0If+vlAeUHFRG5ueP7Q== +"@docusaurus/plugin-sitemap@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/plugin-sitemap/-/plugin-sitemap-2.0.0-beta.20.tgz#08eada1260cafb273abea33c9c890ab667c7cbd3" + integrity sha512-Rf5a2vOBWjbe7PJJEBDeLZzDA7lsDi+16bqzKN8OKSXlcZLhxjmIpL5NrjANNbpGpL5vbl9z+iqvjbQmZ3QSmA== dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/logger" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" - "@docusaurus/utils-common" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" + "@docusaurus/utils-common" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" fs-extra "^10.1.0" sitemap "^7.1.1" tslib "^2.4.0" -"@docusaurus/preset-classic@^2.0.0-beta.17": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-2.0.0-beta.21.tgz#1362d8650ebed22633db411caaba80075f7c86ce" - integrity sha512-KvBnIUu7y69pNTJ9UhX6SdNlK6prR//J3L4rhN897tb8xx04xHHILlPXko2Il+C3Xzgh3OCgyvkoz9K6YlFTDw== - dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/plugin-content-blog" "2.0.0-beta.21" - "@docusaurus/plugin-content-docs" "2.0.0-beta.21" - "@docusaurus/plugin-content-pages" "2.0.0-beta.21" - "@docusaurus/plugin-debug" "2.0.0-beta.21" - "@docusaurus/plugin-google-analytics" "2.0.0-beta.21" - "@docusaurus/plugin-google-gtag" "2.0.0-beta.21" - "@docusaurus/plugin-sitemap" "2.0.0-beta.21" - "@docusaurus/theme-classic" "2.0.0-beta.21" - "@docusaurus/theme-common" "2.0.0-beta.21" - "@docusaurus/theme-search-algolia" "2.0.0-beta.21" +"@docusaurus/preset-classic@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/preset-classic/-/preset-classic-2.0.0-beta.20.tgz#19566be713ce0297834cd999392ea3605bc6f574" + integrity sha512-artUDjiYFIlGd2fxk0iqqcJ5xSCrgormOAoind1c0pn8TRXY1WSCQWYI6p4X24jjhSCzLv0s6Z9PMDyxZdivhg== + dependencies: + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/plugin-content-blog" "2.0.0-beta.20" + "@docusaurus/plugin-content-docs" "2.0.0-beta.20" + "@docusaurus/plugin-content-pages" "2.0.0-beta.20" + "@docusaurus/plugin-debug" "2.0.0-beta.20" + "@docusaurus/plugin-google-analytics" "2.0.0-beta.20" + "@docusaurus/plugin-google-gtag" "2.0.0-beta.20" + "@docusaurus/plugin-sitemap" "2.0.0-beta.20" + "@docusaurus/theme-classic" "2.0.0-beta.20" + "@docusaurus/theme-common" "2.0.0-beta.20" + "@docusaurus/theme-search-algolia" "2.0.0-beta.20" "@docusaurus/react-loadable@5.5.2", "react-loadable@npm:@docusaurus/react-loadable@5.5.2": version "5.5.2" @@ -4067,86 +4069,85 @@ "@types/react" "*" prop-types "^15.6.2" -"@docusaurus/remark-plugin-npm2yarn@^2.0.0-beta.17": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/remark-plugin-npm2yarn/-/remark-plugin-npm2yarn-2.0.0-beta.21.tgz#10eb88a2dab6193568eff76b6a83b79e313ef765" - integrity sha512-CqvmoFEj05NzaQBKxnsfI90aM8KHJZWyCzED/Qg5odUD9VtR9zNQJ1Nu/X1ctqCN7FBIxBYk2tz1Xb1+zCP8gg== +"@docusaurus/remark-plugin-npm2yarn@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/remark-plugin-npm2yarn/-/remark-plugin-npm2yarn-2.0.0-beta.20.tgz#4c0d6721b53efbcaf772c69f117115becc1122c3" + integrity sha512-kMys0puRJ6iNx5XFZyll6BnbglfmJVqWHgwQLR7OGBw190dYNi1xH85Mi7dOjogrZO5k/gYk6MOo2xvivUd4rQ== dependencies: npm-to-yarn "^1.0.1" tslib "^2.4.0" unist-util-visit "^2.0.3" -"@docusaurus/theme-classic@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-2.0.0-beta.21.tgz#6df5b9ea2d389dafb6f59badeabb3eda060b5017" - integrity sha512-Ge0WNdTefD0VDQfaIMRRWa8tWMG9+8/OlBRd5MK88/TZfqdBq7b/gnCSaalQlvZwwkj6notkKhHx72+MKwWUJA== - dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/plugin-content-blog" "2.0.0-beta.21" - "@docusaurus/plugin-content-docs" "2.0.0-beta.21" - "@docusaurus/plugin-content-pages" "2.0.0-beta.21" - "@docusaurus/theme-common" "2.0.0-beta.21" - "@docusaurus/theme-translations" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" - "@docusaurus/utils-common" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" +"@docusaurus/theme-classic@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-classic/-/theme-classic-2.0.0-beta.20.tgz#c4c7712c2b35c5654433228729f92ec73e6c598e" + integrity sha512-rs4U68x8Xk6rPsZC/7eaPxCKqzXX1S45FICKmq/IZuaDaQyQIijCvv2ssxYnUyVZUNayZfJK7ZtNu+A0kzYgSQ== + dependencies: + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/plugin-content-blog" "2.0.0-beta.20" + "@docusaurus/plugin-content-docs" "2.0.0-beta.20" + "@docusaurus/plugin-content-pages" "2.0.0-beta.20" + "@docusaurus/theme-common" "2.0.0-beta.20" + "@docusaurus/theme-translations" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" + "@docusaurus/utils-common" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" "@mdx-js/react" "^1.6.22" clsx "^1.1.1" copy-text-to-clipboard "^3.0.1" infima "0.2.0-alpha.39" lodash "^4.17.21" nprogress "^0.2.0" - postcss "^8.4.14" - prism-react-renderer "^1.3.3" + postcss "^8.4.13" + prism-react-renderer "^1.3.1" prismjs "^1.28.0" - react-router-dom "^5.3.3" + react-router-dom "^5.2.0" rtlcss "^3.5.0" - tslib "^2.4.0" -"@docusaurus/theme-common@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-2.0.0-beta.21.tgz#508478251982d01655ef505ccb2420db38623db8" - integrity sha512-fTKoTLRfjuFG6c3iwnVjIIOensxWMgdBKLfyE5iih3Lq7tQgkE7NyTGG9BKLrnTJ7cAD2UXdXM9xbB7tBf1qzg== +"@docusaurus/theme-common@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-common/-/theme-common-2.0.0-beta.20.tgz#4ec7d77ecd2ade9dad33b8689e3cd51b07e594b0" + integrity sha512-lmdGB3/GQM5z0GH0iHGRXUco4Wfqc6sR5eRKuW4j0sx3+UFVvtbVTTIGt0Cie4Dh6omnFxjPbNDlPDgWr/agVQ== dependencies: - "@docusaurus/module-type-aliases" "2.0.0-beta.21" - "@docusaurus/plugin-content-blog" "2.0.0-beta.21" - "@docusaurus/plugin-content-docs" "2.0.0-beta.21" - "@docusaurus/plugin-content-pages" "2.0.0-beta.21" + "@docusaurus/module-type-aliases" "2.0.0-beta.20" + "@docusaurus/plugin-content-blog" "2.0.0-beta.20" + "@docusaurus/plugin-content-docs" "2.0.0-beta.20" + "@docusaurus/plugin-content-pages" "2.0.0-beta.20" clsx "^1.1.1" parse-numeric-range "^1.3.0" - prism-react-renderer "^1.3.3" + prism-react-renderer "^1.3.1" tslib "^2.4.0" utility-types "^3.10.0" -"@docusaurus/theme-live-codeblock@^2.0.0-beta.17": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-live-codeblock/-/theme-live-codeblock-2.0.0-beta.21.tgz#5e5213a5da0a72e4ad3c742940a36168099a6847" - integrity sha512-aPzO3MVWq/mxkTlH0MW2nJ3/WOp18VE1VeBm1CjfqHgFpKQJgecIH5hY2Bdkqrm3V4Lf9bFj79w9Z0d4m7vy4Q== +"@docusaurus/theme-live-codeblock@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-live-codeblock/-/theme-live-codeblock-2.0.0-beta.20.tgz#e414a55d0c95045658aac84965510953969791eb" + integrity sha512-dAo7HVveO1GTHjvmz0wL+ZmHOU4sXqzYEqfTN4wZElaDALrv7zBSsHljXxCM29gBm4WsX44hOPgPCRUa6+HVAw== dependencies: - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/theme-common" "2.0.0-beta.21" - "@docusaurus/theme-translations" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/theme-common" "2.0.0-beta.20" + "@docusaurus/theme-translations" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" "@philpl/buble" "^0.19.7" clsx "^1.1.1" fs-extra "^10.1.0" react-live "2.2.3" tslib "^2.4.0" -"@docusaurus/theme-search-algolia@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.0.0-beta.21.tgz#2891f11372e2542e4e1426c3100b72c2d30d4d68" - integrity sha512-T1jKT8MVSSfnztSqeebUOpWHPoHKtwDXtKYE0xC99JWoZ+mMfv8AFhVSoSddn54jLJjV36mxg841eHQIySMCpQ== - dependencies: - "@docsearch/react" "^3.1.0" - "@docusaurus/core" "2.0.0-beta.21" - "@docusaurus/logger" "2.0.0-beta.21" - "@docusaurus/plugin-content-docs" "2.0.0-beta.21" - "@docusaurus/theme-common" "2.0.0-beta.21" - "@docusaurus/theme-translations" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" - "@docusaurus/utils-validation" "2.0.0-beta.21" - algoliasearch "^4.13.1" +"@docusaurus/theme-search-algolia@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-search-algolia/-/theme-search-algolia-2.0.0-beta.20.tgz#14f2ea376a87d7cfa4840d8c917d1ec62d3a07f7" + integrity sha512-9XAyiXXHgyhDmKXg9RUtnC4WBkYAZUqKT9Ntuk0OaOb4mBwiYUGL74tyP0LLL6T+oa9uEdXiUMlIL1onU8xhvA== + dependencies: + "@docsearch/react" "^3.0.0" + "@docusaurus/core" "2.0.0-beta.20" + "@docusaurus/logger" "2.0.0-beta.20" + "@docusaurus/plugin-content-docs" "2.0.0-beta.20" + "@docusaurus/theme-common" "2.0.0-beta.20" + "@docusaurus/theme-translations" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" + "@docusaurus/utils-validation" "2.0.0-beta.20" + algoliasearch "^4.13.0" algoliasearch-helper "^3.8.2" clsx "^1.1.1" eta "^1.12.3" @@ -4155,25 +4156,25 @@ tslib "^2.4.0" utility-types "^3.10.0" -"@docusaurus/theme-translations@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-2.0.0-beta.21.tgz#5da60ffc58de256b96316c5e0fe2733c1e83f22c" - integrity sha512-dLVT9OIIBs6MpzMb1bAy+C0DPJK3e3DNctG+ES0EP45gzEqQxzs4IsghpT+QDaOsuhNnAlosgJpFWX3rqxF9xA== +"@docusaurus/theme-translations@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/theme-translations/-/theme-translations-2.0.0-beta.20.tgz#dcc7efb43ff110c19736764c287f6c5128a5dbba" + integrity sha512-O7J/4dHcg7Yr+r3ylgtqmtMEz6d5ScpUxBg8nsNTWOCRoGEXNZVmXSd5l6v72KCyxPZpllPrgjmqkL+I19qWiw== dependencies: fs-extra "^10.1.0" tslib "^2.4.0" -"@docusaurus/types@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-2.0.0-beta.21.tgz#36659c6c012663040dcd4cbc97b5d7a555dae229" - integrity sha512-/GH6Npmq81eQfMC/ikS00QSv9jNyO1RXEpNSx5GLA3sFX8Iib26g2YI2zqNplM8nyxzZ2jVBuvUoeODTIbTchQ== +"@docusaurus/types@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/types/-/types-2.0.0-beta.20.tgz#069d40cc225141d5c9a85605a1c61a460814bf5d" + integrity sha512-d4ZIpcrzGsUUcZJL3iz8/iSaewobPPiYfn2Lmmv7GTT5ZPtPkOAtR5mE6+LAf/KpjjgqrC7mpwDKADnOL/ic4Q== dependencies: commander "^5.1.0" history "^4.9.0" joi "^17.6.0" react-helmet-async "^1.3.0" utility-types "^3.10.0" - webpack "^5.72.1" + webpack "^5.72.0" webpack-merge "^5.8.0" "@docusaurus/types@^2.0.0-beta.17": @@ -4188,30 +4189,30 @@ webpack "^5.69.1" webpack-merge "^5.8.0" -"@docusaurus/utils-common@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-2.0.0-beta.21.tgz#81e86ed04ad62b75e9ba6a5e7689dc23d5f36a0a" - integrity sha512-5w+6KQuJb6pUR2M8xyVuTMvO5NFQm/p8TOTDFTx60wt3p0P1rRX00v6FYsD4PK6pgmuoKjt2+Ls8dtSXc4qFpQ== +"@docusaurus/utils-common@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/utils-common/-/utils-common-2.0.0-beta.20.tgz#adb914c331d711a3c0ef2ba3f64139acdf4cd781" + integrity sha512-HabHh23vOQn6ygs0PjuCSF/oZaNsYTFsxB2R6EwHNyw01nWgBC3QAcGVmyIWQhlb9p8V3byKgbzVS68hZX5t9A== dependencies: tslib "^2.4.0" -"@docusaurus/utils-validation@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-2.0.0-beta.21.tgz#10169661be5f8a233f4c12202ee5802ccb77400f" - integrity sha512-6NG1FHTRjv1MFzqW//292z7uCs77vntpWEbZBHk3n67aB1HoMn5SOwjLPtRDjbCgn6HCHFmdiJr6euCbjhYolg== +"@docusaurus/utils-validation@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/utils-validation/-/utils-validation-2.0.0-beta.20.tgz#ebf475a4388066bd450877fe920f405c53ff5ad2" + integrity sha512-7MxMoaF4VNAt5vUwvITa6nbkw1tb4WE6hp1VlfIoLCY4D7Wk5cMf1ZFhppCP1UzmPwvFb9zw8fPuvDfB3Tb5nQ== dependencies: - "@docusaurus/logger" "2.0.0-beta.21" - "@docusaurus/utils" "2.0.0-beta.21" + "@docusaurus/logger" "2.0.0-beta.20" + "@docusaurus/utils" "2.0.0-beta.20" joi "^17.6.0" js-yaml "^4.1.0" tslib "^2.4.0" -"@docusaurus/utils@2.0.0-beta.21": - version "2.0.0-beta.21" - resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-2.0.0-beta.21.tgz#8fc4499c4cfedd29805025d930f8008cad255044" - integrity sha512-M/BrVCDmmUPZLxtiStBgzpQ4I5hqkggcpnQmEN+LbvbohjbtVnnnZQ0vptIziv1w8jry/woY+ePsyOO7O/yeLQ== +"@docusaurus/utils@2.0.0-beta.20": + version "2.0.0-beta.20" + resolved "https://registry.yarnpkg.com/@docusaurus/utils/-/utils-2.0.0-beta.20.tgz#d5a9816a328b2ca5e4e1a3fbf267e3674abacd48" + integrity sha512-eUQquakhrbnvhsmx8jRPLgoyjyzMuOhmQC99m7rotar7XOzROpgEpm7+xVaquG5Ha47WkybE3djHJhKNih7GZQ== dependencies: - "@docusaurus/logger" "2.0.0-beta.21" + "@docusaurus/logger" "2.0.0-beta.20" "@svgr/webpack" "^6.2.1" file-loader "^6.2.0" fs-extra "^10.1.0" @@ -4225,7 +4226,7 @@ shelljs "^0.8.5" tslib "^2.4.0" url-loader "^4.1.1" - webpack "^5.72.1" + webpack "^5.72.0" "@docusaurus/utils@^2.0.0-beta.17": version "2.0.0-beta.17" @@ -6394,7 +6395,7 @@ webpack "^4.44.1" webpack-bundle-analyzer "^4.4.2" -"@slorber/static-site-generator-webpack-plugin@^4.0.1": +"@slorber/static-site-generator-webpack-plugin@^4.0.4": version "4.0.4" resolved "https://registry.yarnpkg.com/@slorber/static-site-generator-webpack-plugin/-/static-site-generator-webpack-plugin-4.0.4.tgz#2bf4a2545e027830d2aa5eb950437c26a289b0f1" integrity sha512-FvMavoWEIePps6/JwGCOLYKCRhuwIHhMtmbKpBFgzNkxwpa/569LfTkrbRk1m1I3n+ezJK4on9E1A6cjuZmD9g== @@ -9063,7 +9064,7 @@ ajv@^8.0.1: require-from-string "^2.0.2" uri-js "^4.2.2" -algoliasearch-helper@^3.7.0: +algoliasearch-helper@^3.8.2: version "3.8.2" resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.8.2.tgz#35726dc6d211f49dbab0bf6d37b4658165539523" integrity sha512-AXxiF0zT9oYwl8ZBgU/eRXvfYhz7cBA5YrLPlw9inZHdaYF0QEya/f1Zp1mPYMXc1v6VkHwBq4pk6/vayBLICg== @@ -9090,7 +9091,7 @@ algoliasearch@^4.0.0: "@algolia/requester-node-http" "4.11.0" "@algolia/transporter" "4.11.0" -algoliasearch@^4.12.1: +algoliasearch@^4.13.0: version "4.13.1" resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.13.1.tgz#54195c41c9e4bd13ed64982248cf49d4576974fe" integrity sha512-dtHUSE0caWTCE7liE1xaL+19AFf6kWEcyn76uhcitWpntqvicFHXKFoZe5JJcv9whQOTRM6+B8qJz6sFj+rDJA== @@ -9400,6 +9401,11 @@ array-union@^2.1.0: resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== +array-union@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-3.0.1.tgz#da52630d327f8b88cfbfb57728e2af5cd9b6b975" + integrity sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw== + array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" @@ -9593,7 +9599,7 @@ autoprefixer@^10.4.2: picocolors "^1.0.0" postcss-value-parser "^4.2.0" -autoprefixer@^10.4.7: +autoprefixer@^10.4.5: version "10.4.7" resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.7.tgz#1db8d195f41a52ca5069b7593be167618edbbedf" integrity sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA== @@ -9711,7 +9717,7 @@ babel-loader@^8.2.2: make-dir "^3.1.0" schema-utils "^2.6.5" -babel-loader@^8.2.3: +babel-loader@^8.2.5: version "8.2.5" resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.5.tgz#d45f585e654d5a5d90f5350a779d7647c5ed512e" integrity sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ== @@ -9744,6 +9750,13 @@ babel-plugin-dev-expression@^0.2.1: resolved "https://registry.yarnpkg.com/babel-plugin-dev-expression/-/babel-plugin-dev-expression-0.2.2.tgz#c18de18a06150f9480edd151acbb01d2e65e999b" integrity sha512-y32lfBif+c2FIh5dwGfcc/IfX5aw/Bru7Du7W2n17sJE/GJGAsmIk5DPW/8JOoeKpXW5evJfJOvRq5xkiS6vng== +babel-plugin-dynamic-import-node@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" + integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== + dependencies: + object.assign "^4.1.0" + babel-plugin-dynamic-import-node@^2.3.3: version "2.3.3" resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" @@ -10747,7 +10760,7 @@ caniuse-lite@^1.0.30001313: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001314.tgz#65c7f9fb7e4594fca0a333bec1d8939662377596" integrity sha512-0zaSO+TnCHtHJIbpLroX7nsD+vYuOVjl3uzFbJO1wMVbuveJA0RK2WcQA9ZUIOiO0/ArMiMgHJLxfEZhQiC0kw== -caniuse-lite@^1.0.30001332: +caniuse-lite@^1.0.30001332, caniuse-lite@^1.0.30001335: version "1.0.30001344" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001344.tgz#8a1e7fdc4db9c2ec79a05e9fd68eb93a761888bb" integrity sha512-0ZFjnlCaXNOAYcV7i+TtdKBp0L/3XEU2MF/x6Du1lrh+SRX4IfzIVL4HNJg5pB2PmFb8rszIGyOvsZnqqRoc2g== @@ -11086,7 +11099,7 @@ clean-css@^5.2.2: dependencies: source-map "~0.6.0" -clean-css@^5.2.4: +clean-css@^5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.0.tgz#ad3d8238d5f3549e83d5f87205189494bc7cbb59" integrity sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ== @@ -11147,7 +11160,7 @@ cli-table3@0.6.0: optionalDependencies: colors "^1.1.2" -cli-table3@^0.6.1: +cli-table3@^0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.2.tgz#aaf5df9d8b5bf12634dc8b3040806a0c07120d2a" integrity sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw== @@ -11765,14 +11778,14 @@ copy-to-clipboard@^3.3.1: dependencies: toggle-selection "^1.0.6" -copy-webpack-plugin@^11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz#96d4dbdb5f73d02dd72d0528d1958721ab72e04a" - integrity sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ== +copy-webpack-plugin@^10.2.4: + version "10.2.4" + resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz#6c854be3fdaae22025da34b9112ccf81c63308fe" + integrity sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg== dependencies: - fast-glob "^3.2.11" + fast-glob "^3.2.7" glob-parent "^6.0.1" - globby "^13.1.1" + globby "^12.0.2" normalize-path "^3.0.0" schema-utils "^4.0.0" serialize-javascript "^6.0.0" @@ -11865,7 +11878,7 @@ core-js@^3.0.4, core-js@^3.6.5, core-js@^3.8.2: resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.11.1.tgz#f920392bf8ed63a0ec8e4e729857bfa3d121c525" integrity sha512-k93Isqg7e4txZWMGNYwevZL9MiogLk8pd1PtwrmFmi8IBq4GXqUaVW/a33Llt6amSI36uSjd0GWwc9pTT9ALlQ== -core-js@^3.21.1: +core-js@^3.22.3: version "3.22.7" resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.22.7.tgz#8d6c37f630f6139b8732d10f2c114c3f1d00024f" integrity sha512-Jt8SReuDKVNZnZEzyEQT5eK6T2RRCXkfTq7Lo09kpm+fHjgGewSbNjV+Wt4yZMhPDdzz2x1ulI5z/w4nxpBseg== @@ -12163,7 +12176,7 @@ css-loader@^5.2.5: schema-utils "^3.0.0" semver "^7.3.5" -css-loader@^6.6.0: +css-loader@^6.7.1: version "6.7.1" resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-6.7.1.tgz#e98106f154f6e1baf3fc3bc455cb9981c1d5fd2e" integrity sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw== @@ -12177,14 +12190,14 @@ css-loader@^6.6.0: postcss-value-parser "^4.2.0" semver "^7.3.5" -css-minimizer-webpack-plugin@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-4.0.0.tgz#e11800388c19c2b7442c39cc78ac8ae3675c9605" - integrity sha512-7ZXXRzRHvofv3Uac5Y+RkWRNo0ZMlcg8e9/OtrqUYmwDWJo+qs67GvdeFrXLsFb7czKNwjQhPkM0avlIYl+1nA== +css-minimizer-webpack-plugin@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz#ab78f781ced9181992fe7b6e4f3422e76429878f" + integrity sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q== dependencies: - cssnano "^5.1.8" - jest-worker "^27.5.1" - postcss "^8.4.13" + cssnano "^5.0.6" + jest-worker "^27.0.2" + postcss "^8.3.5" schema-utils "^4.0.0" serialize-javascript "^6.0.0" source-map "^0.6.1" @@ -12339,13 +12352,13 @@ cssesc@^3.0.0: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssnano-preset-advanced@^5.1.12: - version "5.3.5" - resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.5.tgz#b01dda0f76ff762b58bccd17c59701176b9be131" - integrity sha512-KgrfLQaTBB4bov/Xsi0+y5iGM5gg5QChP1PTMJ9t7U6p9geKHYcPS9AC6gmfwurm0GKxhTRafDx55E8FKHX8eg== +cssnano-preset-advanced@^5.3.3: + version "5.3.6" + resolved "https://registry.yarnpkg.com/cssnano-preset-advanced/-/cssnano-preset-advanced-5.3.6.tgz#6c995a86cecc9e6472bf6d120e5517231ed527dc" + integrity sha512-OZHsytu16eStRVrIY3wmPQqhJMaI0+O3raU4JHoKV3uuQYEeQek/FJVUIvYXD55hWR6OjCMyKYNRDw+k3/xgUw== dependencies: autoprefixer "^10.3.7" - cssnano-preset-default "^5.2.9" + cssnano-preset-default "^5.2.10" postcss-discard-unused "^5.1.0" postcss-merge-idents "^5.1.1" postcss-reduce-idents "^5.2.0" @@ -12422,6 +12435,41 @@ cssnano-preset-default@^5.1.2: postcss-svgo "^5.0.2" postcss-unique-selectors "^5.0.1" +cssnano-preset-default@^5.2.10: + version "5.2.10" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.10.tgz#6dfffe6cc3b13f3bb356a42c49a334a98700ef45" + integrity sha512-H8TJRhTjBKVOPltp9vr9El9I+IfYsOMhmXdK0LwdvwJcxYX9oWkY7ctacWusgPWAgQq1vt/WO8v+uqpfLnM7QA== + dependencies: + css-declaration-sorter "^6.2.2" + cssnano-utils "^3.1.0" + postcss-calc "^8.2.3" + postcss-colormin "^5.3.0" + postcss-convert-values "^5.1.2" + postcss-discard-comments "^5.1.2" + postcss-discard-duplicates "^5.1.0" + postcss-discard-empty "^5.1.1" + postcss-discard-overridden "^5.1.0" + postcss-merge-longhand "^5.1.5" + postcss-merge-rules "^5.1.2" + postcss-minify-font-values "^5.1.0" + postcss-minify-gradients "^5.1.1" + postcss-minify-params "^5.1.3" + postcss-minify-selectors "^5.2.1" + postcss-normalize-charset "^5.1.0" + postcss-normalize-display-values "^5.1.0" + postcss-normalize-positions "^5.1.0" + postcss-normalize-repeat-style "^5.1.0" + postcss-normalize-string "^5.1.0" + postcss-normalize-timing-functions "^5.1.0" + postcss-normalize-unicode "^5.1.0" + postcss-normalize-url "^5.1.0" + postcss-normalize-whitespace "^5.1.1" + postcss-ordered-values "^5.1.1" + postcss-reduce-initial "^5.1.0" + postcss-reduce-transforms "^5.1.0" + postcss-svgo "^5.1.0" + postcss-unique-selectors "^5.1.1" + cssnano-preset-default@^5.2.9: version "5.2.9" resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.9.tgz#63f6aa9a9f0b21d9a526371dd308253b656a9784" @@ -12499,7 +12547,16 @@ cssnano@^4.1.10: is-resolvable "^1.0.0" postcss "^7.0.0" -cssnano@^5.0.17, cssnano@^5.0.6: +cssnano@^5.0.2: + version "5.0.5" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.5.tgz#6b8787123bf4cd5a220a2fa6cb5bc036b0854b48" + integrity sha512-L2VtPXnq6rmcMC9vkBOP131sZu3ccRQI27ejKZdmQiPDpUlFkUbpXHgKN+cibeO1U4PItxVZp1zTIn5dHsXoyg== + dependencies: + cosmiconfig "^7.0.0" + cssnano-preset-default "^5.1.2" + is-resolvable "^1.1.0" + +cssnano@^5.0.6: version "5.1.9" resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.9.tgz#e6cb286c4907cbd55678eb315837a21008be21be" integrity sha512-hctQHIIeDrfMjq0bQhoVmRVaSeNNOGxkvkKVOcKpJzLr09wlRrZWH4GaYudp0aszpW8wJeaO5/yBmID9n7DNCg== @@ -12508,14 +12565,14 @@ cssnano@^5.0.17, cssnano@^5.0.6: lilconfig "^2.0.3" yaml "^1.10.2" -cssnano@^5.0.2: - version "5.0.5" - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.0.5.tgz#6b8787123bf4cd5a220a2fa6cb5bc036b0854b48" - integrity sha512-L2VtPXnq6rmcMC9vkBOP131sZu3ccRQI27ejKZdmQiPDpUlFkUbpXHgKN+cibeO1U4PItxVZp1zTIn5dHsXoyg== +cssnano@^5.1.7: + version "5.1.10" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.10.tgz#fc6ddd9a4d7d238f320634326ed814cf0abf6e1c" + integrity sha512-ACpnRgDg4m6CZD/+8SgnLcGCgy6DDGdkMbOawwdvVxNietTNLe/MtWcenp6qT0PRt5wzhGl6/cjMWCdhKXC9QA== dependencies: - cosmiconfig "^7.0.0" - cssnano-preset-default "^5.1.2" - is-resolvable "^1.1.0" + cssnano-preset-default "^5.2.10" + lilconfig "^2.0.3" + yaml "^1.10.2" csso@^4.0.2, csso@^4.2.0: version "4.2.0" @@ -13032,7 +13089,7 @@ docusaurus-plugin-redoc@^0.9.0: joi "^17.5.0" yaml "^1.10.2" -"docusaurus-tailwindcss-loader@file:docs/plugins/docusaurus-tailwindcss-loader": +"docusaurus-tailwindcss-loader@file:apps/docs/plugins/docusaurus-tailwindcss-loader": version "0.0.0" docusaurus-theme-redoc@^0.9.0: @@ -15515,14 +15572,15 @@ globby@^11.1.0: merge2 "^1.4.1" slash "^3.0.0" -globby@^13.1.1: - version "13.1.1" - resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.1.tgz#7c44a93869b0b7612e38f22ed532bfe37b25ea6f" - integrity sha512-XMzoDZbGZ37tufiv7g0N4F/zp3zkwdFtVbV3EHsVl1KQr4RPLfNoT068/97RPshz2J5xYNEjLKKBKaGHifBd3Q== +globby@^12.0.2: + version "12.2.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-12.2.0.tgz#2ab8046b4fba4ff6eede835b29f678f90e3d3c22" + integrity sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA== dependencies: + array-union "^3.0.1" dir-glob "^3.0.1" - fast-glob "^3.2.11" - ignore "^5.2.0" + fast-glob "^3.2.7" + ignore "^5.1.9" merge2 "^1.4.1" slash "^4.0.0" @@ -16384,7 +16442,7 @@ ignore@^5.1.1, ignore@^5.1.4, ignore@^5.1.8: resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== -ignore@^5.2.0: +ignore@^5.1.9, ignore@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== @@ -19325,7 +19383,7 @@ mini-create-react-context@^0.4.0: "@babel/runtime" "^7.12.1" tiny-warning "^1.0.3" -mini-css-extract-plugin@^2.5.3: +mini-css-extract-plugin@^2.6.0: version "2.6.0" resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.0.tgz#578aebc7fc14d32c0ad304c2c34f08af44673f5e" integrity sha512-ndG8nxCEnAemsg4FSgS+yNyHKgkTB4nPKqCOgh65j3/30qqC5RaSQQXMm++Y6sb6E1zRSxPkztj9fqxhS1Eo6w== @@ -21193,6 +21251,14 @@ postcss-convert-values@^5.1.1: browserslist "^4.20.3" postcss-value-parser "^4.2.0" +postcss-convert-values@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz#31586df4e184c2e8890e8b34a0b9355313f503ab" + integrity sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g== + dependencies: + browserslist "^4.20.3" + postcss-value-parser "^4.2.0" + postcss-custom-media@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-8.0.0.tgz#1be6aff8be7dc9bf1fe014bde3b71b92bb4552f1" @@ -21236,6 +21302,11 @@ postcss-discard-comments@^5.1.1: resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.1.tgz#e90019e1a0e5b99de05f63516ce640bd0df3d369" integrity sha512-5JscyFmvkUxz/5/+TB3QTTT9Gi9jHkcn8dcmmuN68JQcv3aQg4y88yEHHhwFB52l/NkaJ43O0dbksGMAo49nfQ== +postcss-discard-comments@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" + integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== + postcss-discard-duplicates@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" @@ -21404,14 +21475,14 @@ postcss-loader@^4.2.0: schema-utils "^3.0.0" semver "^7.3.4" -postcss-loader@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-7.0.0.tgz#367d10eb1c5f1d93700e6b399683a6dc7c3af396" - integrity sha512-IDyttebFzTSY6DI24KuHUcBjbAev1i+RyICoPEWcAstZsj03r533uMXtDn506l6/wlsRYiS5XBdx7TpccCsyUg== +postcss-loader@^6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-6.2.1.tgz#0895f7346b1702103d30fdc66e4d494a93c008ef" + integrity sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q== dependencies: cosmiconfig "^7.0.0" klona "^2.0.5" - semver "^7.3.7" + semver "^7.3.5" postcss-logical@^5.0.4: version "5.0.4" @@ -21491,6 +21562,16 @@ postcss-merge-rules@^5.1.1: cssnano-utils "^3.1.0" postcss-selector-parser "^6.0.5" +postcss-merge-rules@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz#7049a14d4211045412116d79b751def4484473a5" + integrity sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ== + dependencies: + browserslist "^4.16.6" + caniuse-api "^3.0.0" + cssnano-utils "^3.1.0" + postcss-selector-parser "^6.0.5" + postcss-minify-font-values@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" @@ -21598,6 +21679,13 @@ postcss-minify-selectors@^5.2.0: dependencies: postcss-selector-parser "^6.0.5" +postcss-minify-selectors@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" + integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== + dependencies: + postcss-selector-parser "^6.0.5" + postcss-modules-extract-imports@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" @@ -22242,6 +22330,15 @@ postcss@^8.3.11: picocolors "^1.0.0" source-map-js "^1.0.1" +postcss@^8.4.13: + version "8.4.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== + dependencies: + nanoid "^3.3.4" + picocolors "^1.0.0" + source-map-js "^1.0.2" + postcss@^8.4.6, postcss@^8.4.7, postcss@^8.4.8: version "8.4.8" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.8.tgz#dad963a76e82c081a0657d3a2f3602ce10c2e032" @@ -22371,7 +22468,7 @@ prismjs@^1.24.1: resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057" integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== -prismjs@^1.27.0: +prismjs@^1.28.0: version "1.28.0" resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.28.0.tgz#0d8f561fa0f7cf6ebca901747828b149147044b6" integrity sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw== @@ -22817,7 +22914,7 @@ react-dev-utils@^11.0.4: strip-ansi "6.0.0" text-table "0.2.0" -react-dev-utils@^12.0.0: +react-dev-utils@^12.0.1: version "12.0.1" resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-12.0.1.tgz#ba92edb4a1f379bd46ccd6bcd4e7bc398df33e73" integrity sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ== @@ -22960,7 +23057,7 @@ react-helmet-async@^1.0.7: react-fast-compare "^3.2.0" shallowequal "^1.1.0" -react-helmet-async@^1.2.3: +react-helmet-async@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.3.0.tgz#7bd5bf8c5c69ea9f02f6083f14ce33ef545c222e" integrity sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg== @@ -26430,6 +26527,90 @@ tunnel-agent@^0.6.0: dependencies: safe-buffer "^5.0.1" +turbo-darwin-64@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-darwin-64/-/turbo-darwin-64-1.2.14.tgz#902ce6ec4953b353afa6d5b39853837bf3571a80" + integrity sha512-Fdx212fvhcbF/KKnSoenTtNLZ5Wzl+DDBmwHoHXmG2DX/1qFk4HD1/D6waCySZU1Hu1bQToIimEyrWgwAkCVbQ== + +turbo-darwin-arm64@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-darwin-arm64/-/turbo-darwin-arm64-1.2.14.tgz#66ba462f432efd8ae25ca9e7d42f7a327254304f" + integrity sha512-B9LRgZKW1D8EwMLNhW6n8pADiZZ+M7Qgb/Pv9DAJM+/MW5ozRn/PBA4Y+teyx2dGuaMOzvX9QzRhT1jn5U71TA== + +turbo-freebsd-64@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-freebsd-64/-/turbo-freebsd-64-1.2.14.tgz#81bbf2829caef9ec8335cc68534649ad1fc75ad1" + integrity sha512-kmDgDZXS3vdDremUPPkaY4bAtEyqqUnhcH3tVGsHZJ6OF1eCoy+oiXWa9Aw7Wm2B0Ph5TyMooOjChgE44q4cMA== + +turbo-freebsd-arm64@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-freebsd-arm64/-/turbo-freebsd-arm64-1.2.14.tgz#5b4d24e428ba69b45ec46ea04757b7f021857331" + integrity sha512-ZDbxkIXkBQJGJOrwihmfbza+jnfObMspbThEL0bp/MtMJS8QO4NELyjHDM0LgTfecduXtS1rJMSe7pZjiEK/Vg== + +turbo-linux-32@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-linux-32/-/turbo-linux-32-1.2.14.tgz#18540309ed25fb5eec1b125e4310e14fd82b918c" + integrity sha512-fBGbevGtvbGV5bK+w6O8vve5C07TbdfIk5j59odTZo782F4Xs7fgY57mRQtNOq71YUW9Hs7FGrLUI1iRsVODAA== + +turbo-linux-64@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-linux-64/-/turbo-linux-64-1.2.14.tgz#d39a688b7ea4bde59a2de7c6670c3859a0438603" + integrity sha512-im46sHYjZ/yl4JSmjF8HbgHpvClVHtFMvIkRVnJGuJK+e74L5YVX7ML/o1PdBj4NtQNNxyPRWfit7zfM/yLjtQ== + +turbo-linux-arm64@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-linux-arm64/-/turbo-linux-arm64-1.2.14.tgz#4d15d005195f7031f08215db4b153b2a6c732b02" + integrity sha512-qyusEtylnt5cF2+jIOMIN4iCzMG/tur2y3++YeKRCdGaboPUbsfCcTXbhM29VxxNWw5JVxh7FC0+ZUsEFRYDNg== + +turbo-linux-arm@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-linux-arm/-/turbo-linux-arm-1.2.14.tgz#bd51284cf76eb29e3ffb823a26982e27b3770a81" + integrity sha512-d8v53TxIQpq6w3RFxcOyHrQzLcvgyA3VC9oxZ2phZtlcTvjjZulYmuToUAHdRW24cA2DGZkwA2wSF//zJoBcdQ== + +turbo-linux-mips64le@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-linux-mips64le/-/turbo-linux-mips64le-1.2.14.tgz#f9ddee114c114720b5e04be7e88daa59956ed744" + integrity sha512-zKPi9ArRDu4BKB8YmcQ6i89Hhzd5xk4W+m7YuZKBmeEVCFBDUUAyWnKsvmBoYuGTpdQqMSH14BdYMTr5s2thjw== + +turbo-linux-ppc64le@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-linux-ppc64le/-/turbo-linux-ppc64le-1.2.14.tgz#5f93d58668ca2fec5287ef316930e3a69a926852" + integrity sha512-gW43yKJjSHZjZdjI/MihrnIEACnwhB+okJJjYYFKuEteJF+TCWHvY3rfL9MFI7vH2zwFUgoncIOuGvaeZo3K0A== + +turbo-windows-32@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-windows-32/-/turbo-windows-32-1.2.14.tgz#f28fb6388aff99aea8eed3f7e080863a0da0a5c0" + integrity sha512-BMqpSaHx5mgvMdXotMoVinU3dSGBoRdZZkwOAs8R0WPUCwZVMPo6fTuKIhcOlKFOt6swQGFD02IzCWD+SGfEuA== + +turbo-windows-64@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-windows-64/-/turbo-windows-64-1.2.14.tgz#0f97778d66db031f9a2fd62f7a420ca2349e2a12" + integrity sha512-SA9YNAyZ2wYBccPtWbQckpSZOAuhH71893UZsstRWUEUj/cZ+PFpwNGTrHTGoySbwQPbOVHQNXEO7QX405Ajow== + +turbo-windows-arm64@1.2.14: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo-windows-arm64/-/turbo-windows-arm64-1.2.14.tgz#fd2ab6557b398a9f303101c14d2925fb5809622d" + integrity sha512-VNxbJ2LlRWzkiRE15nwW4oA/wBMFf1h8fuPCHHXtB6ThjfeG8SN5QgPUrhTIP4p7WiEdN/Sq7UJzFrGA4I8jqg== + +turbo@latest: + version "1.2.14" + resolved "https://registry.yarnpkg.com/turbo/-/turbo-1.2.14.tgz#b29d7d1241d6743fcc76f200a6ff1ccfca26c70f" + integrity sha512-una2aE2agjTT2SgC3kCmUrYIPy5uh5NLPQrRCKKBIgvII90vyajvFhcq+yJUYdh5f+2o0xb/9YXaj+FAITds0A== + optionalDependencies: + turbo-darwin-64 "1.2.14" + turbo-darwin-arm64 "1.2.14" + turbo-freebsd-64 "1.2.14" + turbo-freebsd-arm64 "1.2.14" + turbo-linux-32 "1.2.14" + turbo-linux-64 "1.2.14" + turbo-linux-arm "1.2.14" + turbo-linux-arm64 "1.2.14" + turbo-linux-mips64le "1.2.14" + turbo-linux-ppc64le "1.2.14" + turbo-windows-32 "1.2.14" + turbo-windows-64 "1.2.14" + turbo-windows-arm64 "1.2.14" + tweetnacl@^0.14.3, tweetnacl@~0.14.0: version "0.14.5" resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" @@ -27319,7 +27500,7 @@ webpack-dev-middleware@^5.3.1: range-parser "^1.2.1" schema-utils "^4.0.0" -webpack-dev-server@^4.7.4: +webpack-dev-server@^4.8.1: version "4.9.0" resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.9.0.tgz#737dbf44335bb8bde68f8f39127fc401c97a1557" integrity sha512-+Nlb39iQSOSsFv0lWUuUTim3jDQO8nhK3E68f//J2r5rIcp4lULHXz2oZ0UVdEeWXEh5lSzYUlzarZhDAeAVQw== @@ -27473,7 +27654,7 @@ webpack@^5.69.1: watchpack "^2.3.1" webpack-sources "^3.2.3" -webpack@^5.72.1: +webpack@^5.72.0: version "5.72.1" resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.72.1.tgz#3500fc834b4e9ba573b9f430b2c0a61e1bb57d13" integrity sha512-dXG5zXCLspQR4krZVR6QgajnZOjW2K/djHvdcRaDQvsjV9z9vaW6+ja5dZOYbqBBjF6kGXka/2ZyxNdc+8Jung== From 8181d7b51dcea94ab458dbc71d35c4117a721d51 Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 12:03:21 -0300 Subject: [PATCH 08/12] fix: ci --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2ec548d87..5faf30b424 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,9 +6,6 @@ on: branches-ignore: - main - pull_request: - types: [opened, synchronize] - jobs: build: name: Build and Test From 351af610ec6c718a042fe151000626502f0099e3 Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 12:06:57 -0300 Subject: [PATCH 09/12] feat: add lint as step of workflows --- .github/workflows/ci.yml | 5 ++++- .github/workflows/release.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5faf30b424..69c8f3489e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: Build and Test + name: Build, Lint and Test timeout-minutes: 15 runs-on: ubuntu-latest # To use Remote Caching, uncomment the next lines and follow the steps below. @@ -34,5 +34,8 @@ jobs: - name: Build run: yarn build + - name: Lint + run: yarn lint + - name: Test run: yarn test diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 22ffaa3908..b7b767907b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: Build, Test and Publish + name: Build, Lint, Test and Publish timeout-minutes: 15 runs-on: ubuntu-latest # To use Remote Caching, uncomment the next lines and follow the steps below. @@ -34,6 +34,9 @@ jobs: - name: Build run: yarn build + - name: Lint + run: yarn lint + - name: Test run: yarn test From 76e195422b5df1c6b065cdd3289d6ada260e9087 Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 12:17:57 -0300 Subject: [PATCH 10/12] fix: using eslint from vtex instead tsdx --- packages/api/package.json | 1 - packages/sdk/package.json | 1 - 2 files changed, 2 deletions(-) diff --git a/packages/api/package.json b/packages/api/package.json index cf6288532d..bd629579d6 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -18,7 +18,6 @@ "develop:no-server": "concurrently \"yarn generate -w\" \"tsdx watch\"", "build": "graphql-codegen --config codegen.yml && tsdx build", "test": "tsdx test", - "lint": "tsdx lint", "generate": "graphql-codegen --config codegen.yml" }, "dependencies": { diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 53c35d8657..548341de12 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -24,7 +24,6 @@ "develop": "tsdx watch", "build": "tsdx build", "test": "tsdx test", - "lint": "tsdx lint", "size": "size-limit", "analyze": "size-limit --why" }, From 1ff8d59c640153f79ea696e576db0cc0e9aeddc0 Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 13:58:57 -0300 Subject: [PATCH 11/12] fix: size step on ci workflow --- .github/workflows/ci.yml | 5 ++++- .github/workflows/release.yml | 5 ++++- package.json | 1 + turbo.json | 1 + 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69c8f3489e..052307aa4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: Build, Lint and Test + name: FastStore CI timeout-minutes: 15 runs-on: ubuntu-latest # To use Remote Caching, uncomment the next lines and follow the steps below. @@ -34,6 +34,9 @@ jobs: - name: Build run: yarn build + - name: Size + run: yarn size + - name: Lint run: yarn lint diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b7b767907b..31f842ca41 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: Build, Lint, Test and Publish + name: FastStore CI timeout-minutes: 15 runs-on: ubuntu-latest # To use Remote Caching, uncomment the next lines and follow the steps below. @@ -34,6 +34,9 @@ jobs: - name: Build run: yarn build + - name: Size + run: yarn size + - name: Lint run: yarn lint diff --git a/package.json b/package.json index 2b3da84eae..d15c12f7c3 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "dev": "turbo run dev --parallel --no-cache", "lint": "turbo run lint", "test": "turbo run test", + "size": "turbo run size", "format": "prettier --write \"**/*.{ts,tsx,json}\"", "release": "lerna version minor --yes && lerna publish from-git --yes", "generate-ui-component": "yarn plop --plopfile generators/plopfile.ts" diff --git a/turbo.json b/turbo.json index 25f8d8b930..fad1618372 100644 --- a/turbo.json +++ b/turbo.json @@ -14,6 +14,7 @@ "outputs": [] }, "start": {}, + "size": {}, "develop": { "cache": false }, From 19e3b42abc2af60c6eae39bf698257d5999e8468 Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 30 May 2022 14:15:29 -0300 Subject: [PATCH 12/12] fix: release cd name --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 31f842ca41..6d2a967d65 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: build: - name: FastStore CI + name: FastStore CD timeout-minutes: 15 runs-on: ubuntu-latest # To use Remote Caching, uncomment the next lines and follow the steps below.