@shgysk8zer0/js-utils 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +10 -7
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,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
7
 
7
8
  ## [Unreleased]
8
9
 
10
+ ## [v1.0.2] - 2024-09-19
11
+
12
+ ### Changed
13
+ - Update dependencies and config
14
+
15
+ ## [v1.0.1] - 2023-07-03
16
+
17
+ ### Changed
18
+ - Update to node 20
19
+ - Update GH Action to publish to npm
20
+ - Update versioning and lock scripts
21
+
9
22
  ## [v1.0.0] - 2023-06-08
10
23
 
11
24
  Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shgysk8zer0/js-utils",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A collection of npm packages, such as ESLint and Rollup",
5
5
  "module": "./index.js",
6
6
  "main": "./index.cjs",
@@ -23,11 +23,11 @@
23
23
  "fix:js": "eslint. --fix",
24
24
  "build": "npm run build:rollup",
25
25
  "build:rollup": "rollup -c rollup.config.js",
26
- "create:lock": "npm i --package-lock-only",
26
+ "create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
27
27
  "version:bump": "npm run version:bump:patch",
28
- "version:bump:patch": "npm version --no-git-tag-version patch",
29
- "version:bump:minor": "npm version --no-git-tag-version minor",
30
- "version:bump:major": "npm version --no-git-tag-version major"
28
+ "version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
29
+ "version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
30
+ "version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
31
31
  },
32
32
  "repository": {
33
33
  "type": "git",
@@ -41,7 +41,10 @@
41
41
  "homepage": "https://github.com/shgysk8zer0/js-utils#readme",
42
42
  "dependencies": {
43
43
  "@rollup/plugin-terser": "^0.4.3",
44
- "eslint": "^8.42.0",
45
- "rollup": "^3.24.0"
44
+ "eslint": "^9.10.0",
45
+ "rollup": "^4.0.1"
46
+ },
47
+ "devDependencies": {
48
+ "@shgysk8zer0/eslint-config": "^1.0.1"
46
49
  }
47
50
  }