flagshark 1.1.0 → 1.1.1
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/dist/cli.js +2 -2
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { scanRepo } from "@flagshark/core";
|
|
5
5
|
|
|
6
6
|
// src/formatter.ts
|
|
7
|
-
var VERSION = "1.1.
|
|
7
|
+
var VERSION = "1.1.1";
|
|
8
8
|
function pad(str, width) {
|
|
9
9
|
if (str.length > width) {
|
|
10
10
|
return str.slice(0, width - 1) + "\u2026";
|
|
@@ -121,7 +121,7 @@ function formatJson(result) {
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
// src/cli.ts
|
|
124
|
-
var VERSION2 = "1.1.
|
|
124
|
+
var VERSION2 = "1.1.1";
|
|
125
125
|
var HELP_TEXT = `
|
|
126
126
|
flagshark scan [options]
|
|
127
127
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flagshark",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Find stale feature flags in your codebase",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"typecheck": "tsc --noEmit"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@flagshark/core": "
|
|
23
|
+
"@flagshark/core": "^1.0.0",
|
|
24
24
|
"zod": "^3.23.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|