Skip to content

Commit

Permalink
fix(misc): update test snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysoo committed Jun 26, 2024
1 parent 62db639 commit 83a1026
Show file tree
Hide file tree
Showing 3 changed files with 170 additions and 0 deletions.
86 changes: 86 additions & 0 deletions packages/next/src/plugins/__snapshots__/plugin.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,21 @@ exports[`@nx/next/plugin integrated projects should create nodes 1`] = `
],
},
],
"metadata": {
"description": "Runs Next.js build",
"help": {
"command": "npx next build --help",
"example": {
"args": [
"--profile",
"--experimental-turbo",
],
},
},
"technologies": [
"nextjs",
],
},
"options": {
"cwd": "my-app",
"tty": false,
Expand All @@ -32,6 +47,20 @@ exports[`@nx/next/plugin integrated projects should create nodes 1`] = `
},
"my-serve": {
"command": "next dev",
"metadata": {
"description": "Starts Next.js dev server",
"help": {
"command": "npx next dev --help",
"example": {
"options": {
"port": 3000,
},
},
},
"technologies": [
"nextjs",
],
},
"options": {
"cwd": "my-app",
},
Expand All @@ -50,6 +79,20 @@ exports[`@nx/next/plugin integrated projects should create nodes 1`] = `
"dependsOn": [
"my-build",
],
"metadata": {
"description": "Starts Next.js production server",
"help": {
"command": "npx next start --help",
"example": {
"options": {
"port": 3000,
},
},
},
"technologies": [
"nextjs",
],
},
"options": {
"cwd": "my-app",
},
Expand Down Expand Up @@ -81,6 +124,21 @@ exports[`@nx/next/plugin root projects should create nodes 1`] = `
],
},
],
"metadata": {
"description": "Runs Next.js build",
"help": {
"command": "npx next build --help",
"example": {
"args": [
"--profile",
"--experimental-turbo",
],
},
},
"technologies": [
"nextjs",
],
},
"options": {
"cwd": ".",
"tty": false,
Expand All @@ -92,6 +150,20 @@ exports[`@nx/next/plugin root projects should create nodes 1`] = `
},
"dev": {
"command": "next dev",
"metadata": {
"description": "Starts Next.js dev server",
"help": {
"command": "npx next dev --help",
"example": {
"options": {
"port": 3000,
},
},
},
"technologies": [
"nextjs",
],
},
"options": {
"cwd": ".",
},
Expand All @@ -110,6 +182,20 @@ exports[`@nx/next/plugin root projects should create nodes 1`] = `
"dependsOn": [
"build",
],
"metadata": {
"description": "Starts Next.js production server",
"help": {
"command": "npx next start --help",
"example": {
"options": {
"port": 3000,
},
},
},
"technologies": [
"nextjs",
],
},
"options": {
"cwd": ".",
},
Expand Down
56 changes: 56 additions & 0 deletions packages/remix/src/plugins/__snapshots__/plugin.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ exports[`@nx/remix/plugin non-root project should create nodes 1`] = `
],
},
],
"metadata": {
"description": "Runs Remix build",
"help": {
"command": "npx remix --help",
"example": {
"options": {
"sourcemap": true,
},
},
},
"technologies": [
"remix",
],
},
"options": {
"cwd": "my-app",
},
Expand All @@ -31,6 +45,20 @@ exports[`@nx/remix/plugin non-root project should create nodes 1`] = `
},
"dev": {
"command": "remix dev --manual",
"metadata": {
"description": "Starts Remix dev server",
"help": {
"command": "npx remix --help",
"example": {
"options": {
"port": 3000,
},
},
},
"technologies": [
"remix",
],
},
"options": {
"cwd": "my-app",
},
Expand Down Expand Up @@ -96,6 +124,20 @@ exports[`@nx/remix/plugin root project should create nodes 1`] = `
],
},
],
"metadata": {
"description": "Runs Remix build",
"help": {
"command": "npx remix --help",
"example": {
"options": {
"sourcemap": true,
},
},
},
"technologies": [
"remix",
],
},
"options": {
"cwd": ".",
},
Expand All @@ -106,6 +148,20 @@ exports[`@nx/remix/plugin root project should create nodes 1`] = `
},
"dev": {
"command": "remix dev --manual",
"metadata": {
"description": "Starts Remix dev server",
"help": {
"command": "npx remix --help",
"example": {
"options": {
"port": 3000,
},
},
},
"technologies": [
"remix",
],
},
"options": {
"cwd": ".",
},
Expand Down
28 changes: 28 additions & 0 deletions packages/rollup/src/plugins/__snapshots__/plugin.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ exports[`@nx/rollup/plugin non-root project should create nodes 1`] = `
],
},
],
"metadata": {
"description": "Runs Rollup build",
"help": {
"command": "npx rollup --help",
"example": {
"options": {
"environment": "CUSTOM_ENV_VAR:foo",
},
},
},
"technologies": [
"rollup",
],
},
"options": {
"cwd": "mylib",
},
Expand Down Expand Up @@ -56,6 +70,20 @@ exports[`@nx/rollup/plugin root project should create nodes 1`] = `
],
},
],
"metadata": {
"description": "Runs Rollup build",
"help": {
"command": "npx rollup --help",
"example": {
"options": {
"environment": "CUSTOM_ENV_VAR:foo",
},
},
},
"technologies": [
"rollup",
],
},
"options": {
"cwd": ".",
},
Expand Down

0 comments on commit 83a1026

Please sign in to comment.