Skip to content

Commit

Permalink
fix ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpect committed Aug 27, 2024
1 parent a8c7974 commit aa0c6a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ jobs:
- name: Test Startup-Rootless
run: ./test/test.sh rootless startup

- name: Test Startup-Daemon
run: ./test/test.sh client startup
# - name: Test Startup-Daemon
# run: ./test/test.sh client startup
1 change: 1 addition & 0 deletions pkg/env/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ func (e Env) RuntimeEnv() Env {
func (e Env) Base() Env {
e.state = e.state.Run(llb.Shlex("apt-get update")).
Run(llb.Shlex("apt-get -y --no-install-recommends install git ca-certificates")).
Run(llb.Shlex("apt install npm")). // Maybe a better option would be to make a check in metacall environment installation and make langauge specific some installs
Root()

return e
Expand Down
4 changes: 2 additions & 2 deletions pkg/staging/stages.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ var languageMap = map[string]string{
// "v8rep52": "v8rep52",
// "v8rep51": "v8rep51",
"node": "nodejs",
// "ts": "typescript",
"ts": "typescript",
// "file": "file",
// "rpc": "rpc",
// "wasm": "wasm",
// "java": "java",
// "c": "c",
// "cob": "cobol",
// "go": "go",
"rs": "rust",
// "rs": "rust",
// "backtrace" : "backtrace",
// "sandbox" : "sandbox",
}
Expand Down

0 comments on commit aa0c6a7

Please sign in to comment.