mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-13 02:55:56 -04:00
* feat(env): add uninstall command to pnpm env * chore(changeset): define minor bump * fix(env): fixes for pnpm env uninstall - Fix broken node path for the windows platform - Notify user when removing default Node.JS - Remove `await` on `fs.unlink` in `Promise.all` - Add support for Node.JS v14.13 and earlier * fix(env): fix failing tests on Windows platform * fix(env): update aliases and error catching - Add `rm, un, uninstall` aliases to the `remove` command - Update CLI help message - Ignore only `ENOENT` errors * refactor(env): cr updates - Use `remove` with `rm` alias only - Update CLI help message - Update tests to use `remove` command - Replace custom support for older Node.JS versions with `@zkochan/rimraf` * refactor(env): simplify catch block * fix: env rm * refactor: test Co-authored-by: Mark Omarov <inkfaust@gmail.com> Co-authored-by: Zoltan Kochan <z@kochan.io>
41 lines
589 B
JSON
41 lines
589 B
JSON
{
|
|
"extends": "@pnpm/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../../typings/**/*.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../privatePackages/prepare"
|
|
},
|
|
{
|
|
"path": "../cli-utils"
|
|
},
|
|
{
|
|
"path": "../config"
|
|
},
|
|
{
|
|
"path": "../error"
|
|
},
|
|
{
|
|
"path": "../fetch"
|
|
},
|
|
{
|
|
"path": "../node.fetcher"
|
|
},
|
|
{
|
|
"path": "../node.resolver"
|
|
},
|
|
{
|
|
"path": "../remove-bins"
|
|
},
|
|
{
|
|
"path": "../store-path"
|
|
}
|
|
]
|
|
}
|