@tanagram/cli 0.1.0 → 0.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.
@@ -5,8 +5,8 @@ import (
5
5
  "fmt"
6
6
  "strings"
7
7
 
8
- "github.com/tanagram/monorepo/cli/git"
9
- "github.com/tanagram/monorepo/cli/parser"
8
+ "github.com/tanagram/cli/git"
9
+ "github.com/tanagram/cli/parser"
10
10
  )
11
11
 
12
12
  // CheckChangesWithLLM checks code changes against ALL policies using LLM
@@ -5,8 +5,8 @@ import (
5
5
  "fmt"
6
6
  "strings"
7
7
 
8
- "github.com/tanagram/monorepo/cli/git"
9
- "github.com/tanagram/monorepo/cli/parser"
8
+ "github.com/tanagram/cli/git"
9
+ "github.com/tanagram/cli/parser"
10
10
  )
11
11
 
12
12
  // Violation represents a policy violation found in code
@@ -6,8 +6,8 @@ import (
6
6
  "fmt"
7
7
  "strings"
8
8
 
9
- "github.com/tanagram/monorepo/cli/llm"
10
- "github.com/tanagram/monorepo/cli/parser"
9
+ "github.com/tanagram/cli/llm"
10
+ "github.com/tanagram/cli/parser"
11
11
  )
12
12
 
13
13
  // ViolationCheck represents a single policy violation check result from the LLM
package/go.mod CHANGED
@@ -1,4 +1,4 @@
1
- module github.com/tanagram/monorepo/cli
1
+ module github.com/tanagram/cli
2
2
 
3
3
  go 1.23.0
4
4
 
package/main.go CHANGED
@@ -4,7 +4,7 @@ import (
4
4
  "fmt"
5
5
  "os"
6
6
 
7
- "github.com/tanagram/monorepo/cli/commands"
7
+ "github.com/tanagram/cli/commands"
8
8
  )
9
9
 
10
10
  func main() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanagram/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Tanagram - Catch sloppy code before it ships",
5
5
  "main": "index.js",
6
6
  "bin": {