├── .envrc ├── .eslintignore ├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .husky ├── pre-commit └── pre-push ├── .lintstagedrc.json ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── azure-pipeline.yaml ├── images ├── dark │ ├── icon-copy.svg │ ├── icon-dl.svg │ ├── icon-eye.svg │ ├── icon-zoom-in.svg │ └── icon-zoom-out.svg ├── light │ ├── icon-copy.svg │ ├── icon-dl.svg │ ├── icon-eye.svg │ ├── icon-zoom-in.svg │ └── icon-zoom-out.svg └── logo.png ├── media ├── jsconfig.json ├── main.d.ts └── main.js ├── package.json ├── shell.nix ├── src ├── Logger.ts ├── ProgressStatusBar.ts ├── VSCodeWrapper.ts ├── constants │ ├── commands.ts │ ├── constants.ts │ ├── index.ts │ └── strings.ts ├── controllers │ ├── MermaidLibraryService.ts │ ├── PopupViewProvider.ts │ ├── SystemCommandService.ts │ ├── mainController.ts │ └── viewStateStore.ts ├── extension.ts ├── models │ ├── FileGeneratorService.ts │ ├── FileSystemService.ts │ ├── MermaidLibraryProvider.ts │ ├── configration │ │ ├── ConfigurationProvider.ts │ │ ├── GeneratorConfigProvider.ts │ │ ├── MermaidConfig.ts │ │ ├── MermaidConfigService.ts │ │ └── PreviewConfigProvider.ts │ └── editor │ │ ├── Attribute.ts │ │ ├── AttributeParseService.ts │ │ ├── Code.ts │ │ ├── MermaidDocument.ts │ │ ├── MermaidDocumentProvider.ts │ │ └── TextDocumentProvider.ts ├── test │ ├── fixtures │ │ ├── sequence.mmd │ │ └── test.txt │ ├── runTest.ts │ └── suite │ │ ├── Queue.test.ts │ │ ├── Timer.test.ts │ │ ├── extension.test.ts │ │ ├── index.ts │ │ ├── models │ │ ├── MermaidLibraryProvider.test.ts │ │ ├── configuration │ │ │ ├── FileGeneratorService.test.ts │ │ │ ├── GeneratorConfigProvider.test.ts │ │ │ ├── MermaidConfig.test.ts │ │ │ ├── MermaidConfigService.test.ts │ │ │ └── PreviewConfigProvider.test.ts │ │ └── editor │ │ │ ├── AttributePaseService.test.ts │ │ │ ├── Attrubute.test.ts │ │ │ ├── Code.test.ts │ │ │ ├── MermaidDocument.test.ts │ │ │ └── MermaidDocumentProvider.test.ts │ │ ├── view │ │ ├── DiagramWebView.test.ts │ │ ├── Renderer.test.ts │ │ └── WebViewManager.test.ts │ │ └── viewStateStore.test.ts ├── utils │ ├── Queue.ts │ └── Timer.ts └── view │ ├── DiagramWebView.ts │ ├── DiagramWebViewTypes.ts │ ├── Renderer.ts │ ├── WebViewManager.ts │ └── WebViewPanelProvider.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | media/* 2 | webpack.config.js -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn pretest 5 | -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "**/*.ts": "eslint src --fix" 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/azure-pipeline.yaml -------------------------------------------------------------------------------- /images/dark/icon-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/dark/icon-copy.svg -------------------------------------------------------------------------------- /images/dark/icon-dl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/dark/icon-dl.svg -------------------------------------------------------------------------------- /images/dark/icon-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/dark/icon-eye.svg -------------------------------------------------------------------------------- /images/dark/icon-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/dark/icon-zoom-in.svg -------------------------------------------------------------------------------- /images/dark/icon-zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/dark/icon-zoom-out.svg -------------------------------------------------------------------------------- /images/light/icon-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/light/icon-copy.svg -------------------------------------------------------------------------------- /images/light/icon-dl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/light/icon-dl.svg -------------------------------------------------------------------------------- /images/light/icon-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/light/icon-eye.svg -------------------------------------------------------------------------------- /images/light/icon-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/light/icon-zoom-in.svg -------------------------------------------------------------------------------- /images/light/icon-zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/light/icon-zoom-out.svg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/images/logo.png -------------------------------------------------------------------------------- /media/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/media/jsconfig.json -------------------------------------------------------------------------------- /media/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/media/main.d.ts -------------------------------------------------------------------------------- /media/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/media/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/package.json -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/shell.nix -------------------------------------------------------------------------------- /src/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/Logger.ts -------------------------------------------------------------------------------- /src/ProgressStatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/ProgressStatusBar.ts -------------------------------------------------------------------------------- /src/VSCodeWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/VSCodeWrapper.ts -------------------------------------------------------------------------------- /src/constants/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/constants/commands.ts -------------------------------------------------------------------------------- /src/constants/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/constants/constants.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/constants/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/constants/strings.ts -------------------------------------------------------------------------------- /src/controllers/MermaidLibraryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/controllers/MermaidLibraryService.ts -------------------------------------------------------------------------------- /src/controllers/PopupViewProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/controllers/PopupViewProvider.ts -------------------------------------------------------------------------------- /src/controllers/SystemCommandService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/controllers/SystemCommandService.ts -------------------------------------------------------------------------------- /src/controllers/mainController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/controllers/mainController.ts -------------------------------------------------------------------------------- /src/controllers/viewStateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/controllers/viewStateStore.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/models/FileGeneratorService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/FileGeneratorService.ts -------------------------------------------------------------------------------- /src/models/FileSystemService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/FileSystemService.ts -------------------------------------------------------------------------------- /src/models/MermaidLibraryProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/MermaidLibraryProvider.ts -------------------------------------------------------------------------------- /src/models/configration/ConfigurationProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/configration/ConfigurationProvider.ts -------------------------------------------------------------------------------- /src/models/configration/GeneratorConfigProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/configration/GeneratorConfigProvider.ts -------------------------------------------------------------------------------- /src/models/configration/MermaidConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/configration/MermaidConfig.ts -------------------------------------------------------------------------------- /src/models/configration/MermaidConfigService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/configration/MermaidConfigService.ts -------------------------------------------------------------------------------- /src/models/configration/PreviewConfigProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/configration/PreviewConfigProvider.ts -------------------------------------------------------------------------------- /src/models/editor/Attribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/editor/Attribute.ts -------------------------------------------------------------------------------- /src/models/editor/AttributeParseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/editor/AttributeParseService.ts -------------------------------------------------------------------------------- /src/models/editor/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/editor/Code.ts -------------------------------------------------------------------------------- /src/models/editor/MermaidDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/editor/MermaidDocument.ts -------------------------------------------------------------------------------- /src/models/editor/MermaidDocumentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/editor/MermaidDocumentProvider.ts -------------------------------------------------------------------------------- /src/models/editor/TextDocumentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/models/editor/TextDocumentProvider.ts -------------------------------------------------------------------------------- /src/test/fixtures/sequence.mmd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/fixtures/test.txt: -------------------------------------------------------------------------------- 1 | Hellow Tests! -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/Queue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/Queue.test.ts -------------------------------------------------------------------------------- /src/test/suite/Timer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/Timer.test.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/test/suite/models/MermaidLibraryProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/MermaidLibraryProvider.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/configuration/FileGeneratorService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/configuration/FileGeneratorService.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/configuration/GeneratorConfigProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/configuration/GeneratorConfigProvider.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/configuration/MermaidConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/configuration/MermaidConfig.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/configuration/MermaidConfigService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/configuration/MermaidConfigService.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/configuration/PreviewConfigProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/configuration/PreviewConfigProvider.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/editor/AttributePaseService.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/editor/AttributePaseService.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/editor/Attrubute.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/editor/Attrubute.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/editor/Code.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/editor/Code.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/editor/MermaidDocument.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/editor/MermaidDocument.test.ts -------------------------------------------------------------------------------- /src/test/suite/models/editor/MermaidDocumentProvider.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/models/editor/MermaidDocumentProvider.test.ts -------------------------------------------------------------------------------- /src/test/suite/view/DiagramWebView.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/view/DiagramWebView.test.ts -------------------------------------------------------------------------------- /src/test/suite/view/Renderer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/view/Renderer.test.ts -------------------------------------------------------------------------------- /src/test/suite/view/WebViewManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/view/WebViewManager.test.ts -------------------------------------------------------------------------------- /src/test/suite/viewStateStore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/test/suite/viewStateStore.test.ts -------------------------------------------------------------------------------- /src/utils/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/utils/Queue.ts -------------------------------------------------------------------------------- /src/utils/Timer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/utils/Timer.ts -------------------------------------------------------------------------------- /src/view/DiagramWebView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/view/DiagramWebView.ts -------------------------------------------------------------------------------- /src/view/DiagramWebViewTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/view/DiagramWebViewTypes.ts -------------------------------------------------------------------------------- /src/view/Renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/view/Renderer.ts -------------------------------------------------------------------------------- /src/view/WebViewManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/view/WebViewManager.ts -------------------------------------------------------------------------------- /src/view/WebViewPanelProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/src/view/WebViewPanelProvider.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomoyukim/vscode-mermaid-editor/HEAD/yarn.lock --------------------------------------------------------------------------------