84 lines
4.6 KiB
PHP
84 lines
4.6 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | BuildAdmin - WEB终端配置
|
||
// | Webman 迁移:migrate 命令需根据实际迁移工具调整
|
||
// +----------------------------------------------------------------------
|
||
|
||
return [
|
||
'npm_package_manager' => 'pnpm',
|
||
'commands' => [
|
||
'migrate' => [
|
||
'run' => [
|
||
'cwd' => '',
|
||
'command' => 'php webman migrate:run',
|
||
'notes' => 'Start the database migration'
|
||
],
|
||
'rollback' => 'php webman migrate:rollback',
|
||
'breakpoint' => 'php webman migrate:breakpoint',
|
||
],
|
||
'install' => [
|
||
'cnpm' => 'npm install cnpm -g --registry=https://registry.npmmirror.com',
|
||
'yarn' => 'npm install -g yarn',
|
||
'pnpm' => 'npm install -g pnpm',
|
||
'ni' => 'npm install -g @antfu/ni',
|
||
],
|
||
'version' => [
|
||
'npm' => 'npm -v',
|
||
'cnpm' => 'cnpm -v',
|
||
'yarn' => 'yarn -v',
|
||
'pnpm' => 'pnpm -v',
|
||
'node' => 'node -v',
|
||
],
|
||
'test' => [
|
||
'npm' => ['cwd' => 'public/npm-install-test', 'command' => 'npm install'],
|
||
'cnpm' => ['cwd' => 'public/npm-install-test', 'command' => 'cnpm install'],
|
||
'yarn' => ['cwd' => 'public/npm-install-test', 'command' => 'yarn install'],
|
||
'pnpm' => ['cwd' => 'public/npm-install-test', 'command' => 'pnpm install'],
|
||
'ni' => ['cwd' => 'public/npm-install-test', 'command' => 'ni install'],
|
||
],
|
||
'web-install' => [
|
||
'npm' => ['cwd' => 'web', 'command' => 'npm install'],
|
||
'cnpm' => ['cwd' => 'web', 'command' => 'cnpm install'],
|
||
'yarn' => ['cwd' => 'web', 'command' => 'yarn install'],
|
||
'pnpm' => ['cwd' => 'web', 'command' => 'pnpm install'],
|
||
'ni' => ['cwd' => 'web', 'command' => 'ni install'],
|
||
],
|
||
'nuxt-install' => [
|
||
'npm' => ['cwd' => 'web-nuxt', 'command' => 'npm install'],
|
||
'cnpm' => ['cwd' => 'web-nuxt', 'command' => 'cnpm install'],
|
||
'yarn' => ['cwd' => 'web-nuxt', 'command' => 'yarn install'],
|
||
'pnpm' => ['cwd' => 'web-nuxt', 'command' => 'pnpm install'],
|
||
'ni' => ['cwd' => 'web-nuxt', 'command' => 'ni install'],
|
||
],
|
||
'web-build' => [
|
||
'npm' => ['cwd' => 'web', 'command' => 'npm run build', 'notes' => 'Start executing the build command of the web project'],
|
||
'cnpm' => ['cwd' => 'web', 'command' => 'cnpm run build', 'notes' => 'Start executing the build command of the web project'],
|
||
'yarn' => ['cwd' => 'web', 'command' => 'yarn run build', 'notes' => 'Start executing the build command of the web project'],
|
||
'pnpm' => ['cwd' => 'web', 'command' => 'pnpm run build', 'notes' => 'Start executing the build command of the web project'],
|
||
'ni' => ['cwd' => 'web', 'command' => 'nr build', 'notes' => 'Start executing the build command of the web project'],
|
||
],
|
||
'set-npm-registry' => [
|
||
'npm' => 'npm config set registry https://registry.npmjs.org/ && npm config get registry',
|
||
'taobao' => 'npm config set registry https://registry.npmmirror.com/ && npm config get registry',
|
||
'tencent' => 'npm config set registry https://mirrors.cloud.tencent.com/npm/ && npm config get registry'
|
||
],
|
||
'set-composer-registry' => [
|
||
'composer' => 'composer config --unset repos.packagist',
|
||
'aliyun' => 'composer config -g repos.packagist composer https://mirrors.aliyun.com/composer/',
|
||
'tencent' => 'composer config -g repos.packagist composer https://mirrors.cloud.tencent.com/composer/',
|
||
'huawei' => 'composer config -g repos.packagist composer https://mirrors.huaweicloud.com/repository/php/',
|
||
'kkame' => 'composer config -g repos.packagist composer https://packagist.kr',
|
||
],
|
||
'npx' => [
|
||
'prettier' => ['cwd' => 'web', 'command' => 'npx prettier --write %s', 'notes' => 'Start formatting the web project code'],
|
||
],
|
||
'composer' => [
|
||
'update' => ['cwd' => '', 'command' => 'composer update --no-interaction', 'notes' => 'Start installing the composer dependencies']
|
||
],
|
||
'ping' => [
|
||
'baidu' => 'ping baidu.com',
|
||
'localhost' => 'ping 127.0.0.1 -n 6',
|
||
]
|
||
],
|
||
];
|