nitro-nightly 3.0.1-20251211-222202-e2f1ee7c → 3.0.1-20251212-103723-5f37156f

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.
@@ -27,7 +27,7 @@ var require_multipart_parser = /* @__PURE__ */ __commonJSMin(((exports) => {
27
27
  const F = {
28
28
  PART_BOUNDARY: f,
29
29
  LAST_BOUNDARY: f *= 2
30
- }, LF = 10, CR = 13, SPACE = 32, HYPHEN = 45, COLON = 58, A = 97, Z = 122, lower = c((R) => R | 32, "lower"), noop = c(() => {}, "noop"), g = class g$1 {
30
+ }, LF = 10, CR = 13, SPACE = 32, HYPHEN = 45, COLON = 58, A = 97, Z = 122, lower = c((R) => R | 32, "lower"), noop = c(() => {}, "noop"), g = class g {
31
31
  constructor(o) {
32
32
  this.index = 0, this.flags = 0, this.onHeaderEnd = noop, this.onHeaderField = noop, this.onHeadersEnd = noop, this.onHeaderValue = noop, this.onPartBegin = noop, this.onPartData = noop, this.onPartEnd = noop, this.boundaryChars = {}, o = `\r
33
33
  --` + o;
@@ -2150,7 +2150,7 @@ var require_lib = /* @__PURE__ */ __commonJSMin(((exports, module) => {
2150
2150
  function getRealpathBackend(fileSystem) {
2151
2151
  if (fileSystem._realpathBackend) return fileSystem._realpathBackend;
2152
2152
  }
2153
- var VirtualModulesPlugin$1 = class {
2153
+ var VirtualModulesPlugin = class {
2154
2154
  constructor(modules) {
2155
2155
  this._compiler = null;
2156
2156
  this._watcher = null;
@@ -2312,7 +2312,7 @@ var require_lib = /* @__PURE__ */ __commonJSMin(((exports, module) => {
2312
2312
  }
2313
2313
  }
2314
2314
  };
2315
- module.exports = VirtualModulesPlugin$1;
2315
+ module.exports = VirtualModulesPlugin;
2316
2316
  }));
2317
2317
 
2318
2318
  //#endregion
@@ -1,169 +1,139 @@
1
- // src/base.ts
1
+ import kleur from "kleur";
2
2
  var Colors = class {
3
- black(text) {
4
- return this.transform("black", text);
5
- }
6
- red(text) {
7
- return this.transform("red", text);
8
- }
9
- green(text) {
10
- return this.transform("green", text);
11
- }
12
- yellow(text) {
13
- return this.transform("yellow", text);
14
- }
15
- blue(text) {
16
- return this.transform("blue", text);
17
- }
18
- magenta(text) {
19
- return this.transform("magenta", text);
20
- }
21
- cyan(text) {
22
- return this.transform("cyan", text);
23
- }
24
- white(text) {
25
- return this.transform("white", text);
26
- }
27
- gray(text) {
28
- return this.transform("gray", text);
29
- }
30
- grey(text) {
31
- return this.transform("grey", text);
32
- }
33
- bgBlack(text) {
34
- return this.transform("bgBlack", text);
35
- }
36
- bgRed(text) {
37
- return this.transform("bgRed", text);
38
- }
39
- bgGreen(text) {
40
- return this.transform("bgGreen", text);
41
- }
42
- bgYellow(text) {
43
- return this.transform("bgYellow", text);
44
- }
45
- bgBlue(text) {
46
- return this.transform("bgBlue", text);
47
- }
48
- bgMagenta(text) {
49
- return this.transform("bgMagenta", text);
50
- }
51
- bgCyan(text) {
52
- return this.transform("bgCyan", text);
53
- }
54
- bgWhite(text) {
55
- return this.transform("bgWhite", text);
56
- }
57
- reset(text) {
58
- return this.transform("reset", text);
59
- }
60
- bold(text) {
61
- return this.transform("bold", text);
62
- }
63
- dim(text) {
64
- return this.transform("dim", text);
65
- }
66
- italic(text) {
67
- return this.transform("italic", text);
68
- }
69
- underline(text) {
70
- return this.transform("underline", text);
71
- }
72
- inverse(text) {
73
- return this.transform("inverse", text);
74
- }
75
- hidden(text) {
76
- return this.transform("hidden", text);
77
- }
78
- strikethrough(text) {
79
- return this.transform("strikethrough", text);
80
- }
3
+ black(text) {
4
+ return this.transform("black", text);
5
+ }
6
+ red(text) {
7
+ return this.transform("red", text);
8
+ }
9
+ green(text) {
10
+ return this.transform("green", text);
11
+ }
12
+ yellow(text) {
13
+ return this.transform("yellow", text);
14
+ }
15
+ blue(text) {
16
+ return this.transform("blue", text);
17
+ }
18
+ magenta(text) {
19
+ return this.transform("magenta", text);
20
+ }
21
+ cyan(text) {
22
+ return this.transform("cyan", text);
23
+ }
24
+ white(text) {
25
+ return this.transform("white", text);
26
+ }
27
+ gray(text) {
28
+ return this.transform("gray", text);
29
+ }
30
+ grey(text) {
31
+ return this.transform("grey", text);
32
+ }
33
+ bgBlack(text) {
34
+ return this.transform("bgBlack", text);
35
+ }
36
+ bgRed(text) {
37
+ return this.transform("bgRed", text);
38
+ }
39
+ bgGreen(text) {
40
+ return this.transform("bgGreen", text);
41
+ }
42
+ bgYellow(text) {
43
+ return this.transform("bgYellow", text);
44
+ }
45
+ bgBlue(text) {
46
+ return this.transform("bgBlue", text);
47
+ }
48
+ bgMagenta(text) {
49
+ return this.transform("bgMagenta", text);
50
+ }
51
+ bgCyan(text) {
52
+ return this.transform("bgCyan", text);
53
+ }
54
+ bgWhite(text) {
55
+ return this.transform("bgWhite", text);
56
+ }
57
+ reset(text) {
58
+ return this.transform("reset", text);
59
+ }
60
+ bold(text) {
61
+ return this.transform("bold", text);
62
+ }
63
+ dim(text) {
64
+ return this.transform("dim", text);
65
+ }
66
+ italic(text) {
67
+ return this.transform("italic", text);
68
+ }
69
+ underline(text) {
70
+ return this.transform("underline", text);
71
+ }
72
+ inverse(text) {
73
+ return this.transform("inverse", text);
74
+ }
75
+ hidden(text) {
76
+ return this.transform("hidden", text);
77
+ }
78
+ strikethrough(text) {
79
+ return this.transform("strikethrough", text);
80
+ }
81
81
  };
82
-
83
- // src/raw.ts
84
82
  var Raw = class extends Colors {
85
- #transformations = [];
86
- #dispose(value, callback) {
87
- callback();
88
- return value;
89
- }
90
- transform(transformation, text) {
91
- this.#transformations.push(transformation);
92
- if (text !== void 0) {
93
- const transformations = this.#transformations.concat([text]).join("(");
94
- const closingWrapping = new Array(this.#transformations.length + 1).join(")");
95
- return this.#dispose(`${transformations}${closingWrapping}`, () => {
96
- this.#transformations = [];
97
- });
98
- }
99
- return this;
100
- }
83
+ #transformations = [];
84
+ #dispose(value, callback) {
85
+ callback();
86
+ return value;
87
+ }
88
+ transform(transformation, text) {
89
+ this.#transformations.push(transformation);
90
+ if (text !== void 0) {
91
+ const transformations = this.#transformations.concat([text]).join("(");
92
+ const closingWrapping = new Array(this.#transformations.length + 1).join(")");
93
+ return this.#dispose(`${transformations}${closingWrapping}`, () => {
94
+ this.#transformations = [];
95
+ });
96
+ }
97
+ return this;
98
+ }
101
99
  };
102
-
103
- // src/kleur.ts
104
- import kleur from "kleur";
105
100
  var Kleur = class extends Colors {
106
- #chain;
107
- constructor() {
108
- super();
109
- kleur.enabled = true;
110
- }
111
- #dispose(value, callback) {
112
- callback();
113
- return value;
114
- }
115
- transform(transformation, text) {
116
- if (text !== void 0) {
117
- if (this.#chain) {
118
- return this.#dispose(this.#chain[transformation](text), () => {
119
- this.#chain = void 0;
120
- });
121
- }
122
- return kleur[transformation](text);
123
- }
124
- if (this.#chain) {
125
- this.#chain = this.#chain[transformation]();
126
- } else {
127
- this.#chain = kleur[transformation]();
128
- }
129
- return this;
130
- }
101
+ #chain;
102
+ constructor() {
103
+ super();
104
+ kleur.enabled = true;
105
+ }
106
+ #dispose(value, callback) {
107
+ callback();
108
+ return value;
109
+ }
110
+ transform(transformation, text) {
111
+ if (text !== void 0) {
112
+ if (this.#chain) return this.#dispose(this.#chain[transformation](text), () => {
113
+ this.#chain = void 0;
114
+ });
115
+ return kleur[transformation](text);
116
+ }
117
+ if (this.#chain) this.#chain = this.#chain[transformation]();
118
+ else this.#chain = kleur[transformation]();
119
+ return this;
120
+ }
131
121
  };
