@storm-software/testing-tools 1.102.0 → 1.102.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.
- package/CHANGELOG.md +12 -0
- package/README.md +1 -1
- package/package.json +39 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.102.2 (2025-01-20)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **workspace-tools:** Resolve formatting issue with missing `parser` config ([da80cf3d](https://github.com/storm-software/storm-ops/commit/da80cf3d))
|
|
6
|
+
|
|
7
|
+
## 1.102.1 (2025-01-20)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **unbuild:** Update package to bundle the `unbuild` package for distribution ([d304c28d](https://github.com/storm-software/storm-ops/commit/d304c28d))
|
|
12
|
+
|
|
1
13
|
## 1.102.0 (2025-01-20)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/package.json
CHANGED
|
@@ -1 +1,39 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@storm-software/testing-tools",
|
|
3
|
+
"version": "1.102.2",
|
|
4
|
+
"type": "commonjs",
|
|
5
|
+
"description": "⚡ A package containing various testing tools used by Storm workspaces to drive unit and e2e testing.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "github",
|
|
8
|
+
"url": "https://github.com/storm-software/storm-ops",
|
|
9
|
+
"directory": "packages/testing-tools"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://stormsoftware.com",
|
|
12
|
+
"bugs": "https://github.com/storm-software/storm-ops/issues",
|
|
13
|
+
"author": {
|
|
14
|
+
"name": "Storm Software",
|
|
15
|
+
"email": "contact@stormsoftware.com",
|
|
16
|
+
"url": "https://stormsoftware.com"
|
|
17
|
+
},
|
|
18
|
+
"license": "Apache-2.0",
|
|
19
|
+
"private": false,
|
|
20
|
+
"module": "./index.js",
|
|
21
|
+
"types": "./declarations.d.ts",
|
|
22
|
+
"keywords": [
|
|
23
|
+
"monorepo",
|
|
24
|
+
"open-system",
|
|
25
|
+
"storm",
|
|
26
|
+
"storm-ops",
|
|
27
|
+
"storm-stack",
|
|
28
|
+
"stormstack",
|
|
29
|
+
"sullivanpj"
|
|
30
|
+
],
|
|
31
|
+
"peerDependencies": { "@nx/jest": "^20.3.1", "jest": "29.7.0" },
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@nx/jest": "^20.3.1",
|
|
34
|
+
"@types/node": "^22.10.2",
|
|
35
|
+
"jest": "29.7.0",
|
|
36
|
+
"jest-resolve": "29.7.0"
|
|
37
|
+
},
|
|
38
|
+
"publishConfig": { "access": "public" }
|
|
39
|
+
}
|