Skip to content

Commit ad5b8b2

Browse files
chore: cpy-file was renamed to copy-file (#6325)
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent 2f1e255 commit ad5b8b2

File tree

5 files changed

+9
-74
lines changed

5 files changed

+9
-74
lines changed

package-lock.json

Lines changed: 5 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/zip-it-and-ship-it/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"@vercel/nft": "0.27.7",
4949
"archiver": "^7.0.0",
5050
"common-path-prefix": "^3.0.0",
51-
"cp-file": "^11.0.0",
51+
"copy-file": "^11.0.0",
5252
"es-module-lexer": "^1.0.0",
5353
"esbuild": "0.25.4",
5454
"execa": "^7.0.0",

packages/zip-it-and-ship-it/src/runtimes/go/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { Stats } from 'fs'
22
import { basename, dirname, extname, join } from 'path'
33

4-
import { copyFile } from 'cp-file'
4+
import { copyFile } from 'copy-file'
55

66
import { SourceFile } from '../../function.js'
77
import type { RuntimeCache } from '../../utils/cache.js'

packages/zip-it-and-ship-it/src/runtimes/node/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { extname, join } from 'path'
22

3-
import { copyFile } from 'cp-file'
3+
import { copyFile } from 'copy-file'
44

55
import { INVOCATION_MODE } from '../../function.js'
66
import { Priority } from '../../priority.js'

packages/zip-it-and-ship-it/src/runtimes/node/utils/zip.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import os from 'os'
55
import { basename, dirname, extname, join } from 'path'
66

77
import { getPath as getV2APIPath } from '@netlify/serverless-functions-api'
8-
import { copyFile } from 'cp-file'
8+
import { copyFile } from 'copy-file'
99
import pMap from 'p-map'
1010

1111
import {

0 commit comments

Comments
 (0)