@hypernym/bundler 0.30.0 → 0.30.1

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.
package/dist/bin/index.js CHANGED
@@ -9,7 +9,7 @@ import { build as build$1 } from "../build/index.js";
9
9
 
10
10
  //#region src/bin/meta.ts
11
11
  const name = `Hyperbundler`;
12
- const version = `0.30.0`;
12
+ const version = `0.30.1`;
13
13
 
14
14
  //#endregion
15
15
  //#region src/utils/logger.ts
@@ -146,13 +146,12 @@ async function createConfigLoader(args) {
146
146
  else return logger.exit(warnMessage);
147
147
  }
148
148
  const configName = "bundler.config";
149
- const configExts = [
149
+ for (const ext of [
150
150
  ".ts",
151
151
  ".mts",
152
152
  ".mjs",
153
153
  ".js"
154
- ];
155
- for (const ext of configExts) {
154
+ ]) {
156
155
  const path = resolve(cwdir, `${configName}${ext}`);
157
156
  if (await exists(path)) return await loadConfig(path, defaults);
158
157
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypernym/bundler",
3
- "version": "0.30.0",
3
+ "version": "0.30.1",
4
4
  "author": "Hypernym Studio",
5
5
  "description": "ESM & TS module bundler.",
6
6
  "license": "MIT",
@@ -58,15 +58,15 @@
58
58
  "@hypernym/args": "^0.3.3",
59
59
  "@hypernym/colors": "^1.0.5",
60
60
  "@hypernym/utils": "^3.4.5",
61
- "rolldown": "^1.0.0-beta.37",
62
- "rolldown-plugin-dts": "^0.16.5"
61
+ "rolldown": "^1.0.0-beta.40",
62
+ "rolldown-plugin-dts": "^0.16.9"
63
63
  },
64
64
  "devDependencies": {
65
- "@hypernym/eslint-config": "^3.6.3",
66
- "@hypernym/prettier-config": "^3.2.6",
65
+ "@hypernym/eslint-config": "^3.6.4",
66
+ "@hypernym/prettier-config": "^3.2.7",
67
67
  "@hypernym/tsconfig": "^2.6.2",
68
- "@types/node": "^24.4.0",
69
- "eslint": "^9.35.0",
68
+ "@types/node": "^24.5.2",
69
+ "eslint": "^9.36.0",
70
70
  "prettier": "^3.6.2",
71
71
  "typescript": "^5.9.2"
72
72
  },