@hypernym/bundler 0.14.1 → 0.14.3
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.mjs +3 -5
- package/package.json +8 -9
package/dist/bin/index.mjs
CHANGED
|
@@ -25,7 +25,7 @@ const externals = [
|
|
|
25
25
|
];
|
|
26
26
|
|
|
27
27
|
const name = `Hyperbundler`;
|
|
28
|
-
const version = `0.14.
|
|
28
|
+
const version = `0.14.3`;
|
|
29
29
|
|
|
30
30
|
const cl = console.log;
|
|
31
31
|
const separator = `/`;
|
|
@@ -254,10 +254,8 @@ async function build(cwd, options) {
|
|
|
254
254
|
const aliasDir = resolve(cwd, "./src");
|
|
255
255
|
let aliasOptions = {
|
|
256
256
|
entries: options.alias || [
|
|
257
|
-
{ find:
|
|
258
|
-
{ find:
|
|
259
|
-
{ find: /^~/, replacement: aliasDir },
|
|
260
|
-
{ find: /^~\//, replacement: aliasDir }
|
|
257
|
+
{ find: "@", replacement: aliasDir },
|
|
258
|
+
{ find: "~", replacement: aliasDir }
|
|
261
259
|
]
|
|
262
260
|
};
|
|
263
261
|
for (const entry of options.entries) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hypernym/bundler",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.3",
|
|
4
4
|
"author": "Hypernym Studio",
|
|
5
5
|
"description": "ESM & TS module bundler.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -44,8 +44,7 @@
|
|
|
44
44
|
"format": "prettier --write .",
|
|
45
45
|
"prepublishOnly": "npm run build"
|
|
46
46
|
},
|
|
47
|
-
"
|
|
48
|
-
"packageManager": "pnpm@10.2.1",
|
|
47
|
+
"packageManager": "pnpm@10.4.1",
|
|
49
48
|
"engines": {
|
|
50
49
|
"node": ">=20.0.0",
|
|
51
50
|
"pnpm": ">=9.0.0"
|
|
@@ -65,23 +64,23 @@
|
|
|
65
64
|
"dependencies": {
|
|
66
65
|
"@hypernym/args": "^0.3.0",
|
|
67
66
|
"@hypernym/colors": "^1.0.2",
|
|
68
|
-
"@hypernym/utils": "^3.4.
|
|
67
|
+
"@hypernym/utils": "^3.4.2",
|
|
69
68
|
"@rollup/plugin-alias": "^5.1.1",
|
|
70
69
|
"@rollup/plugin-json": "^6.1.0",
|
|
71
70
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
72
71
|
"@rollup/plugin-replace": "^6.0.2",
|
|
73
72
|
"@rollup/pluginutils": "^5.1.4",
|
|
74
73
|
"esbuild": "^0.25.0",
|
|
75
|
-
"rollup": "^4.34.
|
|
74
|
+
"rollup": "^4.34.8",
|
|
76
75
|
"rollup-plugin-dts": "^6.1.1"
|
|
77
76
|
},
|
|
78
77
|
"devDependencies": {
|
|
79
78
|
"@hypernym/eslint-config": "^3.5.6",
|
|
80
79
|
"@hypernym/prettier-config": "^3.2.2",
|
|
81
|
-
"@hypernym/tsconfig": "^2.
|
|
82
|
-
"@types/node": "^22.13.
|
|
83
|
-
"eslint": "^9.
|
|
84
|
-
"prettier": "^3.5.
|
|
80
|
+
"@hypernym/tsconfig": "^2.6.0",
|
|
81
|
+
"@types/node": "^22.13.5",
|
|
82
|
+
"eslint": "^9.21.0",
|
|
83
|
+
"prettier": "^3.5.2",
|
|
85
84
|
"typescript": "^5.7.3"
|
|
86
85
|
}
|
|
87
86
|
}
|