@hypernym/bundler 0.8.0 → 0.9.0

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
- # Bundler
1
+ # @hypernym/bundler
2
2
 
3
3
  ESM & TS module bundler.
4
4
 
@@ -28,7 +28,7 @@ const externals = [
28
28
  ];
29
29
 
30
30
  const name = "bundler";
31
- const version = `0.8.0`;
31
+ const version = `0.9.0`;
32
32
 
33
33
  const cl = console.log;
34
34
  const logger = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hypernym/bundler",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "author": "Hypernym Studio",
5
5
  "description": "ESM & TS module bundler.",
6
6
  "license": "MIT",
@@ -38,14 +38,14 @@
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsx src/bin/index.ts",
41
- "lint": "ESLINT_USE_FLAT_CONFIG=true eslint -c .config/eslint.config.js .",
42
- "lint:fix": "ESLINT_USE_FLAT_CONFIG=true eslint -c .config/eslint.config.js --fix .",
41
+ "lint": "eslint -c .config/eslint.config.js .",
42
+ "lint:fix": "eslint -c .config/eslint.config.js --fix .",
43
43
  "format": "prettier --config .config/prettier.config.js --write .",
44
44
  "prepublishOnly": "npm run build"
45
45
  },
46
46
  "sideEffects": false,
47
47
  "engines": {
48
- "node": ">=v18.0.0"
48
+ "node": ">=20.0.0"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "@types/node": ">=20.0.0",
@@ -63,23 +63,23 @@
63
63
  "@hypernym/args": "^0.2.1",
64
64
  "@hypernym/colors": "^1.0.1",
65
65
  "@hypernym/spinner": "^0.2.0",
66
- "@hypernym/utils": "^2.3.0",
66
+ "@hypernym/utils": "^3.0.0",
67
67
  "@rollup/plugin-alias": "^5.1.0",
68
68
  "@rollup/plugin-json": "^6.1.0",
69
69
  "@rollup/plugin-node-resolve": "^15.2.3",
70
70
  "@rollup/plugin-replace": "^5.0.5",
71
- "esbuild": "^0.19.11",
72
- "rollup": "^4.9.5",
71
+ "esbuild": "^0.20.2",
72
+ "rollup": "^4.14.1",
73
73
  "rollup-plugin-dts": "^6.1.0"
74
74
  },
75
75
  "devDependencies": {
76
- "@hypernym/eslint-config": "^2.0.3",
77
- "@hypernym/prettier-config": "^2.0.3",
78
- "@hypernym/tsconfig": "^1.2.0",
79
- "@types/node": "^20.11.5",
80
- "eslint": "^8.56.0",
81
- "prettier": "^3.2.4",
82
- "tsx": "^4.7.0",
83
- "typescript": "^5.3.3"
76
+ "@hypernym/eslint-config": "^3.0.0",
77
+ "@hypernym/prettier-config": "^3.0.0",
78
+ "@hypernym/tsconfig": "^2.0.0",
79
+ "@types/node": "^20.12.7",
80
+ "eslint": "^9.0.0",
81
+ "prettier": "^3.2.5",
82
+ "tsx": "^4.7.2",
83
+ "typescript": "^5.4.4"
84
84
  }
85
85
  }