Skip to content

Commit b4205c6

Browse files
committed
update snapshots
1 parent 5bedfa6 commit b4205c6

File tree

95 files changed

+142
-141
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+142
-141
lines changed

crates/next-custom-transforms/tests/errors/server-actions/client-graph/1/output.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* __next_internal_client_entry_do_not_use__ default auto */ export default function App() {
1+
export default function App() {
22
async function fn() {
33
'use server';
44
}

crates/next-custom-transforms/tests/errors/server-actions/client-graph/2/output.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* __next_internal_client_entry_do_not_use__ default auto */ export default function App() {
1+
export default function App() {
22
async function fn() {
33
'use cache';
44
}

crates/next-custom-transforms/tests/errors/server-actions/server-graph/1/output.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* __next_internal_action_entry_do_not_use__ {"00ab21efdafbe611287bc25c0462b1e0510d13e48b":"foo"} */ import { registerServerReference } from "private-next-rsc-server-reference";
1+
import { registerServerReference } from "private-next-rsc-server-reference";
22
export function foo() {}
33
import { ensureServerEntryExports } from "private-next-rsc-action-validate";
44
ensureServerEntryExports([
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/* __next_internal_client_entry_do_not_use__ foo auto */ const { createProxy } = require("private-next-rsc-mod-ref-proxy");
1+
const { createProxy } = require("private-next-rsc-mod-ref-proxy");
22
module.exports = createProxy("/app/item.js");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/* __next_internal_client_entry_do_not_use__ foo auto */ const { createProxy } = require("private-next-rsc-mod-ref-proxy");
1+
const { createProxy } = require("private-next-rsc-mod-ref-proxy");
22
module.exports = createProxy("/app/item.js");

crates/next-custom-transforms/tests/errors/server-actions/server-graph/2/output.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
/* __next_internal_action_entry_do_not_use__ {"00ac840dcaf5e8197cb02b7f3a43c119b7a770b272":"bar"} */ import { registerServerReference } from "private-next-rsc-server-reference";
2-
'use strict';
1+
import { registerServerReference } from "private-next-rsc-server-reference";
2+
/* __next_internal_action_entry_do_not_use__ {"00ac840dcaf5e8197cb02b7f3a43c119b7a770b272":"bar"} */ 'use strict';
33
export function bar() {}
44
import { ensureServerEntryExports } from "private-next-rsc-action-validate";
55
ensureServerEntryExports([
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/* __next_internal_client_entry_do_not_use__ foo auto */ const { createProxy } = require("private-next-rsc-mod-ref-proxy");
1+
const { createProxy } = require("private-next-rsc-mod-ref-proxy");
22
module.exports = createProxy("/app/item.js");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/* __next_internal_client_entry_do_not_use__ foo auto */ const { createProxy } = require("private-next-rsc-mod-ref-proxy");
1+
const { createProxy } = require("private-next-rsc-mod-ref-proxy");
22
module.exports = createProxy("/app/item.js");

crates/next-custom-transforms/tests/errors/server-actions/server-graph/6/output.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* __next_internal_action_entry_do_not_use__ {"00c18c215a6b7cdc64bf709f3a714ffdef1bf9651d":"default"} */ import { registerServerReference } from "private-next-rsc-server-reference";
1+
import { registerServerReference } from "private-next-rsc-server-reference";
22
export default $$RSC_SERVER_ACTION_0 = ()=>{};
33
var $$RSC_SERVER_ACTION_0;
44
Object["defineProperty"]($$RSC_SERVER_ACTION_0, "name", {

crates/next-custom-transforms/tests/errors/server-actions/server-graph/8/output.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/* __next_internal_action_entry_do_not_use__ {"006a88810ecce4a4e8b59d53b8327d7e98bbf251d7":"$$RSC_SERVER_ACTION_0"} */ import { registerServerReference } from "private-next-rsc-server-reference";
1+
import { registerServerReference } from "private-next-rsc-server-reference";
22
export const $$RSC_SERVER_ACTION_0 = async function foo() {
33
'use strict';
44
};
55
registerServerReference($$RSC_SERVER_ACTION_0, "006a88810ecce4a4e8b59d53b8327d7e98bbf251d7", null);
6-
const foo = $$RSC_SERVER_ACTION_0;
6+
/* __next_internal_action_entry_do_not_use__ {"006a88810ecce4a4e8b59d53b8327d7e98bbf251d7":"$$RSC_SERVER_ACTION_0"} */ const foo = $$RSC_SERVER_ACTION_0;
77
const bar = async ()=>{
88
const x = 1;
99
// prettier-ignore

0 commit comments

Comments
 (0)