@monodog/ci-status 1.3.29 → 1.3.30

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @monodog/ci-status@1.3.29 build /home/runner/work/monodog/monodog/packages/ci-status
2
+ > @monodog/ci-status@1.3.29 build /home/manoj/Documents/mjdog/packages/ci-status
3
3
  > tsc
4
4
 
@@ -0,0 +1,4 @@
1
+
2
+ > @monodog/ci-status@1.2.26 lint /home/manoj/Documents/mjdog/packages/ci-status
3
+ > eslint .
4
+
@@ -0,0 +1,13 @@
1
+
2
+ > @monodog/ci-status@1.1.3 test /home/manoj/Documents/MonoDog/packages/ci-status
3
+ > jest
4
+
5
+ Determining test suites to run...No tests found, exiting with code 1
6
+ Run with `--passWithNoTests` to exit with code 0
7
+ In /home/manoj/Documents/MonoDog/packages/ci-status
8
+ 5 files checked.
9
+ testMatch: **/__tests__/**/*.[jt]s?(x), **/?(*.)+(spec|test).[tj]s?(x) - 0 matches
10
+ testPathIgnorePatterns: /node_modules/ - 5 matches
11
+ testRegex: - 0 matches
12
+ Pattern: - 0 matches
13
+  ELIFECYCLE  Test failed. See above for more details.
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,11 +1,19 @@
1
1
  {
2
2
  "name": "@monodog/ci-status",
3
- "version": "1.3.29",
3
+ "version": "1.3.30",
4
4
  "description": "CI/CD status manager for monorepo packages",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "MIT",
8
8
  "private": false,
9
+ "scripts": {
10
+ "dev": "tsx watch index.ts",
11
+ "start": "tsx index.ts",
12
+ "build": "tsc",
13
+ "clean": "rm -rf dist node_modules/.cache",
14
+ "lint": "eslint .",
15
+ "lint:fix": "eslint . --fix"
16
+ },
9
17
  "dependencies": {
10
18
  "@prisma/client": "^5.7.0",
11
19
  "@monodog/utils": "1.0.41"
@@ -16,13 +24,5 @@
16
24
  "typescript": "^5.3.0",
17
25
  "prisma": "^5.7.0"
18
26
  },
19
- "peerDependencies": {},
20
- "scripts": {
21
- "dev": "tsx watch index.ts",
22
- "start": "tsx index.ts",
23
- "build": "tsc",
24
- "clean": "rm -rf dist node_modules/.cache",
25
- "lint": "eslint .",
26
- "lint:fix": "eslint . --fix"
27
- }
28
- }
27
+ "peerDependencies": {}
28
+ }
package/LICENCE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Mindfire Digital LLP
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.