Skip to content

Commit 88954f7

Browse files
chore(deps): update dependency @netlify/build to ^29.21.0 (#2282)
* chore(deps): update dependency @netlify/build to ^29.21.0 * chore: fixed type references --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nick Taylor <nick@nickyt.co>
1 parent 49e1974 commit 88954f7

File tree

15 files changed

+3688
-2354
lines changed

15 files changed

+3688
-2354
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@babel/preset-env": "^7.15.8",
5454
"@babel/preset-typescript": "^7.16.0",
5555
"@delucis/if-env": "^1.1.2",
56-
"@netlify/build": "^29.20.6",
56+
"@netlify/build": "^29.21.0",
5757
"@netlify/eslint-config-node": "^7.0.1",
5858
"@testing-library/cypress": "^9.0.0",
5959
"@types/fs-extra": "^9.0.13",

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"devDependencies": {
3939
"@delucis/if-env": "^1.1.2",
40-
"@netlify/build": "^29.20.6",
40+
"@netlify/build": "^29.21.0",
4141
"@types/fs-extra": "^9.0.13",
4242
"@types/jest": "^27.4.1",
4343
"@types/merge-stream": "^1.1.2",

packages/runtime/src/helpers/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NetlifyConfig } from '@netlify/build'
1+
import type { NetlifyConfig } from '@netlify/build/types'
22
import destr from 'destr'
33
import { readJSON, writeJSON } from 'fs-extra'
44
import type { Header } from 'next/dist/lib/load-custom-routes'

packages/runtime/src/helpers/dev.ts

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

3-
import type { OnPreBuild } from '@netlify/build'
3+
import type { OnPreBuild } from '@netlify/build/types'
44
import execa from 'execa'
55

66
import { writeDevEdgeFunction } from './edge'

packages/runtime/src/helpers/edge.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { promises as fs, existsSync } from 'fs'
22
import { resolve, join } from 'path'
33

4-
import type { NetlifyConfig, NetlifyPluginConstants } from '@netlify/build'
4+
import type { NetlifyConfig, NetlifyPluginConstants } from '@netlify/build/types'
55
import { greenBright } from 'chalk'
66
import destr from 'destr'
77
import { copy, copyFile, emptyDir, ensureDir, readJSON, writeJSON, writeJson } from 'fs-extra'

packages/runtime/src/helpers/files.ts

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

3-
import type { NetlifyConfig } from '@netlify/build'
3+
import type { NetlifyConfig } from '@netlify/build/types'
44
import { yellowBright } from 'chalk'
55
import { existsSync, readJson, move, copy, writeJson, ensureDir, readFileSync, remove } from 'fs-extra'
66
import globby from 'globby'

packages/runtime/src/helpers/functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NetlifyConfig, NetlifyPluginConstants } from '@netlify/build'
1+
import type { NetlifyConfig, NetlifyPluginConstants } from '@netlify/build/types'
22
import bridgeFile from '@vercel/node-bridge'
33
import chalk from 'chalk'
44
import destr from 'destr'

packages/runtime/src/helpers/redirects.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NetlifyConfig } from '@netlify/build'
1+
import type { NetlifyConfig } from '@netlify/build/types'
22
import { yellowBright } from 'chalk'
33
import destr from 'destr'
44
import { readJSON } from 'fs-extra'

packages/runtime/src/helpers/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NetlifyConfig } from '@netlify/build'
1+
import type { NetlifyConfig } from '@netlify/build/types'
22
import type { Header } from '@netlify/build/types/config/netlify_config'
33
import globby from 'globby'
44
import type { ExperimentalConfig } from 'next/dist/server/config-shared'

packages/runtime/src/helpers/verification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { existsSync, promises } from 'fs'
22
import path, { relative, join } from 'path'
33

4-
import type { NetlifyConfig, NetlifyPluginUtils } from '@netlify/build'
4+
import type { NetlifyConfig, NetlifyPluginUtils } from '@netlify/build/types'
55
import { yellowBright, greenBright, blueBright, reset } from 'chalk'
66
import { async as StreamZip } from 'node-stream-zip'
77
import { outdent } from 'outdent'

packages/runtime/src/index.ts

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

3-
import type { NetlifyPlugin, NetlifyPluginOptions } from '@netlify/build'
3+
import type { NetlifyPlugin, NetlifyPluginOptions } from '@netlify/build/types'
44
import { bold, redBright } from 'chalk'
55
import destr from 'destr'
66
import { existsSync, readFileSync } from 'fs-extra'

test/helpers/config.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NetlifyPluginOptions } from '@netlify/build'
1+
import type { NetlifyPluginOptions } from '@netlify/build/types'
22

33
import { generateCustomHeaders, NextConfig } from '../../packages/runtime/src/helpers/config'
44

test/helpers/verification.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NetlifyPluginOptions, NetlifyPluginUtils } from '@netlify/build'
1+
import type { NetlifyPluginOptions, NetlifyPluginUtils } from '@netlify/build/types'
22
import Chance from 'chance'
33
import { outdent } from 'outdent'
44

test/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import os from 'os'
22
import path, { resolve } from 'path'
33
import process from 'process'
44

5-
import type { NetlifyPluginOptions } from '@netlify/build'
5+
import type { NetlifyPluginOptions } from '@netlify/build/types'
66
import Chance from 'chance'
77
import { writeJSON, unlink, existsSync, readFileSync, ensureDir, readJson, pathExists, writeFile, move } from 'fs-extra'
88
import { join, relative } from 'pathe'

0 commit comments

Comments
 (0)