mirror of
https://github.com/nocobase/nocobase.git
synced 2026-08-30 16:56:07 +08:00
a4185eb8f0
* feat(cli): add top-level proxy commands * fix(cli): repair proxy command build types * docs: sort proxy navigation entries alphabetically
18 lines
420 B
JavaScript
18 lines
420 B
JavaScript
export const DEPRECATED_DOC_RULES = [
|
|
{
|
|
id: 'legacy-proxy-command',
|
|
description: 'Legacy proxy command name',
|
|
pattern: /\bnb env proxy\b/g,
|
|
},
|
|
{
|
|
id: 'legacy-proxy-link',
|
|
description: 'Legacy proxy API doc link',
|
|
pattern: /\/api\/cli\/env\/proxy\b/g,
|
|
},
|
|
{
|
|
id: 'legacy-proxy-config-key',
|
|
description: 'Legacy proxy configuration key',
|
|
pattern: /\bproxy\.provider\b/g,
|
|
},
|
|
];
|