@hypernym/bundler 0.14.2 → 0.14.4

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- <h1 align="center">Bundler</h1>
1
+ <h1 align="center">@hypernym/bundler</h1>
2
2
 
3
3
  <p align="center">ESM & TS module bundler.</p>
4
4
 
@@ -25,7 +25,7 @@ const externals = [
25
25
  ];
26
26
 
27
27
  const name = `Hyperbundler`;
28
- const version = `0.14.2`;
28
+ const version = `0.14.4`;
29
29
 
30
30
  const cl = console.log;
31
31
  const separator = `/`;
@@ -705,4 +705,5 @@ interface ResolvePathsOptions {
705
705
  replacement: string;
706
706
  }
707
707
 
708
- export { type BuildLogs, type BuildStats, type ConfigLoader, type CopyOptions, type EntryBase, type EntryChunk, type EntryCopy, type EntryDeclaration, type EntryOptions, type EntryTemplate, type HooksOptions, type Options, type ResolvePathsOptions, type TransformersChunk, type TransformersDeclaration, defineConfig, externals, resolvePaths };
708
+ export { defineConfig, externals, resolvePaths };
709
+ export type { BuildLogs, BuildStats, ConfigLoader, CopyOptions, EntryBase, EntryChunk, EntryCopy, EntryDeclaration, EntryOptions, EntryTemplate, HooksOptions, Options, ResolvePathsOptions, TransformersChunk, TransformersDeclaration };
@@ -705,4 +705,5 @@ interface ResolvePathsOptions {
705
705
  replacement: string;
706
706
  }
707
707
 
708
- export { type BuildLogs, type BuildStats, type ConfigLoader, type CopyOptions, type EntryBase, type EntryChunk, type EntryCopy, type EntryDeclaration, type EntryOptions, type EntryTemplate, type HooksOptions, type Options, type ResolvePathsOptions, type TransformersChunk, type TransformersDeclaration, defineConfig, externals, resolvePaths };
708
+ export { defineConfig, externals, resolvePaths };
709
+ export type { BuildLogs, BuildStats, ConfigLoader, CopyOptions, EntryBase, EntryChunk, EntryCopy, EntryDeclaration, EntryOptions, EntryTemplate, HooksOptions, Options, ResolvePathsOptions, TransformersChunk, TransformersDeclaration };
package/package.json CHANGED
@@ -1,17 +1,20 @@
1
1
  {
2
2
  "name": "@hypernym/bundler",
3
- "version": "0.14.2",
3
+ "version": "0.14.4",
4
4
  "author": "Hypernym Studio",
5
5
  "description": "ESM & TS module bundler.",
6
6
  "license": "MIT",
7
- "repository": "hypernym-studio/bundler",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/hypernym-studio/bundler.git"
10
+ },
8
11
  "homepage": "https://github.com/hypernym-studio/bundler",
9
12
  "funding": "https://github.com/sponsors/ivodolenc",
10
13
  "type": "module",
11
- "types": "./dist/types/index.d.cts",
14
+ "types": "./dist/index.d.cts",
12
15
  "exports": {
13
16
  ".": {
14
- "types": "./dist/types/index.d.mts",
17
+ "types": "./dist/index.d.mts",
15
18
  "import": "./dist/index.mjs",
16
19
  "require": "./dist/index.cjs"
17
20
  }
@@ -44,12 +47,6 @@
44
47
  "format": "prettier --write .",
45
48
  "prepublishOnly": "npm run build"
46
49
  },
47
- "sideEffects": false,
48
- "packageManager": "pnpm@10.2.1",
49
- "engines": {
50
- "node": ">=20.0.0",
51
- "pnpm": ">=9.0.0"
52
- },
53
50
  "peerDependencies": {
54
51
  "@types/node": ">=20.0.0",
55
52
  "typescript": ">=5.0.0"
@@ -63,25 +60,25 @@
63
60
  }
64
61
  },
65
62
  "dependencies": {
66
- "@hypernym/args": "^0.3.0",
67
- "@hypernym/colors": "^1.0.2",
68
- "@hypernym/utils": "^3.4.1",
63
+ "@hypernym/args": "^0.3.2",
64
+ "@hypernym/colors": "^1.0.4",
65
+ "@hypernym/utils": "^3.4.4",
69
66
  "@rollup/plugin-alias": "^5.1.1",
70
67
  "@rollup/plugin-json": "^6.1.0",
71
- "@rollup/plugin-node-resolve": "^16.0.0",
68
+ "@rollup/plugin-node-resolve": "^16.0.1",
72
69
  "@rollup/plugin-replace": "^6.0.2",
73
70
  "@rollup/pluginutils": "^5.1.4",
74
- "esbuild": "^0.25.0",
75
- "rollup": "^4.34.6",
76
- "rollup-plugin-dts": "^6.1.1"
71
+ "esbuild": "^0.25.4",
72
+ "rollup": "^4.40.2",
73
+ "rollup-plugin-dts": "^6.2.1"
77
74
  },
78
75
  "devDependencies": {
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"
76
+ "@hypernym/eslint-config": "^3.6.1",
77
+ "@hypernym/prettier-config": "^3.2.4",
78
+ "@hypernym/tsconfig": "^2.6.1",
79
+ "@types/node": "^22.15.17",
80
+ "eslint": "^9.26.0",
81
+ "prettier": "^3.5.3",
82
+ "typescript": "^5.8.3"
86
83
  }
87
84
  }