Skip to content

Commit

Permalink
Merge pull request #62 from engines-dev/main
Browse files Browse the repository at this point in the history
Specify `--prefix` for `npm install` command for `typescript` and `typescript-language-server`
  • Loading branch information
LakshyAAAgrawal authored Feb 18, 2025
2 parents 517929b + 0d56761 commit 9dfe2c0
Showing 1 changed file with 15 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"_description": "Used to download the runtime dependencies for running typescript-language-server. Obtained from https://github.com/typescript-language-server/typescript-language-server/releases",
"runtimeDependencies": [
{
"id": "typescript",
"description": "typescript package for Linux, OSX, and Windows. Both x64 and arm64 are supported.",
"command": "npm install [email protected]"
},
{
"id": "typescript-language-server",
"description": "typescript-language-server package for Linux, OSX, and Windows. Both x64 and arm64 are supported.",
"command": "npm install [email protected]"
}
]
}
"_description": "Used to download the runtime dependencies for running typescript-language-server. Obtained from https://github.com/typescript-language-server/typescript-language-server/releases",
"runtimeDependencies": [
{
"id": "typescript",
"description": "typescript package for Linux, OSX, and Windows. Both x64 and arm64 are supported.",
"command": "npm install --prefix ./ [email protected]"
},
{
"id": "typescript-language-server",
"description": "typescript-language-server package for Linux, OSX, and Windows. Both x64 and arm64 are supported.",
"command": "npm install --prefix ./ [email protected]"
}
]
}

0 comments on commit 9dfe2c0

Please sign in to comment.