You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: restored default value of scripts.mainScripts
feat: add leadingPackageManager setting that allows you specify pm that will be used by default with extremely sane default
fix: add output piping for pnpm commands
fix: it seems commands (incluing pnpm) are now cancellable!
Copy file name to clipboardExpand all lines: src/configurationTypeCache.jsonc
+19-1Lines changed: 19 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,18 @@
1
1
// GENERATED. DON'T EDIT MANUALLY
2
-
// md5hash: 1a8290bf7111a243e1fb57982d76c654
2
+
// md5hash: 556480798888bbc8df856f9dbf22165a
3
3
{
4
4
"type": "object",
5
5
"properties": {
6
+
"leadingPackageManager": {
7
+
"description": "Your main package manager that leads your projects\nUsed when no lockfile is detected\nBy default (when null) first installed is picked: pnpm, yarn, npm",
8
+
"default": null,
9
+
"enum": [
10
+
"npm",
11
+
"pnpm",
12
+
"yarn"
13
+
],
14
+
"type": "string"
15
+
},
6
16
"install.clipboardDetection": {
7
17
"description": "What to do on clipboard detection for copied command to install packages",
8
18
"default": "ask",
@@ -59,6 +69,13 @@
59
69
"type": "boolean"
60
70
},
61
71
"scripts.mainScripts": {
72
+
"description": "The first script will be run from this list on `start-npm-script` command.",
0 commit comments