@powerlines/plugin-nitro 0.1.525 → 0.1.527

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.
@@ -19,11 +19,10 @@ var __copyProps = (to, from, except, desc) => {
19
19
  }
20
20
  return to;
21
21
  };
22
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
22
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule || !__hasOwnProp.call(mod, "default") ? __defProp(target, "default", {
23
23
  value: mod,
24
24
  enumerable: true
25
25
  }) : target, mod));
26
26
 
27
27
  //#endregion
28
-
29
28
  exports.__toESM = __toESM;
package/dist/index.cjs CHANGED
@@ -46,9 +46,7 @@ const plugin = (options = {}) => {
46
46
  case null:
47
47
  this.config.nitro.logLevel = 0;
48
48
  break;
49
- default:
50
- this.config.nitro.logLevel = 2;
51
- break;
49
+ default: this.config.nitro.logLevel = 2;
52
50
  }
53
51
  }
54
52
  },
package/dist/index.mjs CHANGED
@@ -43,9 +43,7 @@ const plugin = (options = {}) => {
43
43
  case null:
44
44
  this.config.nitro.logLevel = 0;
45
45
  break;
46
- default:
47
- this.config.nitro.logLevel = 2;
48
- break;
46
+ default: this.config.nitro.logLevel = 2;
49
47
  }
50
48
  }
51
49
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-nitro",
3
- "version": "0.1.525",
3
+ "version": "0.1.527",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin for creating a server application that runs on Nitro.",
6
6
  "repository": {
@@ -93,15 +93,15 @@
93
93
  "@stryke/path": "^0.29.25",
94
94
  "defu": "^6.1.7",
95
95
  "nitro": "3.0.260429-beta",
96
- "powerlines": "0.47.172"
96
+ "powerlines": "^0.47.174"
97
97
  },
98
98
  "devDependencies": {
99
- "@powerlines/plugin-plugin": "0.12.584",
99
+ "@powerlines/plugin-plugin": "^0.12.586",
100
100
  "@types/node": "^25.9.5"
101
101
  },
102
102
  "publishConfig": { "access": "public" },
103
103
  "main": "./dist/index.cjs",
104
104
  "module": "./dist/index.mjs",
105
105
  "types": "./dist/index.d.cts",
106
- "gitHead": "29ad24a34e6d1502e131efb9feeaea4854224169"
106
+ "gitHead": "1eb8250f091012d9dfc0faa9fc57c3dbb914dc97"
107
107
  }