Skip to content

Commit 6baf503

Browse files
trim names
1 parent 125f8fc commit 6baf503

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

packages/@pglt/pglt/package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
"url": "git+https://github.com/supabase/postgres_lsp.git",
1010
"directory": "packages/@pglt/pglt"
1111
},
12-
"scripts": {
13-
"test": "echo \"Error: no test specified\" && exit 1"
14-
},
1512
"author": "Philipp Steinrötter",
1613
"contributors": [
1714
{
@@ -30,10 +27,10 @@
3027
},
3128
"optionalDependencies": {
3229
"@pglt/cli-aarch64-apple-darwin": "0.1.0",
33-
"@pglt/cli-aarch64-pc-windows-msvc": "0.1.0",
34-
"@pglt/cli-aarch64-unknown-linux-gnu": "0.1.0",
30+
"@pglt/cli-aarch64-windows-msvc": "0.1.0",
31+
"@pglt/cli-aarch64-linux-gnu": "0.1.0",
3532
"@pglt/cli-x86_64-apple-darwin": "0.1.0",
36-
"@pglt/cli-x86_64-pc-windows-msvc": "0.1.0",
37-
"@pglt/cli-x86_64-unknown-linux-gnu": "0.1.0"
33+
"@pglt/cli-x86_64-windows-msvc": "0.1.0",
34+
"@pglt/cli-x86_64-linux-gnu": "0.1.0"
3835
}
3936
}

packages/@pglt/pglt/scripts/generate-packages.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function getBuildName(platform, arch) {
8080
}
8181

8282
function getPackageName(platform, arch) {
83-
// trim the "unknwown" from linux
83+
// trim the "unknown" from linux
8484
const name = platform.split("-").slice(-2).join("-");
8585
return format(`@pglt/cli_${name}`, arch);
8686
}

0 commit comments

Comments
 (0)