@qigy/run
Version:
A collection of tools capable of executing complex commands through their abbreviation.
108 lines (107 loc) • 1.71 kB
JSON
[
{
"alias": "i",
"command": "npm install",
"remark": ""
},
{
"alias": "il",
"command": "npm install --legacy-peer-deps",
"remark": ""
},
{
"alias": "if",
"command": "npm install --force",
"remark": ""
},
{
"alias": "b",
"command": "npm run build",
"remark": ""
},
{
"alias": "s",
"command": "npm run serve",
"remark": ""
},
{
"alias": "d",
"command": "npm run dev",
"remark": ""
},
{
"alias": "f",
"command": "npm run format",
"remark": ""
},
{
"alias": "l",
"command": "npm run lint",
"remark": ""
},
{
"alias": "p",
"command": "npm pack",
"remark": ""
},
{
"alias": "u",
"command": "npm run update",
"remark": ""
},
{
"alias": "r",
"command": "npm run report",
"remark": ""
},
{
"alias": "st",
"command": "npm run start",
"remark": ""
},
{
"alias": "pi",
"command": "pnpm install",
"remark": ""
},
{
"alias": "ps",
"command": "pnpm serve",
"remark": ""
},
{
"alias": "pd",
"command": "pnpm dev",
"remark": ""
},
{
"alias": "pb",
"command": "pnpm build",
"remark": ""
},
{
"alias": "pf",
"command": "pnpm format",
"remark": ""
},
{
"alias": "pu",
"command": "pnpm update",
"remark": ""
},
{
"alias": "pst",
"command": "pnpm start",
"remark": ""
},
{
"alias": "dn",
"command": "npx rimraf ./node_modules",
"remark": "删除整个node_modules文件夹"
},
{
"alias": "dc",
"command": "npx rimraf ./node_modules/.cache",
"remark": "删除node_modules下.cache文件夹"
}
]