@netlify/plugin-nextjs 5.11.4 → 5.11.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.
@@ -84,7 +84,13 @@ var copyNextServerCode = async (ctx) => {
84
84
  const nextFolder = toPosixPath(ctx.distDir) === toPosixPath(ctx.buildConfig.distDir) ? ctx.distDir : ctx.nextDistDir;
85
85
  const destDir = join(ctx.serverHandlerDir, nextFolder);
86
86
  const paths = await (0, import_fast_glob.default)(
87
- [`*`, `server/*`, `server/chunks/*`, `server/edge-chunks/*`, `server/+(app|pages)/**/*.js`],
87
+ [
88
+ `*`,
89
+ `server/*`,
90
+ `server/chunks/**/*`,
91
+ `server/edge-chunks/**/*`,
92
+ `server/+(app|pages)/**/*.js`
93
+ ],
88
94
  {
89
95
  cwd: srcDir,
90
96
  extglob: true
@@ -29,8 +29,8 @@ module.exports = __toCommonJS(tags_handler_exports);
29
29
 
30
30
  // node_modules/@netlify/functions/dist/main.js
31
31
  var import_process = require("process");
32
- var import_node_stream = require("node:stream");
33
- var import_node_util = require("node:util");
32
+ var import_stream = require("stream");
33
+ var import_util = require("util");
34
34
  var purgeCache = async (options = {}) => {
35
35
  if (globalThis.fetch === void 0) {
36
36
  throw new Error(
@@ -82,11 +82,11 @@ var purgeCache = async (options = {}) => {
82
82
  throw new Error(`Cache purge API call returned an unexpected status code: ${response.status}`);
83
83
  }
84
84
  };
85
- var pipeline = (0, import_node_util.promisify)(import_node_stream.pipeline);
85
+ var pipeline = (0, import_util.promisify)(import_stream.pipeline);
86
86
 
87
87
  // package.json
88
88
  var name = "@netlify/plugin-nextjs";
89
- var version = "5.11.4";
89
+ var version = "5.11.5";
90
90
 
91
91
  // src/run/handlers/tags-handler.cts
92
92
  var import_storage = require("../storage/storage.cjs");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netlify/plugin-nextjs",
3
- "version": "5.11.4",
3
+ "version": "5.11.5",
4
4
  "description": "Run Next.js seamlessly on Netlify",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",