132
-
133
- // src/silent.ts
134
122
  var Silent = class extends Colors {
135
- transform(_, text) {
136
- if (text !== void 0) {
137
- return String(text);
138
- }
139
- return this;
140
- }
141
- };
142
-
143
- // index.ts
144
- var useColors = {
145
- /**
146
- * Kleur implementation
147
- */
148
- ansi() {
149
- return new Kleur();
150
- },
151
- /**
152
- * Silent implementation. Returns the string
153
- * as it is
154
- */
155
- silent() {
156
- return new Silent();
157
- },
158
- /**
159
- * Raw implementation. Wraps string with applied
160
- * transformations as plain text.
161
- */
162
- raw() {
163
- return new Raw();
164
- }
123
+ transform(_, text) {
124
+ if (text !== void 0) return String(text);
125
+ return this;
126
+ }
165
127
  };
166
- var index_default = useColors;
167
- export {
168
- index_default as default
128
+ var colors_default = {
129
+ ansi() {
130
+ return new Kleur();
131
+ },
132
+ silent() {
133
+ return new Silent();
134
+ },
135
+ raw() {
136
+ return new Raw();
137
+ }
169
138
  };
139
+ export { colors_default as default };
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poppinss/colors",
3
- "version": "4.1.5",
3
+ "version": "4.1.6",
4
4
  "description": "A wrapper on top of kleur with ability to write test against the color functions",
5
5
  "main": "build/index.js",
6
6
  "type": "module",
@@ -20,7 +20,7 @@
20
20
  "format": "prettier --write .",
21
21
  "typecheck": "tsc --noEmit",
22
22
  "precompile": "npm run lint && npm run clean",
23
- "compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
23
+ "compile": "tsdown && tsc --emitDeclarationOnly --declaration",
24
24
  "clean": "del-cli build",
25
25
  "build": "npm run compile",
26
26
  "version": "npm run build",
@@ -29,22 +29,21 @@
29
29
  "quick:test": "node --import=@poppinss/ts-exec --enable-source-maps bin/test.ts"
30
30
  },
