@netlify/build 27.15.4 → 27.15.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -10,7 +10,9 @@ export const logRuntime = (logs, pluginOptions) => {
|
|
|
10
10
|
|
|
11
11
|
// Once we have more runtimes, this hardcoded check should be removed
|
|
12
12
|
if (runtimes.length > 1) {
|
|
13
|
-
|
|
13
|
+
const [nextRuntime] = runtimes
|
|
14
|
+
|
|
15
|
+
logSubHeader(logs, `Using Next.js Runtime - v${nextRuntime.pluginPackageJson.version}`)
|
|
14
16
|
}
|
|
15
17
|
}
|
|
16
18
|
|