threadlines 0.1.28 → 0.1.29

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.
Files changed (1) hide show
  1. package/package.json +6 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "threadlines",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "Threadline CLI - AI-powered linter based on your natural language documentation",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -27,14 +27,17 @@
27
27
  "directory": "packages/cli"
28
28
  },
29
29
  "scripts": {
30
- "build": "npm run check && tsc",
30
+ "build": "npm run check && (npm run threadlines || exit 0) && tsc",
31
31
  "dev": "tsc --watch",
32
32
  "start": "node dist/index.js",
33
33
  "prepublishOnly": "npm run build",
34
34
  "lint": "eslint src/**/*.ts",
35
35
  "lint:fix": "eslint src/**/*.ts --fix",
36
36
  "typecheck": "tsc --noEmit",
37
- "check": "npm run lint && npm run typecheck"
37
+ "check": "npm run lint && npm run typecheck",
38
+ "threadlines": "npx -y threadlines check",
39
+ "threadlines:local": "npx -y threadlines check || true",
40
+ "check:all": "npm run check && npm run threadlines"
38
41
  },
39
42
  "dependencies": {
40
43
  "axios": "^1.7.9",