31
31
  "devDependencies": {
32
- "@adonisjs/eslint-config": "^3.0.0-next.0",
32
+ "@adonisjs/eslint-config": "^3.0.0-next.5",
33
33
  "@adonisjs/prettier-config": "^1.4.5",
34
- "@adonisjs/tsconfig": "^2.0.0-next.0",
35
- "@japa/assert": "^4.0.1",
36
- "@japa/runner": "^4.2.0",
37
- "@poppinss/ts-exec": "^1.4.0",
38
- "@release-it/conventional-changelog": "^10.0.1",
39
- "@swc/core": "^1.12.9",
40
- "@types/node": "^24.0.10",
34
+ "@adonisjs/tsconfig": "^2.0.0-next.3",
35
+ "@japa/assert": "^4.1.1",
36
+ "@japa/runner": "^4.4.0",
37
+ "@poppinss/ts-exec": "^1.4.1",
38
+ "@release-it/conventional-changelog": "^10.0.3",
39
+ "@types/node": "^25.0.1",
41
40
  "c8": "^10.1.3",
42
- "del-cli": "^6.0.0",
43
- "eslint": "^9.30.1",
44
- "prettier": "^3.6.2",
45
- "release-it": "^19.0.3",
46
- "tsup": "^8.5.0",
47
- "typescript": "^5.8.3"
41
+ "del-cli": "^7.0.0",
42
+ "eslint": "^9.39.1",
43
+ "prettier": "^3.7.4",
44
+ "release-it": "^19.1.0",
45
+ "tsdown": "^0.17.3",
46
+ "typescript": "^5.9.3"
48
47
  },
49
48
  "dependencies": {
50
49
  "kleur": "^4.1.5"
@@ -67,7 +66,7 @@
67
66
  "access": "public",
68
67
  "provenance": true
69
68
  },
