Skip to content

Commit 7ab60f7

Browse files
committed
add DX tracker (basically a copy from chainlink repo)
1 parent c7d1215 commit 7ab60f7

File tree

7 files changed

+986
-0
lines changed

7 files changed

+986
-0
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
- path: framework
2626
vm: ubuntu-latest
2727
regex: TestStorageMutations
28+
- path: framework/tracking
29+
vm: ubuntu-latest
30+
regex: ./...
2831
- path: wasp
2932
vm: ubuntu22.04-16cores-64GB # ghv-ignore!
3033
regex: TestSmoke
File renamed without changes.

framework/.changeset/v0.10.35.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Add DX tracking package

framework/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ require (
3535

3636
require (
3737
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
38+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
3839
github.com/Microsoft/go-winio v0.6.2 // indirect
3940
github.com/StackExchange/wmi v1.2.1 // indirect
4041
github.com/bits-and-blooms/bitset v1.17.0 // indirect

framework/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c/go.mod h1:xomTg6
88
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
99
github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ=
1010
github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo=
11+
github.com/Masterminds/semver/v3 v3.4.0 h1:Zog+i5UMtVoCU8oKka5P7i9q9HgrJeGzI9SA1Xbatp0=
12+
github.com/Masterminds/semver/v3 v3.4.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM=
1113
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
1214
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
1315
github.com/StackExchange/wmi v1.2.1 h1:VIkavFPXSjcnS+O8yTq7NI32k0R5Aj+v39y29VYDOSA=

0 commit comments

Comments
 (0)