@faststore/core 3.0.132 → 3.0.133
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/config.json +3 -3
- package/.next/cache/eslint/.cache_1gneedd +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-minimal-server.js.nft.json +1 -1
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.js +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/functions-config-manifest.json +1 -1
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/en-US/404.html +1 -1
- package/.next/server/pages/en-US/500.html +1 -1
- package/.next/server/pages/en-US/account.html +1 -1
- package/.next/server/pages/en-US/checkout.html +1 -1
- package/.next/server/pages/en-US/login.html +1 -1
- package/.next/server/pages/en-US/s.html +1 -1
- package/.next/server/pages/en-US.html +2 -2
- package/.next/server/pages-manifest.json +1 -1
- package/.next/trace +94 -94
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +4 -4
- package/next.config.js +6 -1
- package/package.json +2 -2
- /package/.next/static/{QumIIgsiZ1UZUHbqVzzNR → IyPevAAG78YPlk_8u0B3B}/_buildManifest.js +0 -0
- /package/.next/static/{QumIIgsiZ1UZUHbqVzzNR → IyPevAAG78YPlk_8u0B3B}/_ssgManifest.js +0 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -37,8 +37,8 @@ https://nextjs.org/telemetry
|
|
|
37
37
|
Collecting page data ...
|
|
38
38
|
Generating static pages (0/7) ...
|
|
39
39
|
|
|
40
40
|
Generating static pages (1/7)
|
|
41
|
-
Warning: Dynamic Content not found for the page: home. Refer to the Dynamic Content documentation at https://developers.vtex.com/docs/guides/faststore/dynamic-content-overview for mapping the page and the corresponding data-fetching function.
|
|
42
41
|
|
|
43
42
|
Generating static pages (3/7)
|
|
43
|
+
Warning: Dynamic Content not found for the page: home. Refer to the Dynamic Content documentation at https://developers.vtex.com/docs/guides/faststore/dynamic-content-overview for mapping the page and the corresponding data-fetching function.
|
|
44
44
|
|
|
45
45
|
Generating static pages (5/7)
|
|
46
46
|
|
|
47
47
|
✓ Generating static pages (7/7)
|
|
48
48
|
Finalizing page optimization ...
|
package/.turbo/turbo-test.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
$ jest
|
|
2
|
-
PASS test/utils/multipleTemplates.test.ts (
|
|
3
|
-
PASS test/server/cms/index.test.ts (36.
|
|
4
|
-
PASS test/server/index.test.ts (
|
|
2
|
+
PASS test/utils/multipleTemplates.test.ts (34.399 s)
|
|
3
|
+
PASS test/server/cms/index.test.ts (36.222 s)
|
|
4
|
+
PASS test/server/index.test.ts (38.351 s)
|
|
5
5
|
|
|
6
6
|
Test Suites: 3 passed, 3 total
|
|
7
7
|
Tests: 19 passed, 19 total
|
|
8
8
|
Snapshots: 0 total
|
|
9
|
-
Time:
|
|
9
|
+
Time: 39.652 s
|
|
10
10
|
Ran all test suites.
|
package/next.config.js
CHANGED
|
@@ -24,7 +24,12 @@ const nextConfig = {
|
|
|
24
24
|
// TODO: We won't need to enable this experimental feature when migrating to Next.js 13
|
|
25
25
|
experimental: {
|
|
26
26
|
scrollRestoration: true,
|
|
27
|
-
|
|
27
|
+
/*
|
|
28
|
+
* The FastStore Discovery CLI will update this value to match the path where the
|
|
29
|
+
* command is being run, because that is where the node_modules directory is.
|
|
30
|
+
* For discovery-only paths, that is the user directory, and for monorepo, that is the base
|
|
31
|
+
* of the monorepo
|
|
32
|
+
* */
|
|
28
33
|
outputFileTracingRoot: path.join(__dirname, '../'),
|
|
29
34
|
},
|
|
30
35
|
webpack: (config, { isServer, dev }) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@faststore/core",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.133",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "vtex/faststore",
|
|
6
6
|
"browserslist": "supports es6-module and not dead",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"node": "18.19.0",
|
|
129
129
|
"yarn": "1.19.1"
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "0666c1692e31629d949a71768f8e156e820f9043"
|
|
132
132
|
}
|
|
File without changes
|
|
File without changes
|