@shgysk8zer0/js-utils 1.0.2 → 1.0.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/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [v1.0.3] - 2026-02-25
11
+
12
+ ### Changed
13
+ - Update dependencies
14
+ - Update npm publishing
15
+ - Update to node 24.10.0
16
+
10
17
  ## [v1.0.2] - 2024-09-19
11
18
 
12
19
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shgysk8zer0/js-utils",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A collection of npm packages, such as ESLint and Rollup",
5
5
  "module": "./index.js",
6
6
  "main": "./index.cjs",
@@ -40,11 +40,11 @@
40
40
  },
41
41
  "homepage": "https://github.com/shgysk8zer0/js-utils#readme",
42
42
  "dependencies": {
43
- "@rollup/plugin-terser": "^0.4.3",
44
- "eslint": "^9.10.0",
45
- "rollup": "^4.0.1"
43
+ "@rollup/plugin-terser": "^0.4.4",
44
+ "eslint": "^10.0.2",
45
+ "rollup": "^4.59.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@shgysk8zer0/eslint-config": "^1.0.1"
48
+ "@shgysk8zer0/eslint-config": "^1.0.5"
49
49
  }
50
50
  }
package/rollup.cjs CHANGED
@@ -3,8 +3,6 @@
3
3
  var node_path = require('node:path');
4
4
  var terser = require('@rollup/plugin-terser');
5
5
 
6
- /* eslint-env node */
7
-
8
6
  const FORMAT_EXTS = {
9
7
  'es': ['.mjs', '.js'],
10
8
  'esm': ['.mjs', '.js'],
package/rollup.js CHANGED
@@ -1,4 +1,3 @@
1
- /* eslint-env node */
2
1
  import { extname } from 'node:path';
3
2
  import terser from '@rollup/plugin-terser';
4
3