Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
dionjwa committed Oct 27, 2024
1 parent fcd77dd commit 27e8027
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/worker/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ deploy: _ensure_deployctl
cp -rL src deploy/
cp -r deno.json deploy/
cd deploy
# deploy deploy is on an older version of deno which does not support
# the "sloppy-imports" flag
# So jump through some hoops to convert the imports
find src/lib -type f -name '*.ts' -exec sd -s ".js'" ".ts'" {} +
find src/lib -type f -name '*.ts' -exec sd -s '.js"' '.ts"' {} +
deno task build
deployctl deploy --project=metapage-module --prod --entrypoint src/main.ts
Expand Down

0 comments on commit 27e8027

Please sign in to comment.