@storm-software/npm-tools 0.6.187 → 0.6.188
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 +12 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Npm Tools
|
|
4
4
|
|
|
5
|
+
## [0.6.188](https://github.com/storm-software/storm-ops/releases/tag/npm-tools%400.6.188) (06/18/2026)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **linting-tools:** Resolve issue running CLI from lefthook and update version shas ([1751cb249](https://github.com/storm-software/storm-ops/commit/1751cb249))
|
|
10
|
+
|
|
11
|
+
### Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated **config** to **v1.138.7**
|
|
14
|
+
- Updated **config-tools** to **v1.190.70**
|
|
15
|
+
- Updated **testing-tools** to **v1.119.223**
|
|
16
|
+
|
|
5
17
|
## [0.6.187](https://github.com/storm-software/storm-ops/releases/tag/npm-tools%400.6.187) (06/15/2026)
|
|
6
18
|
|
|
7
19
|
### Miscellaneous
|
package/package.json
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/npm-tools",
|
|
3
|
-
"version": "0.6.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.6.188",
|
|
4
|
+
"private": false,
|
|
5
5
|
"description": "A set of tools and utilities for managing packages stored in the [npm](https://www.npmjs.com/) registry.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "github",
|
|
8
|
-
"url": "https://github.com/storm-software/storm-ops",
|
|
8
|
+
"url": "https://github.com/storm-software/storm-ops.git",
|
|
9
9
|
"directory": "packages/npm-tools"
|
|
10
10
|
},
|
|
11
|
-
"
|
|
12
|
-
"main": "./dist/index.cjs",
|
|
13
|
-
"module": "./dist/index.js",
|
|
11
|
+
"type": "module",
|
|
14
12
|
"exports": {
|
|
15
13
|
"./package.json": "./package.json",
|
|
16
14
|
"./index": {
|
|
@@ -80,12 +78,14 @@
|
|
|
80
78
|
}
|
|
81
79
|
}
|
|
82
80
|
},
|
|
81
|
+
"main": "./dist/index.cjs",
|
|
82
|
+
"module": "./dist/index.js",
|
|
83
83
|
"types": "./dist/index.d.ts",
|
|
84
84
|
"dependencies": {
|
|
85
|
-
"@storm-software/config": "1.138.
|
|
86
|
-
"@storm-software/config-tools": "1.190.
|
|
85
|
+
"@storm-software/config": "1.138.7",
|
|
86
|
+
"@storm-software/config-tools": "1.190.70"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": { "@types/node": "^25.9.3", "tsup": "8.4.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "fdea267e4dc6eba5a25455d10238ec64177ed701"
|
|
91
91
|
}
|