@hypernym/bundler 0.14.0 → 0.14.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/LICENSE.txt +1 -1
- package/README.md +13 -15
- package/dist/bin/index.mjs +8 -6
- package/package.json +16 -16
package/LICENSE.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2025 Ivo Dolenc, Hypernym Studio
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -1,22 +1,20 @@
|
|
|
1
|
-
<h1 align="center">
|
|
1
|
+
<h1 align="center">Bundler</h1>
|
|
2
2
|
|
|
3
3
|
<p align="center">ESM & TS module bundler.</p>
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
<a href="https://github.com/hypernym-studio/bundler">Repository</a>
|
|
7
|
-
<span
|
|
7
|
+
<span>✦</span>
|
|
8
8
|
<a href="https://www.npmjs.com/package/@hypernym/bundler">Package</a>
|
|
9
|
-
<span
|
|
9
|
+
<span>✦</span>
|
|
10
10
|
<a href="https://github.com/hypernym-studio/bundler/releases">Releases</a>
|
|
11
|
-
<span
|
|
11
|
+
<span>✦</span>
|
|
12
12
|
<a href="https://github.com/hypernym-studio/bundler/discussions">Discussions</a>
|
|
13
13
|
</p>
|
|
14
14
|
|
|
15
|
-
<
|
|
15
|
+
<br>
|
|
16
16
|
|
|
17
|
-
<
|
|
18
|
-
<strong>Hypernym Studio</strong>
|
|
19
|
-
</p>
|
|
17
|
+
<pre align="center">pnpm add -D @hypernym/bundler</pre>
|
|
20
18
|
|
|
21
19
|
<br>
|
|
22
20
|
|
|
@@ -24,13 +22,13 @@
|
|
|
24
22
|
|
|
25
23
|
- Powered by Rollup
|
|
26
24
|
- Written in TypeScript
|
|
27
|
-
- Allows
|
|
28
|
-
- Provides a
|
|
29
|
-
- Supports
|
|
30
|
-
- Exports
|
|
31
|
-
- Follows
|
|
32
|
-
- Super
|
|
33
|
-
- API
|
|
25
|
+
- Allows Advanced Customization
|
|
26
|
+
- Provides a Powerful Hooking System
|
|
27
|
+
- Supports All TS Module Resolutions
|
|
28
|
+
- Exports Fully Optimized Code
|
|
29
|
+
- Follows Modern Practice
|
|
30
|
+
- Super Easy to Use
|
|
31
|
+
- API-Friendly
|
|
34
32
|
|
|
35
33
|
## Quick Start
|
|
36
34
|
|
package/dist/bin/index.mjs
CHANGED
|
@@ -24,23 +24,23 @@ const externals = [
|
|
|
24
24
|
/^rollup/
|
|
25
25
|
];
|
|
26
26
|
|
|
27
|
-
const
|
|
28
|
-
const version = `0.14.
|
|
27
|
+
const name = `Hyperbundler`;
|
|
28
|
+
const version = `0.14.1`;
|
|
29
29
|
|
|
30
30
|
const cl = console.log;
|
|
31
31
|
const separator = `/`;
|
|
32
32
|
const logger = {
|
|
33
33
|
info: (...args) => {
|
|
34
|
-
cl(
|
|
34
|
+
cl(name, dim(separator), ...args);
|
|
35
35
|
},
|
|
36
36
|
error: (...args) => {
|
|
37
37
|
cl();
|
|
38
|
-
cl(
|
|
38
|
+
cl(name, dim(separator), ...args);
|
|
39
39
|
cl();
|
|
40
40
|
},
|
|
41
41
|
exit: (message) => {
|
|
42
42
|
cl();
|
|
43
|
-
cl(
|
|
43
|
+
cl(name, dim(separator), message);
|
|
44
44
|
cl();
|
|
45
45
|
return process.exit();
|
|
46
46
|
}
|
|
@@ -469,6 +469,7 @@ async function createBuilder(cwd, config) {
|
|
|
469
469
|
await hooks?.["bundle:start"]?.(options);
|
|
470
470
|
logger.info(dim(`v${version}`));
|
|
471
471
|
cl("Config", dim(configPath));
|
|
472
|
+
cl();
|
|
472
473
|
cl("Bundling started...");
|
|
473
474
|
cl(
|
|
474
475
|
"Processing",
|
|
@@ -488,8 +489,9 @@ async function createBuilder(cwd, config) {
|
|
|
488
489
|
"Module transformation is done"
|
|
489
490
|
);
|
|
490
491
|
cl(`Bundling fully completed in ${buildTime}`);
|
|
492
|
+
cl();
|
|
491
493
|
cl(`${modules} transformed. Total size is ${buildSize}`);
|
|
492
|
-
|
|
494
|
+
cl(`Bundle is generated and ready for production`);
|
|
493
495
|
cl();
|
|
494
496
|
}).catch(error);
|
|
495
497
|
await hooks?.["bundle:end"]?.(options);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hypernym/bundler",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"author": "Hypernym Studio",
|
|
5
5
|
"description": "ESM & TS module bundler.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"prepublishOnly": "npm run build"
|
|
46
46
|
},
|
|
47
47
|
"sideEffects": false,
|
|
48
|
-
"packageManager": "pnpm@
|
|
48
|
+
"packageManager": "pnpm@10.2.1",
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=20.0.0",
|
|
51
51
|
"pnpm": ">=9.0.0"
|
|
@@ -64,24 +64,24 @@
|
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@hypernym/args": "^0.3.0",
|
|
67
|
-
"@hypernym/colors": "^1.0.
|
|
68
|
-
"@hypernym/utils": "^3.4.
|
|
67
|
+
"@hypernym/colors": "^1.0.2",
|
|
68
|
+
"@hypernym/utils": "^3.4.1",
|
|
69
69
|
"@rollup/plugin-alias": "^5.1.1",
|
|
70
70
|
"@rollup/plugin-json": "^6.1.0",
|
|
71
|
-
"@rollup/plugin-node-resolve": "^
|
|
72
|
-
"@rollup/plugin-replace": "^6.0.
|
|
73
|
-
"@rollup/pluginutils": "^5.1.
|
|
74
|
-
"esbuild": "^0.
|
|
75
|
-
"rollup": "^4.
|
|
71
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
72
|
+
"@rollup/plugin-replace": "^6.0.2",
|
|
73
|
+
"@rollup/pluginutils": "^5.1.4",
|
|
74
|
+
"esbuild": "^0.25.0",
|
|
75
|
+
"rollup": "^4.34.6",
|
|
76
76
|
"rollup-plugin-dts": "^6.1.1"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@hypernym/eslint-config": "^3.5.
|
|
80
|
-
"@hypernym/prettier-config": "^3.2.
|
|
81
|
-
"@hypernym/tsconfig": "^2.
|
|
82
|
-
"@types/node": "^22.
|
|
83
|
-
"eslint": "^9.
|
|
84
|
-
"prettier": "^3.
|
|
85
|
-
"typescript": "^5.
|
|
79
|
+
"@hypernym/eslint-config": "^3.5.6",
|
|
80
|
+
"@hypernym/prettier-config": "^3.2.2",
|
|
81
|
+
"@hypernym/tsconfig": "^2.5.0",
|
|
82
|
+
"@types/node": "^22.13.1",
|
|
83
|
+
"eslint": "^9.20.0",
|
|
84
|
+
"prettier": "^3.5.0",
|
|
85
|
+
"typescript": "^5.7.3"
|
|
86
86
|
}
|
|
87
87
|
}
|