@edgeone/opennextjs-pages 0.0.8 → 0.0.9

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.
@@ -100,8 +100,6 @@ var getHandlerFile = async (ctx) => {
100
100
  };
101
101
  if (ctx.relativeAppDir.length !== 0) {
102
102
  const template2 = await readFile(join(templatesDir, "handler-monorepo.tmpl.js"), "utf-8");
103
- console.log("ctx.lambdaWorkingDirectory", ctx.lambdaWorkingDirectory);
104
- console.log("ctx.nextServerHandler", ctx.nextServerHandler);
105
103
  templateVariables["{{cwd}}"] = posixJoin(ctx.lambdaWorkingDirectory);
106
104
  templateVariables["{{nextServerHandler}}"] = posixJoin(ctx.nextServerHandler);
107
105
  return applyTemplateVariables(template2, templateVariables);
package/dist/index.js CHANGED
@@ -41,7 +41,6 @@ var onBuild = async (options) => {
41
41
  ]);
42
42
  };
43
43
  var onPostBuild = async (options) => {
44
- console.log("onPostBuild");
45
44
  const ctx = new PluginContext(options);
46
45
  compileMiddleware(ctx);
47
46
  };
@@ -28,7 +28,7 @@ module.exports = __toCommonJS(tags_handler_exports);
28
28
 
29
29
  // package.json
30
30
  var name = "@edgeone/opennextjs-pages";
31
- var version = "0.0.8";
31
+ var version = "0.0.9";
32
32
 
33
33
  // src/run/handlers/tags-handler.cts
34
34
  var import_request_context = require("./request-context.cjs");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgeone/opennextjs-pages",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "type": "module",