mirror of
https://github.com/ScoopInstaller/Main.git
synced 2026-01-10 05:35:15 +00:00
yarn: Make global persist and fix global bin issue (#3206)
- Yarn's global folder can be set via `yarn config set global-folder` (https://github.com/yarnpkg/yarn/pull/7056) and thus can be persisted. - ~~Since yarn's global bin creating procedure is still problematic (https://github.com/yarnpkg/yarn/issues/6902, **fixed by https://github.com/yarnpkg/yarn/pull/6954**),~~ The `.bin` folder in `global\node_modules` is a better path to add to env, and this can avoid the annoying problem when you install scoop in some place except `C:` (that the shims in global bin have wrong relative path pointer). - If you install yarn via `scoop install yarn`, the `Yarn` folder in `$env:LOCALAPPDATA` is useless, and when you uninstall `yarn`, the `.yarnrc` is unused, so the manifest add `uninstaller.script` to remove them when you uninstall. - For reconfiguration, please use `scoop update yarn -f` instead of `scoop reset yarn`. - Close #2969
This commit is contained in:
parent
fd915a956c
commit
9d677f5d8e
33
yarn.json
33
yarn.json
@ -1,29 +1,28 @@
|
||||
{
|
||||
"homepage": "https://yarnpkg.com/",
|
||||
"description": "Dependency manager",
|
||||
"license": "BSD-2-Clause",
|
||||
"description": "Node.js dependency manager",
|
||||
"version": "1.15.2",
|
||||
"suggest": {
|
||||
"Node.js": [
|
||||
"nodejs",
|
||||
"nodejs-lts"
|
||||
],
|
||||
"NVM": "nvm"
|
||||
},
|
||||
"license": "BSD-2-Clause",
|
||||
"url": "https://yarnpkg.com/downloads/1.15.2/yarn-1.15.2.msi",
|
||||
"hash": "e3b07031012c83367809da702db77a70a151f457b4e83e6cb4d70e9426625f67",
|
||||
"persist": [
|
||||
"cache",
|
||||
"bin",
|
||||
"mirror"
|
||||
"mirror",
|
||||
"global"
|
||||
],
|
||||
"post_install": [
|
||||
"yarn config set cache-folder \"$dir\\cache\"",
|
||||
"yarn config set yarn-offline-mirror \"$dir\\mirror\"",
|
||||
"yarn config set prefix \"$dir\""
|
||||
"yarn config set global-folder \"$dir\\global\""
|
||||
],
|
||||
"uninstaller": {
|
||||
"script": [
|
||||
"Remove-Item $env:LOCALAPPDATA\\Yarn -Recurse -Force",
|
||||
"Remove-Item $env:USERPROFILE\\.yarnrc -Force"
|
||||
]
|
||||
},
|
||||
"env_add_path": [
|
||||
"bin",
|
||||
"global\\node_modules\\.bin",
|
||||
"Yarn\\bin"
|
||||
],
|
||||
"checkver": {
|
||||
@ -32,5 +31,13 @@
|
||||
},
|
||||
"autoupdate": {
|
||||
"url": "https://yarnpkg.com/downloads/$version/yarn-$version.msi"
|
||||
},
|
||||
"suggest": {
|
||||
"Node.js": [
|
||||
"nodejs",
|
||||
"nodejs-lts",
|
||||
"nvm",
|
||||
"nvs"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user