@faststore/core 2.1.4 → 2.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +2 -2
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/config.json +3 -3
- package/.next/cache/eslint/.cache_1gneedd +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/350.js +1 -1
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.js.nft.json +1 -1
- package/.next/server/pages/[...slug].js.nft.json +1 -1
- package/.next/server/pages/[slug]/p.js.nft.json +1 -1
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/account.js.nft.json +1 -1
- package/.next/server/pages/api/graphql.js +1 -1
- package/.next/server/pages/checkout.js.nft.json +1 -1
- package/.next/server/pages/en-US/404.html +2 -2
- package/.next/server/pages/en-US/500.html +2 -2
- package/.next/server/pages/en-US/account.html +2 -2
- package/.next/server/pages/en-US/checkout.html +2 -2
- package/.next/server/pages/en-US/login.html +2 -2
- package/.next/server/pages/en-US/s.html +2 -2
- package/.next/server/pages/en-US.html +2 -2
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/login.js.nft.json +1 -1
- package/.next/server/pages/s.js.nft.json +1 -1
- package/.next/server/pages-manifest.json +4 -4
- package/.next/trace +72 -72
- package/.turbo/turbo-build.log +9 -0
- package/cypress/integration/a11y.test.js +3 -3
- package/package.json +3 -3
- /package/.next/static/{282Jjua8Bx7rUXhUJl4TU → m-KBQyrPnRowl0kHU2Zwh}/_buildManifest.js +0 -0
- /package/.next/static/{282Jjua8Bx7rUXhUJl4TU → m-KBQyrPnRowl0kHU2Zwh}/_ssgManifest.js +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -7,10 +7,19 @@ This information is used to shape Next.js' roadmap and prioritize features.
|
|
|
7
7
|
You can learn more, including how to opt-out if you'd not like to participate in this anonymous program, by visiting the following URL:
|
|
8
8
|
https://nextjs.org/telemetry
|
|
9
9
|
|
|
10
|
+
Browserslist: caniuse-lite is outdated. Please run:
|
|
11
|
+
npx browserslist@latest --update-db
|
|
12
|
+
Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updating
|
|
10
13
|
info - Linting and checking validity of types...
|
|
11
14
|
info - Creating an optimized production build...
|
|
12
15
|
info - Disabled SWC as replacement for Babel because of custom Babel configuration ".babelrc" https://nextjs.org/docs/messages/swc-disabled
|
|
16
|
+
Browserslist: caniuse-lite is outdated. Please run:
|
|
17
|
+
npx browserslist@latest --update-db
|
|
18
|
+
Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updating
|
|
13
19
|
info - Using external babel configuration from /home/runner/work/faststore/faststore/packages/core/.babelrc
|
|
20
|
+
Browserslist: caniuse-lite is outdated. Please run:
|
|
21
|
+
npx update-browserslist-db@latest
|
|
22
|
+
Why you should do it regularly: https://github.com/browserslist/update-db#readme
|
|
14
23
|
info - Compiled successfully
|
|
15
24
|
info - Collecting page data...
|
|
16
25
|
info - Generating static pages (0/7)
|
|
@@ -13,7 +13,7 @@ describe('Accessibility tests', () => {
|
|
|
13
13
|
cy.clearIDB()
|
|
14
14
|
})
|
|
15
15
|
|
|
16
|
-
it('checks a11y for collection page', () => {
|
|
16
|
+
it.skip('checks a11y for collection page', () => {
|
|
17
17
|
cy.visit(pages.collection)
|
|
18
18
|
cy.waitForHydration()
|
|
19
19
|
|
|
@@ -30,7 +30,7 @@ describe('Accessibility tests', () => {
|
|
|
30
30
|
})
|
|
31
31
|
})
|
|
32
32
|
|
|
33
|
-
it('checks a11y for product page', () => {
|
|
33
|
+
it.skip('checks a11y for product page', () => {
|
|
34
34
|
cy.visit(pages.pdp)
|
|
35
35
|
cy.waitForHydration()
|
|
36
36
|
|
|
@@ -47,7 +47,7 @@ describe('Accessibility tests', () => {
|
|
|
47
47
|
})
|
|
48
48
|
})
|
|
49
49
|
|
|
50
|
-
it('checks a11y for home page', () => {
|
|
50
|
+
it.skip('checks a11y for home page', () => {
|
|
51
51
|
cy.visit(pages.home)
|
|
52
52
|
cy.waitForHydration()
|
|
53
53
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faststore/core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"browserslist": "supports es6-module and not dead",
|
|
6
6
|
"scripts": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@envelop/graphql-jit": "^1.1.1",
|
|
30
30
|
"@envelop/parser-cache": "^2.2.0",
|
|
31
31
|
"@envelop/validation-cache": "^2.2.0",
|
|
32
|
-
"@faststore/api": "^2.1.
|
|
32
|
+
"@faststore/api": "^2.1.8",
|
|
33
33
|
"@faststore/components": "^2.1.4",
|
|
34
34
|
"@faststore/graphql-utils": "^2.1.1",
|
|
35
35
|
"@faststore/sdk": "^2.1.1",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"msw": {
|
|
109
109
|
"workerDirectory": "public"
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "13a1fc9bb15b846d705fbc5ab3bc19cb9b8c400c"
|
|
112
112
|
}
|
|
File without changes
|
|
File without changes
|