nitropack-nightly 2.11.0-20250221-163722.f7e0e885 → 2.11.0-20250224-142059.8ccbde5f

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.
@@ -1374,9 +1374,8 @@ declare module "nitropack/types" {
1374
1374
  ]
1375
1375
  });
1376
1376
  for (const alias in tsConfig.compilerOptions.paths) {
1377
- const paths = tsConfig.compilerOptions.paths[alias];
1378
- tsConfig.compilerOptions.paths[alias] = await Promise.all(
1379
- paths.map(async (path) => {
1377
+ const paths = await Promise.all(
1378
+ tsConfig.compilerOptions.paths[alias].map(async (path) => {
1380
1379
  if (!isAbsolute(path)) {
1381
1380
  return path;
1382
1381
  }
@@ -1390,6 +1389,7 @@ declare module "nitropack/types" {
1390
1389
  );
1391
1390
  })
1392
1391
  );
1392
+ tsConfig.compilerOptions.paths[alias] = [...new Set(paths)];
1393
1393
  }
1394
1394
  tsConfig.include = [
1395
1395
  ...new Set(
@@ -1,3 +1,3 @@
1
- const version = "2.11.0-20250221-163722.f7e0e885";
1
+ const version = "2.11.0-20250224-142059.8ccbde5f";
2
2
 
3
3
  export { version };
@@ -1,3 +1,3 @@
1
- const version = "2.11.0-20250221-163722.f7e0e885";
1
+ const version = "2.11.0-20250224-142059.8ccbde5f";
2
2
 
3
3
  export { version };
@@ -1,3 +1,3 @@
1
- const version = "2.11.0-20250221-163722.f7e0e885";
1
+ const version = "2.11.0-20250224-142059.8ccbde5f";
2
2
 
3
3
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nitropack-nightly",
3
- "version": "2.11.0-20250221-163722.f7e0e885",
3
+ "version": "2.11.0-20250224-142059.8ccbde5f",
4
4
  "description": "Build and Deploy Universal JavaScript Servers",
5
5
  "repository": "nitrojs/nitro",
6
6
  "license": "MIT",