feat(editor): add more open doc options to editor toolbar (#9588)

fix AF-2036, AF-2092
This commit is contained in:
pengx17
2025-01-09 08:04:21 +00:00
parent 890a962196
commit f78857bb11
41 changed files with 558 additions and 271 deletions

View File

@@ -1,5 +1,5 @@
import chalk from 'chalk';
import identity from 'lodash-es/identity';
import { identity } from 'lodash-es';
export const newLineSeparator = /\r\n|[\n\r\x85\u2028\u2029]/g;

View File

@@ -1,4 +1,4 @@
import once from 'lodash-es/once';
import { once } from 'lodash-es';
import { Logger } from './logger';
import { Package, readPackageJson } from './package';