Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): migrate to node-fetch-native #8157

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/renovate.json5
Expand Up @@ -27,7 +27,6 @@
"dotenv-expand", // `dotenv-expand:6.0.0+` has breaking changes (#6858)

// ESM Only => https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c#how-can-i-move-my-commonjs-project-to-esm
"node-fetch",
"periscopic",
"strip-ansi"
]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -68,7 +68,7 @@
"kill-port": "^1.6.1",
"lint-staged": "^12.4.1",
"minimist": "^1.2.6",
"node-fetch": "^2.6.7",
"node-fetch-native": "^0.1.3",
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
"playwright-chromium": "^1.21.1",
Expand Down
@@ -1,5 +1,5 @@
import { port } from './serve'
import fetch from 'node-fetch'
import fetch from 'node-fetch-native'
import { page, untilUpdated } from '~utils'
import { platform } from 'os'

Expand Down
2 changes: 1 addition & 1 deletion playground/ssr-html/__tests__/ssr-html.spec.ts
@@ -1,4 +1,4 @@
import fetch from 'node-fetch'
import fetch from 'node-fetch-native'
import { port } from './serve'
import { page } from '~utils'

Expand Down
2 changes: 1 addition & 1 deletion playground/ssr-pug/__tests__/ssr-pug.spec.ts
@@ -1,4 +1,4 @@
import fetch from 'node-fetch'
import fetch from 'node-fetch-native'
import { port } from './serve'
import { page } from '~utils'

Expand Down
2 changes: 1 addition & 1 deletion playground/ssr-react/__tests__/ssr-react.spec.ts
@@ -1,4 +1,4 @@
import fetch from 'node-fetch'
import fetch from 'node-fetch-native'
import { port } from './serve'
import { browserLogs, editFile, page, untilUpdated } from '~utils'

Expand Down
2 changes: 1 addition & 1 deletion playground/ssr-vue/__tests__/ssr-vue.spec.ts
@@ -1,5 +1,5 @@
import { resolve } from 'path'
import fetch from 'node-fetch'
import fetch from 'node-fetch-native'
import { port } from './serve'
import {
browserLogs,
Expand Down
12 changes: 10 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.