mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
remove symlinks and turn on type checking
This commit is contained in:
parent
94101a0b93
commit
2607432abe
4 changed files with 26 additions and 9 deletions
11
.github/workflows/ci-scripts.yml
vendored
11
.github/workflows/ci-scripts.yml
vendored
|
@ -10,9 +10,8 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
# disabled until live because private repos are tedious
|
- uses: teaxyz/setup@v0
|
||||||
# - uses: teaxyz/setup@v0
|
with:
|
||||||
# with:
|
target: typecheck
|
||||||
# target: typecheck
|
env:
|
||||||
# env:
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
# GITHUB_TOKEN: ${{ github.token }}
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../cli/import-map.json
|
|
20
import-map.json
Normal file
20
import-map.json
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"imports": {
|
||||||
|
"prefab": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/prefab/index.ts",
|
||||||
|
"semver": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/utils/semver.ts",
|
||||||
|
"hooks": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/hooks/index.ts",
|
||||||
|
"utils": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/utils/index.ts",
|
||||||
|
"path": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/vendor/Path.ts",
|
||||||
|
"prefab/": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/prefab/",
|
||||||
|
"types": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/types.ts",
|
||||||
|
"hooks/": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/hooks/",
|
||||||
|
"utils/": "https://raw.githubusercontent.com/teaxyz/cli/v0.17.1/src/utils/",
|
||||||
|
"deno/": "https://deno.land/std@0.156.0/",
|
||||||
|
"is_what": "https://deno.land/x/is_what@v4.1.7/src/index.ts",
|
||||||
|
"cliffy/": "https://deno.land/x/cliffy@v0.25.2/",
|
||||||
|
"s3": "https://deno.land/x/s3@0.5.0/mod.ts",
|
||||||
|
"outdent": "https://deno.land/x/outdent@v0.8.0/mod.ts",
|
||||||
|
"rimbu/": "https://deno.land/x/rimbu@0.12.3/",
|
||||||
|
"retried": "https://deno.land/x/retried@1.0.1/mod.ts"
|
||||||
|
}
|
||||||
|
}
|
|
@ -12,7 +12,7 @@ args:
|
||||||
import { S3, S3Object } from "s3"
|
import { S3, S3Object } from "s3"
|
||||||
import { Sha256 } from "deno/hash/sha256.ts"
|
import { Sha256 } from "deno/hash/sha256.ts"
|
||||||
import { readerFromStreamReader, readAll } from "deno/streams/conversion.ts"
|
import { readerFromStreamReader, readAll } from "deno/streams/conversion.ts"
|
||||||
import Path from "../src/vendor/Path.ts"
|
import Path from "path"
|
||||||
|
|
||||||
const s3 = new S3({
|
const s3 = new S3({
|
||||||
accessKeyID: Deno.env.get("AWS_ACCESS_KEY_ID")!,
|
accessKeyID: Deno.env.get("AWS_ACCESS_KEY_ID")!,
|
||||||
|
|
1
src
1
src
|
@ -1 +0,0 @@
|
||||||
../cli/src
|
|
Loading…
Reference in a new issue