From 5352d481c0020af1d2f7e7286775fd5ad30ebcef Mon Sep 17 00:00:00 2001 From: vtexgithubbot Date: Wed, 31 Jan 2024 19:09:12 +0000 Subject: [PATCH] [no ci] Release: 3.0.0 --- apps/site/package.json | 10 +++++----- lerna.json | 2 +- packages/api/package.json | 6 +++--- packages/cli/README.md | 14 +++++++------- packages/cli/package.json | 6 +++--- packages/components/package.json | 6 +++--- packages/core/package.json | 16 ++++++++-------- packages/eslint-config/package.json | 2 +- packages/graphql-utils/package.json | 6 +++--- packages/lighthouse/package.json | 6 +++--- packages/sdk/package.json | 4 ++-- packages/shared/package.json | 2 +- packages/ui/package.json | 8 ++++---- 13 files changed, 44 insertions(+), 44 deletions(-) diff --git a/apps/site/package.json b/apps/site/package.json index 23155bb826..e40c0f386e 100644 --- a/apps/site/package.json +++ b/apps/site/package.json @@ -1,6 +1,6 @@ { "name": "site", - "version": "2.2.78", + "version": "3.0.0", "author": "Emerson Laurentino @emersonlaurentino", "license": "MIT", "private": true, @@ -10,9 +10,9 @@ "start": "next start" }, "dependencies": { - "@faststore/api": "^2.2.78", - "@faststore/sdk": "^2.2.78", - "@faststore/ui": "^2.2.78", + "@faststore/api": "^3.0.0", + "@faststore/sdk": "^3.0.0", + "@faststore/ui": "^3.0.0", "next": "13.0.7", "nextra": "^2.8.0", "nextra-theme-docs": "^2.8.0", @@ -21,7 +21,7 @@ "sass": "^1.57.1" }, "devDependencies": { - "@faststore/eslint-config": "^2.2.78", + "@faststore/eslint-config": "^3.0.0", "@types/node": "^18.11.16", "eslint": "7.32.0", "react-docgen-typescript": "^2.2.2", diff --git a/lerna.json b/lerna.json index 90a39cbf44..b2d83c1855 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "2.2.78", + "version": "3.0.0", "npmClient": "yarn", "command": { "publish": { diff --git a/packages/api/package.json b/packages/api/package.json index 7bae0d1257..92820dffb7 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/api", - "version": "2.2.78", + "version": "3.0.0", "license": "MIT", "main": "dist/cjs/src/index.js", "typings": "dist/esm/src/index.d.ts", @@ -50,8 +50,8 @@ }, "devDependencies": { "@envelop/core": "^2.6.0", - "@faststore/eslint-config": "^2.2.78", - "@faststore/shared": "^2.2.78", + "@faststore/eslint-config": "^3.0.0", + "@faststore/shared": "^3.0.0", "@graphql-codegen/cli": "2.2.0", "@graphql-codegen/typescript": "2.2.2", "@types/express": "^4.17.16", diff --git a/packages/cli/README.md b/packages/cli/README.md index 728cc785df..f828edec81 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -14,7 +14,7 @@ $ npm install -g @faststore/cli $ faststore COMMAND running command... $ faststore (--version) -@faststore/cli/2.2.78 linux-x64 node-v18.19.0 +@faststore/cli/3.0.0 linux-x64 node-v18.19.0 $ faststore --help [COMMAND] USAGE $ faststore COMMAND @@ -40,7 +40,7 @@ USAGE $ faststore build ``` -_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/build.ts)_ +_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/build.ts)_ ## `faststore cms-sync` @@ -49,7 +49,7 @@ USAGE $ faststore cms-sync ``` -_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/cms-sync.ts)_ +_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/cms-sync.ts)_ ## `faststore dev` @@ -58,7 +58,7 @@ USAGE $ faststore dev ``` -_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/dev.ts)_ +_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/dev.ts)_ ## `faststore generate-graphql` @@ -70,7 +70,7 @@ FLAGS -d, --debug ``` -_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/generate-graphql.ts)_ +_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/generate-graphql.ts)_ ## `faststore help [COMMAND]` @@ -99,7 +99,7 @@ USAGE $ faststore start ``` -_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/start.ts)_ +_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/start.ts)_ ## `faststore test` @@ -108,5 +108,5 @@ USAGE $ faststore test ``` -_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/test.ts)_ +_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/test.ts)_ diff --git a/packages/cli/package.json b/packages/cli/package.json index 1a3b1a7f48..e5e24946aa 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/cli", - "version": "2.2.78", + "version": "3.0.0", "description": "FastStore CLI", "author": "Emerson Laurentino @emersonlaurentino", "bin": { @@ -26,8 +26,8 @@ "path": "^0.12.7" }, "devDependencies": { - "@faststore/eslint-config": "^2.2.78", - "@faststore/shared": "^2.2.78", + "@faststore/eslint-config": "^3.0.0", + "@faststore/shared": "^3.0.0", "@types/chai": "^4", "@types/fs-extra": "^9.0.13", "@types/node": "^16.11.63", diff --git a/packages/components/package.json b/packages/components/package.json index 8e0a0d53da..4659b98344 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/components", - "version": "2.2.78", + "version": "3.0.0", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "typings": "dist/esm/index.d.ts", @@ -34,8 +34,8 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@faststore/eslint-config": "^2.2.78", - "@faststore/shared": "^2.2.78", + "@faststore/eslint-config": "^3.0.0", + "@faststore/shared": "^3.0.0", "@types/react": "^18.2.42", "@types/react-dom": "^18.2.17", "eslint": "7.32.0", diff --git a/packages/core/package.json b/packages/core/package.json index e8cd9feea2..2e49f50ae4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/core", - "version": "2.2.78", + "version": "3.0.0", "license": "MIT", "repository": "vtex/faststore", "browserslist": "supports es6-module and not dead", @@ -38,11 +38,11 @@ "@envelop/graphql-jit": "^1.1.1", "@envelop/parser-cache": "^2.2.0", "@envelop/validation-cache": "^2.2.0", - "@faststore/api": "^2.2.78", - "@faststore/components": "^2.2.78", - "@faststore/graphql-utils": "^2.2.78", - "@faststore/sdk": "^2.2.78", - "@faststore/ui": "^2.2.78", + "@faststore/api": "^3.0.0", + "@faststore/components": "^3.0.0", + "@faststore/graphql-utils": "^3.0.0", + "@faststore/sdk": "^3.0.0", + "@faststore/ui": "^3.0.0", "@graphql-codegen/cli": "^3.3.1", "@graphql-codegen/client-preset": "^4.1.0", "@graphql-codegen/typescript": "^3.0.4", @@ -82,8 +82,8 @@ "devDependencies": { "@cypress/code-coverage": "^3.12.1", "@envelop/testing": "^6.0.0", - "@faststore/cli": "^2.2.78", - "@faststore/eslint-config": "^2.2.78", + "@faststore/cli": "^3.0.0", + "@faststore/eslint-config": "^3.0.0", "@faststore/lighthouse": "^1.12.32", "@lhci/cli": "^0.9.0", "@testing-library/cypress": "^10.0.1", diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 89327f4cdc..a7a9e9b37e 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/eslint-config", - "version": "2.2.78", + "version": "3.0.0", "main": "index.js", "license": "MIT", "repository": "vtex/faststore", diff --git a/packages/graphql-utils/package.json b/packages/graphql-utils/package.json index 0363979fcf..4235f739b9 100644 --- a/packages/graphql-utils/package.json +++ b/packages/graphql-utils/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/graphql-utils", - "version": "2.2.78", + "version": "3.0.0", "description": "GraphQL utilities", "repository": { "type": "git", @@ -21,8 +21,8 @@ "graphql": "^15.6.1" }, "devDependencies": { - "@faststore/eslint-config": "^2.2.78", - "@faststore/shared": "^2.2.78", + "@faststore/eslint-config": "^3.0.0", + "@faststore/shared": "^3.0.0", "cross-env": "^7.0.2", "eslint": "7.32.0", "typescript": "^4.2.4" diff --git a/packages/lighthouse/package.json b/packages/lighthouse/package.json index 9c5e52b4f5..ac31566605 100644 --- a/packages/lighthouse/package.json +++ b/packages/lighthouse/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/lighthouse", - "version": "2.2.78", + "version": "3.0.0", "author": "Emerson Laurentino", "license": "MIT", "repository": { @@ -24,8 +24,8 @@ "lint": "eslint src/**/*.ts" }, "devDependencies": { - "@faststore/eslint-config": "^2.2.78", - "@faststore/shared": "^2.2.78", + "@faststore/eslint-config": "^3.0.0", + "@faststore/shared": "^3.0.0", "eslint": "7.32.0", "typescript": "^4.2.4" } diff --git a/packages/sdk/package.json b/packages/sdk/package.json index 2621e6215f..f70144b74b 100644 --- a/packages/sdk/package.json +++ b/packages/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/sdk", - "version": "2.2.78", + "version": "3.0.0", "description": "Hooks for creating your next component library", "license": "MIT", "repository": { @@ -37,7 +37,7 @@ "react": "^18.2.0" }, "devDependencies": { - "@faststore/shared": "^2.2.78", + "@faststore/shared": "^3.0.0", "@size-limit/preset-small-lib": "^7.0.8", "@testing-library/react-hooks": "^8.0.1", "fake-indexeddb": "^3.1.3", diff --git a/packages/shared/package.json b/packages/shared/package.json index def7a3d757..c329bd3857 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/shared", - "version": "2.2.78", + "version": "3.0.0", "private": true, "files": [ "tsconfig.json" diff --git a/packages/ui/package.json b/packages/ui/package.json index 1e1843f3e7..80af8254b3 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@faststore/ui", - "version": "2.2.78", + "version": "3.0.0", "description": "A lightweight, framework agnostic component library for React", "author": "emersonlaurentino", "license": "MIT", @@ -48,7 +48,7 @@ } ], "dependencies": { - "@faststore/components": "^2.2.78", + "@faststore/components": "^3.0.0", "include-media": "^1.4.10", "modern-normalize": "^1.1.0", "react-swipeable": "^7.0.0", @@ -59,8 +59,8 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@faststore/eslint-config": "^2.2.78", - "@faststore/shared": "^2.2.78", + "@faststore/eslint-config": "^3.0.0", + "@faststore/shared": "^3.0.0", "@size-limit/preset-small-lib": "^7.0.8", "@types/tabbable": "^3.1.1", "babel-loader": "^8.2.5",