70
- "tsup": {
69
+ "tsdown": {
71
70
  "entry": [
72
71
  "./index.ts",
73
72
  "./src/types.ts"
@@ -75,8 +74,11 @@
75
74
  "outDir": "./build",
76
75
  "clean": true,
77
76
  "format": "esm",
77
+ "minify": "dce-only",
78
+ "fixedExtension": false,
78
79
  "dts": false,
79
- "sourcemap": false,
80
+ "treeshake": false,
81
+ "sourcemaps": false,
80
82
  "target": "esnext"
81
83
  },
82
84
  "release-it": {
@@ -1,63 +1,44 @@
1
- // src/exception.ts
2
- import { format } from "util";
1
+ import { format } from "node:util";
3
2
  var Exception = class extends Error {
4
- /**
5
- * Name of the class that raised the exception.
6
- */
7
- name;
8
- /**
9
- * A status code for the error. Usually helpful when converting errors
10
- * to HTTP responses.
11
- */
12
- status;
13
- constructor(message, options) {
14
- super(message, options);
15
- const ErrorConstructor = this.constructor;
16
- this.name = ErrorConstructor.name;
17
- this.message = message || ErrorConstructor.message || "";
18
- this.status = options?.status || ErrorConstructor.status || 500;
19
- const code = options?.code || ErrorConstructor.code;
20
- if (code !== void 0) {
21
- this.code = code;
22
- }
23
- const help = ErrorConstructor.help;
24
- if (help !== void 0) {
25
- this.help = help;
26
- }
27
- Error.captureStackTrace(this, ErrorConstructor);
28
- }
29
- get [Symbol.toStringTag]() {
30
- return this.constructor.name;
31
- }
32
- toString() {
33
- if (this.code) {
34
- return `${this.name} [${this.code}]: ${this.message}`;
35
- }
36
- return `${this.name}: ${this.message}`;
37
- }
3
+ name;
4
+ status;
5
+ constructor(message, options) {
6
+ super(message, options);
7
+ const ErrorConstructor = this.constructor;
8
+ this.name = ErrorConstructor.name;
9
+ this.message = message || ErrorConstructor.message || "";
10
+ this.status = options?.status || ErrorConstructor.status || 500;
11
+ const code = options?.code || ErrorConstructor.code;
12
+ if (code !== void 0) this.code = code;
13
+ const help = ErrorConstructor.help;
14
+ if (help !== void 0) this.help = help;
15
+ Error.captureStackTrace(this, ErrorConstructor);
16
+ }
17
+ get [Symbol.toStringTag]() {
18
+ return this.constructor.name;
19
+ }
20
+ toString() {
21
+ if (this.code) return `${this.name} [${this.code}]: ${this.message}`;
22
+ return `${this.name}: ${this.message}`;
23
+ }
38
24
  };
39
25
  var InvalidArgumentsException = class extends Exception {
40
- static code = "E_INVALID_ARGUMENTS_EXCEPTION";
41
- static status = 500;
26
+ static code = "E_INVALID_ARGUMENTS_EXCEPTION";
27
+ static status = 500;
42
28
  };
43
29
  var RuntimeException = class extends Exception {
44
- static code = "E_RUNTIME_EXCEPTION";
45
- static status = 500;
30
+ static code = "E_RUNTIME_EXCEPTION";
31
+ static status = 500;
46
32
  };
47
33
  function createError(message, code, status) {
48
- return class extends Exception {
49
- static message = message;
50
- static code = code;
51
- static status = status;
52
- constructor(args, options) {
53
- super(format(message, ...args || []), options);
54
- this.name = "Exception";
55
- }
56
- };
34
+ return class extends Exception {
35
+ static message = message;
36
+ static code = code;
37
+ static status = status;
38
+ constructor(args, options) {
39
+ super(format(message, ...args || []), options);
40
+ this.name = "Exception";
41
+ }
42
+ };
57
43
  }
58
- export {
59
- Exception,
60
- InvalidArgumentsException,
61
- RuntimeException,
62
- createError
63
- };
44
+ export { Exception, InvalidArgumentsException, RuntimeException, createError };
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@poppinss/exception",
3
3
  "description": "Utility to create custom exceptions",
4
- "version": "1.2.2",
4
+ "version": "1.2.3",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "build",
@@ -19,7 +19,7 @@
19
19
  "format": "prettier --write .",
20
20
  "typecheck": "tsc --noEmit",
21
21
  "precompile": "npm run lint",
22
- "compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
22
+ "compile": "tsdown && tsc --emitDeclarationOnly --declaration",
23
23
  "build": "npm run compile",
24
24
  "version": "npm run build",
25
25
  "prepublishOnly": "npm run build",
@@ -27,21 +27,21 @@
27
27
  "quick:test": "node --import=@poppinss/ts-exec --enable-source-maps bin/test.ts"
28
28
  },
29
29
  "devDependencies": {
30
- "@adonisjs/eslint-config": "^3.0.0-next.0",
30
+ "@adonisjs/eslint-config": "^3.0.0-next.5",
31
31
  "@adonisjs/prettier-config": "^1.4.5",
32
- "@adonisjs/tsconfig": "^2.0.0-next.0",
33
- "@japa/expect": "^3.0.4",
32
+ "@adonisjs/tsconfig": "^2.0.0-next.3",
33
+ "@japa/expect": "^3.0.6",
34
34
  "@japa/expect-type": "^2.0.3",
35
- "@japa/runner": "^4.2.0",
36
- "@poppinss/ts-exec": "^1.4.0",
37
- "@release-it/conventional-changelog": "^10.0.1",
38
- "@types/node": "^24.0.10",
35
+ "@japa/runner": "^4.4.0",
36
+ "@poppinss/ts-exec": "^1.4.1",
37
+ "@release-it/conventional-changelog": "^10.0.3",
38
+ "@types/node": "^25.0.1",
39
39
  "c8": "^10.1.3",
40
- "eslint": "^9.30.1",
41
- "prettier": "^3.6.2",
42
- "release-it": "^19.0.3",
43
- "tsup": "^8.5.0",
44
- "typescript": "^5.8.3"
40
+ "eslint": "^9.39.1",
41
+ "prettier": "^3.7.4",
42
+ "release-it": "^19.1.0",
43
+ "tsdown": "^0.17.3",
44
+ "typescript": "^5.9.3"
45
45
  },
46
46
  "homepage": "https://github.com/poppinss/exception#readme",
47
47
  "repository": {
@@ -58,15 +58,18 @@
58
58
  "access": "public",
59
59
  "provenance": true
60
60
  },
61
- "tsup": {
61
+ "tsdown": {
62
62
  "entry": [
63
63
  "index.ts"
64
64
  ],
65
65
  "outDir": "./build",
66
66
  "clean": true,
67
67
  "format": "esm",
68
+ "minify": "dce-only",
69
+ "fixedExtension": false,
68
70
  "dts": false,
69
- "sourcemap": false,
71
+ "treeshake": false,
72
+ "sourcemaps": false,
70
73
  "target": "esnext"
71
74
  },
72
75
  "release-it": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nitro-nightly",
3
- "version": "3.0.1-20251211-222202-e2f1ee7c",
3
+ "version": "3.0.1-20251212-103723-5f37156f",
4
4
  "description": "Build and Deploy Universal JavaScript Servers",
5
5
  "homepage": "https://nitro.build",
6
6
  "repository": "nitrojs/nitro",
@@ -70,7 +70,7 @@
70
70
  "ohash": "^2.0.11",
71
71
  "oxc-minify": "^0.102.0",
72
72
  "oxc-transform": "^0.102.0",
73
- "srvx": "^0.9.7",
73
+ "srvx": "^0.9.8",
74
74
  "undici": "^7.16.0",
75
75
  "unenv": "^2.0.0-rc.24",
76
76
  "unstorage": "^2.0.0-alpha.4"
@@ -95,7 +95,7 @@
95
95
  "@types/etag": "^1.8.4",
96
96
  "@types/fs-extra": "^11.0.4",
97
97
  "@types/http-proxy": "^1.17.17",
98
- "@types/node": "^24.10.2",
98
+ "@types/node": "^25.0.1",
99
99
  "@types/node-fetch": "^2.6.13",
100
100
  "@types/semver": "^7.7.1",
101
101
  "@types/xml2js": "^0.4.14",
@@ -133,7 +133,7 @@
133
133
  "mlly": "^1.8.0",
134
134
  "nf3": "^0.3.1",
135
135
  "nypm": "^0.6.2",
136
- "obuild": "^0.4.7",
136
+ "obuild": "^0.4.8",
137
137
  "pathe": "^2.0.3",
138
138
  "perfect-debounce": "^2.0.0",
139
139
  "pkg-types": "^2.3.0",
@@ -141,7 +141,7 @@
141
141
  "pretty-bytes": "^7.1.0",
142
142
  "react": "^19.2.0",
143
143
  "rendu": "^0.0.7",
144
- "rolldown": "1.0.0-beta.53",
144
+ "rolldown": "1.0.0-beta.54",
145
145
  "rolldown-vite": "^7.2.10",
146
146
  "rollup": "^4.53.3",
147
147
  "rou3": "^0.7.11",