@monodog/ci-status 1.1.2 → 1.1.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/package.json +3 -4
- package/tsconfig.json +1 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@monodog/ci-status",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
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
|
"scripts": {
|
|
9
9
|
"dev": "tsx watch index.ts",
|
|
10
10
|
"start": "tsx index.ts",
|
|
@@ -25,6 +25,5 @@
|
|
|
25
25
|
"typescript": "^5.3.0",
|
|
26
26
|
"prisma": "^5.7.0"
|
|
27
27
|
},
|
|
28
|
-
"peerDependencies": {
|
|
29
|
-
}
|
|
28
|
+
"peerDependencies": {}
|
|
30
29
|
}
|
package/tsconfig.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"declaration": true,
|
|
11
11
|
"sourceMap": true,
|
|
12
12
|
"esModuleInterop": true,
|
|
13
|
-
"downlevelIteration": true
|
|
13
|
+
"downlevelIteration": true
|
|
14
14
|
|
|
15
15
|
// Since your package.json defines "main": "index.ts",
|
|
16
16
|
// we set the 'root' to the package root and 'outDir' to 'dist'.
|