Skip to content

Commit 9ba1d5c

Browse files
committed
fix: pin puyats dependencies to ensure it doesn't grab dummy 1.0.0 prod releases
1 parent 4ab13f7 commit 9ba1d5c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

examples/production/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
"npm": ">=9.0"
2121
},
2222
"dependencies": {
23-
"@algorandfoundation/algorand-typescript": "^1.0.0-beta.25"
23+
"@algorandfoundation/algorand-typescript": "~1.0.0-beta.25 <1.0.0"
2424
},
2525
"devDependencies": {
2626
"@algorandfoundation/algokit-client-generator": "^5.0.0",
2727
"@algorandfoundation/algokit-utils": "^9.0.0",
2828
"@algorandfoundation/algokit-utils-debug": "^1.0.4",
29-
"@algorandfoundation/puya-ts": "^1.0.0-beta.50",
29+
"@algorandfoundation/puya-ts": "~1.0.0-beta.50 <1.0.0",
3030
"@rollup/plugin-typescript": "^12.1.2",
3131
"@tsconfig/node22": "^22.0.0",
3232
"algosdk": "^3.0.0",
@@ -37,7 +37,7 @@
3737
"typescript-eslint": "^8.19.1",
3838
"prettier": "^3.4.2",
3939
"ts-node-dev": "^2.0.0",
40-
"@algorandfoundation/algorand-typescript-testing": "^1.0.0-beta.30",
40+
"@algorandfoundation/algorand-typescript-testing": "~1.0.0-beta.30 <1.0.0",
4141
"vitest": "^2.1.8",
4242
"@vitest/coverage-v8": "^2.1.8",
4343
"typescript": "^5.7.3"

examples/starter/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
"npm": ">=9.0"
1515
},
1616
"dependencies": {
17-
"@algorandfoundation/algorand-typescript": "^1.0.0-beta.25"
17+
"@algorandfoundation/algorand-typescript": "~1.0.0-beta.25 <1.0.0"
1818
},
1919
"devDependencies": {
2020
"@algorandfoundation/algokit-client-generator": "^5.0.0",
2121
"@algorandfoundation/algokit-utils": "^9.0.0",
2222
"@algorandfoundation/algokit-utils-debug": "^1.0.4",
23-
"@algorandfoundation/puya-ts": "^1.0.0-beta.50",
23+
"@algorandfoundation/puya-ts": "~1.0.0-beta.50 <1.0.0",
2424
"@rollup/plugin-typescript": "^12.1.2",
2525
"@tsconfig/node22": "^22.0.0",
2626
"algosdk": "^3.0.0",

template_content/package.json.jinja

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
"npm": ">=9.0"
2929
},
3030
"dependencies": {
31-
"@algorandfoundation/algorand-typescript": "^1.0.0-beta.25"
31+
"@algorandfoundation/algorand-typescript": "~1.0.0-beta.25 <1.0.0"
3232
},
3333
"devDependencies": {
3434
"@algorandfoundation/algokit-client-generator": "^5.0.0",
3535
"@algorandfoundation/algokit-utils": "^9.0.0",
3636
"@algorandfoundation/algokit-utils-debug": "^1.0.4",
37-
"@algorandfoundation/puya-ts": "^1.0.0-beta.50",
37+
"@algorandfoundation/puya-ts": "~1.0.0-beta.50 <1.0.0",
3838
"@rollup/plugin-typescript": "^12.1.2",
3939
"@tsconfig/node22": "^22.0.0",
4040
"algosdk": "^3.0.0",
@@ -52,7 +52,7 @@
5252
{%- endif %}
5353
"ts-node-dev": "^2.0.0",
5454
{%- if use_vitest %}
55-
"@algorandfoundation/algorand-typescript-testing": "^1.0.0-beta.30",
55+
"@algorandfoundation/algorand-typescript-testing": "~1.0.0-beta.30 <1.0.0",
5656
"vitest": "^2.1.8",
5757
"@vitest/coverage-v8": "^2.1.8",
5858
{%- endif %}

0 commit comments

Comments
 (0)