@shgysk8zer0/js-utils 1.0.1 → 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
@@ -1,3 +1,4 @@
1
+ <!-- markdownlint-disable -->
1
2
  # Changelog
2
3
  All notable changes to this project will be documented in this file.
3
4
 
@@ -6,7 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
7
 
7
8
  ## [Unreleased]
8
9
 
9
- ## [v1.0.1] - 2023--07-03
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
+
17
+ ## [v1.0.2] - 2024-09-19
18
+
19
+ ### Changed
20
+ - Update dependencies and config
21
+
22
+ ## [v1.0.1] - 2023-07-03
10
23
 
11
24
  ### Changed
12
25
  - Update to node 20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shgysk8zer0/js-utils",
3
- "version": "1.0.1",
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,8 +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": "^8.42.0",
45
- "rollup": "^3.24.0"
43
+ "@rollup/plugin-terser": "^0.4.4",
44
+ "eslint": "^10.0.2",
45
+ "rollup": "^4.59.0"
46
+ },
47
+ "devDependencies": {
48
+ "@shgysk8zer0/eslint-config": "^1.0.5"
46
49
  }
47
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