Skip to content

Commit 5352d48

Browse files
author
vtexgithubbot
committed
[no ci] Release: 3.0.0
1 parent 76e80ae commit 5352d48

File tree

13 files changed

+44
-44
lines changed

13 files changed

+44
-44
lines changed

apps/site/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "site",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"author": "Emerson Laurentino @emersonlaurentino",
55
"license": "MIT",
66
"private": true,
@@ -10,9 +10,9 @@
1010
"start": "next start"
1111
},
1212
"dependencies": {
13-
"@faststore/api": "^2.2.78",
14-
"@faststore/sdk": "^2.2.78",
15-
"@faststore/ui": "^2.2.78",
13+
"@faststore/api": "^3.0.0",
14+
"@faststore/sdk": "^3.0.0",
15+
"@faststore/ui": "^3.0.0",
1616
"next": "13.0.7",
1717
"nextra": "^2.8.0",
1818
"nextra-theme-docs": "^2.8.0",
@@ -21,7 +21,7 @@
2121
"sass": "^1.57.1"
2222
},
2323
"devDependencies": {
24-
"@faststore/eslint-config": "^2.2.78",
24+
"@faststore/eslint-config": "^3.0.0",
2525
"@types/node": "^18.11.16",
2626
"eslint": "7.32.0",
2727
"react-docgen-typescript": "^2.2.2",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.2.78",
2+
"version": "3.0.0",
33
"npmClient": "yarn",
44
"command": {
55
"publish": {

packages/api/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/api",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"license": "MIT",
55
"main": "dist/cjs/src/index.js",
66
"typings": "dist/esm/src/index.d.ts",
@@ -50,8 +50,8 @@
5050
},
5151
"devDependencies": {
5252
"@envelop/core": "^2.6.0",
53-
"@faststore/eslint-config": "^2.2.78",
54-
"@faststore/shared": "^2.2.78",
53+
"@faststore/eslint-config": "^3.0.0",
54+
"@faststore/shared": "^3.0.0",
5555
"@graphql-codegen/cli": "2.2.0",
5656
"@graphql-codegen/typescript": "2.2.2",
5757
"@types/express": "^4.17.16",

packages/cli/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $ npm install -g @faststore/cli
1414
$ faststore COMMAND
1515
running command...
1616
$ faststore (--version)
17-
@faststore/cli/2.2.78 linux-x64 node-v18.19.0
17+
@faststore/cli/3.0.0 linux-x64 node-v18.19.0
1818
$ faststore --help [COMMAND]
1919
USAGE
2020
$ faststore COMMAND
@@ -40,7 +40,7 @@ USAGE
4040
$ faststore build
4141
```
4242

43-
_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/build.ts)_
43+
_See code: [dist/commands/build.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/build.ts)_
4444

4545
## `faststore cms-sync`
4646

@@ -49,7 +49,7 @@ USAGE
4949
$ faststore cms-sync
5050
```
5151

52-
_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/cms-sync.ts)_
52+
_See code: [dist/commands/cms-sync.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/cms-sync.ts)_
5353

5454
## `faststore dev`
5555

@@ -58,7 +58,7 @@ USAGE
5858
$ faststore dev
5959
```
6060

61-
_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/dev.ts)_
61+
_See code: [dist/commands/dev.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/dev.ts)_
6262

6363
## `faststore generate-graphql`
6464

@@ -70,7 +70,7 @@ FLAGS
7070
-d, --debug
7171
```
7272

73-
_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/generate-graphql.ts)_
73+
_See code: [dist/commands/generate-graphql.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/generate-graphql.ts)_
7474

7575
## `faststore help [COMMAND]`
7676

@@ -99,7 +99,7 @@ USAGE
9999
$ faststore start
100100
```
101101

102-
_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/start.ts)_
102+
_See code: [dist/commands/start.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/start.ts)_
103103

104104
## `faststore test`
105105

@@ -108,5 +108,5 @@ USAGE
108108
$ faststore test
109109
```
110110

111-
_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v2.2.78/dist/commands/test.ts)_
111+
_See code: [dist/commands/test.ts](https://github.com/vtex/faststore/blob/v3.0.0/dist/commands/test.ts)_
112112
<!-- commandsstop -->

packages/cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/cli",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"description": "FastStore CLI",
55
"author": "Emerson Laurentino @emersonlaurentino",
66
"bin": {
@@ -26,8 +26,8 @@
2626
"path": "^0.12.7"
2727
},
2828
"devDependencies": {
29-
"@faststore/eslint-config": "^2.2.78",
30-
"@faststore/shared": "^2.2.78",
29+
"@faststore/eslint-config": "^3.0.0",
30+
"@faststore/shared": "^3.0.0",
3131
"@types/chai": "^4",
3232
"@types/fs-extra": "^9.0.13",
3333
"@types/node": "^16.11.63",

packages/components/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/components",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"typings": "dist/esm/index.d.ts",
@@ -34,8 +34,8 @@
3434
"react-dom": "^18.2.0"
3535
},
3636
"devDependencies": {
37-
"@faststore/eslint-config": "^2.2.78",
38-
"@faststore/shared": "^2.2.78",
37+
"@faststore/eslint-config": "^3.0.0",
38+
"@faststore/shared": "^3.0.0",
3939
"@types/react": "^18.2.42",
4040
"@types/react-dom": "^18.2.17",
4141
"eslint": "7.32.0",

packages/core/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/core",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"license": "MIT",
55
"repository": "vtex/faststore",
66
"browserslist": "supports es6-module and not dead",
@@ -38,11 +38,11 @@
3838
"@envelop/graphql-jit": "^1.1.1",
3939
"@envelop/parser-cache": "^2.2.0",
4040
"@envelop/validation-cache": "^2.2.0",
41-
"@faststore/api": "^2.2.78",
42-
"@faststore/components": "^2.2.78",
43-
"@faststore/graphql-utils": "^2.2.78",
44-
"@faststore/sdk": "^2.2.78",
45-
"@faststore/ui": "^2.2.78",
41+
"@faststore/api": "^3.0.0",
42+
"@faststore/components": "^3.0.0",
43+
"@faststore/graphql-utils": "^3.0.0",
44+
"@faststore/sdk": "^3.0.0",
45+
"@faststore/ui": "^3.0.0",
4646
"@graphql-codegen/cli": "^3.3.1",
4747
"@graphql-codegen/client-preset": "^4.1.0",
4848
"@graphql-codegen/typescript": "^3.0.4",
@@ -82,8 +82,8 @@
8282
"devDependencies": {
8383
"@cypress/code-coverage": "^3.12.1",
8484
"@envelop/testing": "^6.0.0",
85-
"@faststore/cli": "^2.2.78",
86-
"@faststore/eslint-config": "^2.2.78",
85+
"@faststore/cli": "^3.0.0",
86+
"@faststore/eslint-config": "^3.0.0",
8787
"@faststore/lighthouse": "^1.12.32",
8888
"@lhci/cli": "^0.9.0",
8989
"@testing-library/cypress": "^10.0.1",

packages/eslint-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/eslint-config",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"main": "index.js",
55
"license": "MIT",
66
"repository": "vtex/faststore",

packages/graphql-utils/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/graphql-utils",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"description": "GraphQL utilities",
55
"repository": {
66
"type": "git",
@@ -21,8 +21,8 @@
2121
"graphql": "^15.6.1"
2222
},
2323
"devDependencies": {
24-
"@faststore/eslint-config": "^2.2.78",
25-
"@faststore/shared": "^2.2.78",
24+
"@faststore/eslint-config": "^3.0.0",
25+
"@faststore/shared": "^3.0.0",
2626
"cross-env": "^7.0.2",
2727
"eslint": "7.32.0",
2828
"typescript": "^4.2.4"

packages/lighthouse/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/lighthouse",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"author": "Emerson Laurentino",
55
"license": "MIT",
66
"repository": {
@@ -24,8 +24,8 @@
2424
"lint": "eslint src/**/*.ts"
2525
},
2626
"devDependencies": {
27-
"@faststore/eslint-config": "^2.2.78",
28-
"@faststore/shared": "^2.2.78",
27+
"@faststore/eslint-config": "^3.0.0",
28+
"@faststore/shared": "^3.0.0",
2929
"eslint": "7.32.0",
3030
"typescript": "^4.2.4"
3131
}

packages/sdk/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/sdk",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"description": "Hooks for creating your next component library",
55
"license": "MIT",
66
"repository": {
@@ -37,7 +37,7 @@
3737
"react": "^18.2.0"
3838
},
3939
"devDependencies": {
40-
"@faststore/shared": "^2.2.78",
40+
"@faststore/shared": "^3.0.0",
4141
"@size-limit/preset-small-lib": "^7.0.8",
4242
"@testing-library/react-hooks": "^8.0.1",
4343
"fake-indexeddb": "^3.1.3",

packages/shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/shared",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"private": true,
55
"files": [
66
"tsconfig.json"

packages/ui/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@faststore/ui",
3-
"version": "2.2.78",
3+
"version": "3.0.0",
44
"description": "A lightweight, framework agnostic component library for React",
55
"author": "emersonlaurentino",
66
"license": "MIT",
@@ -48,7 +48,7 @@
4848
}
4949
],
5050
"dependencies": {
51-
"@faststore/components": "^2.2.78",
51+
"@faststore/components": "^3.0.0",
5252
"include-media": "^1.4.10",
5353
"modern-normalize": "^1.1.0",
5454
"react-swipeable": "^7.0.0",
@@ -59,8 +59,8 @@
5959
"react-dom": "^18.2.0"
6060
},
6161
"devDependencies": {
62-
"@faststore/eslint-config": "^2.2.78",
63-
"@faststore/shared": "^2.2.78",
62+
"@faststore/eslint-config": "^3.0.0",
63+
"@faststore/shared": "^3.0.0",
6464
"@size-limit/preset-small-lib": "^7.0.8",
6565
"@types/tabbable": "^3.1.1",
6666
"babel-loader": "^8.2.5",

0 commit comments

Comments
 (0)