Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
93c02fe
Use Array.fromAsync
404Wolf Jul 5, 2025
ed4a1bb
Add windows test
404Wolf Jul 5, 2025
914d1d7
Use joins
404Wolf Jul 5, 2025
93c10fa
Fix regex for item names
404Wolf Jul 5, 2025
a726f9d
Use npm:slash
404Wolf Jul 5, 2025
0340bc4
Slash in more places
404Wolf Jul 5, 2025
daa5bcd
Use custom function
404Wolf Jul 5, 2025
16a705f
Update tests to use new sdk methods
404Wolf Jul 5, 2025
41de7af
More sdk utility functions
404Wolf Jul 5, 2025
41b55b2
More sdk utility usage
404Wolf Jul 5, 2025
e275c72
Add assertPathEquals
404Wolf Jul 5, 2025
1a7c11c
Use posix for pull
404Wolf Jul 5, 2025
668d93c
Normalize for the exists method
404Wolf Jul 5, 2025
f4017bf
More assertPathEquals
404Wolf Jul 5, 2025
4be9e62
More fixes
404Wolf Jul 5, 2025
7d3971c
Fix remix test
404Wolf Jul 5, 2025
bd572c4
Format code
404Wolf Jul 5, 2025
fca50f8
Don't import sdk
404Wolf Jul 5, 2025
7f89037
Clean up sdk
404Wolf Jul 5, 2025
bf444de
Use sdk utils
404Wolf Jul 5, 2025
7565fd6
Remove 'sdk' usages
404Wolf Jul 6, 2025
8c63de1
Fix param usage
404Wolf Jul 6, 2025
8e40f1f
Tick version
404Wolf Jul 6, 2025
2bb29ce
Merge branch 'main' into fix-windows-paths
404Wolf Sep 10, 2025
5063a19
Bump version
404Wolf Sep 10, 2025
2ea575b
Remove sanitizers
404Wolf Sep 10, 2025
7c5843b
Dont sanitize more tests
404Wolf Sep 10, 2025
65b8f77
Format
404Wolf Sep 10, 2025
89b783f
Update tests
404Wolf Sep 10, 2025
74d5961
Update tests
404Wolf Sep 10, 2025
951bb72
Fix test
404Wolf Sep 17, 2025
a2d07f4
Use assertpathequals
404Wolf Sep 23, 2025
73a81e4
Format code
404Wolf Sep 23, 2025
ccfc5bc
Normalize paths
404Wolf Sep 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,24 @@ jobs:
env:
VAL_TOWN_API_KEY: ${{ secrets.VAL_TOWN_API_KEY }}

test-windows:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x

- name: Run deno tests
uses: nick-fields/retry@v3
with:
command: deno task test:lib
max_attempts: 2
timeout_seconds: 2000
env:
VAL_TOWN_API_KEY: ${{ secrets.VAL_TOWN_API_KEY }}

test-mac:
runs-on: ubuntu-latest

Expand Down
18 changes: 9 additions & 9 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://raw.githubusercontent.com/denoland/deno/348900b8b79f4a434cab4c74b3bc8d4d2fa8ee74/cli/schemas/config-file.v1.json",
"name": "@valtown/vt",
"description": "The Val Town CLI",
"version": "0.1.44",
"version": "0.1.45",
"exports": "./vt.ts",
"license": "MIT",
"tasks": {
Expand All @@ -25,14 +25,14 @@
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.8",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.8",
"@cliffy/table": "jsr:@cliffy/table@1.0.0-rc.7",
"@deno-library/logger": "jsr:@deno-library/logger@^1.2.0",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/async": "jsr:@std/async@^1.0.14",
"@std/dotenv": "jsr:@std/dotenv@^0.225.5",
"@std/encoding": "jsr:@std/encoding@^1.0.10",
"@std/fs": "jsr:@std/fs@^1.0.19",
"@std/path": "jsr:@std/path@^1.1.1",
"@valtown/sdk": "jsr:@valtown/sdk@^1.13.0",
"@deno-library/logger": "jsr:@deno-library/logger@^1.1.9",
"@std/assert": "jsr:@std/assert@1",
"@std/async": "jsr:@std/async@^1.0.11",
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
"@std/encoding": "jsr:@std/encoding@^1.0.7",
"@std/fs": "jsr:@std/fs@^1.0.13",
"@std/path": "jsr:@std/path@^1.0.8",
"@valtown/sdk": "jsr:@valtown/sdk@^1.5.0",
"xdg-portable": "jsr:@404wolf/xdg-portable@^0.1.0",
"highlight.js": "npm:highlight.js@^11.11.1",
"strip-ansi": "npm:strip-ansi@^7.1.0",
Expand Down
Loading
Loading