flaglint 0.2.2 → 0.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "flaglint",
3
- "version": "0.2.2",
4
- "description": "Find stale feature flags. Detect flag debt. Plan your OpenFeature migration.",
3
+ "version": "0.4.0",
4
+ "description": "LaunchDarkly Node.js server SDK -> OpenFeature migration.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "flaglint": "dist/bin/flaglint.js"
@@ -27,20 +27,22 @@
27
27
  "license": "MIT",
28
28
  "repository": {
29
29
  "type": "git",
30
- "url": "https://github.com/flaglint/flaglint.git"
30
+ "url": "git+https://github.com/flaglint/flaglint.git"
31
31
  },
32
32
  "homepage": "https://flaglint.dev",
33
33
  "bugs": {
34
34
  "url": "https://github.com/flaglint/flaglint/issues"
35
35
  },
36
36
  "scripts": {
37
- "build": "tsup",
37
+ "sync:www": "tsx scripts/sync-www.ts",
38
+ "build": "npm run sync:www && tsup",
38
39
  "dev": "tsup --watch",
39
40
  "typecheck": "tsc --noEmit",
40
41
  "typecheck:agent": "tsc --project tsconfig.agent.json",
41
42
  "test": "vitest",
42
43
  "test:run": "vitest run",
43
44
  "test:coverage": "vitest run --coverage",
45
+ "new-branch": "tsx scripts/new-branch.ts",
44
46
  "release:patch": "tsx scripts/release.ts patch",
45
47
  "release:minor": "tsx scripts/release.ts minor",
46
48
  "release:major": "tsx scripts/release.ts major"