├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ └── pr-pipeline.yml ├── .gitignore ├── .prettierrc.yaml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README.prerelease.md ├── SECURITY.md ├── icon.png ├── img ├── browser-demo.gif ├── console-demo.gif ├── external-debug-demo.gif ├── external-window-demo.gif ├── find-demo.gif ├── live-refresh.gif ├── multi-root-demo.gif ├── no-workspace-preview.gif ├── open-context-menu.gif ├── open-preview-btn.gif ├── preview-target-setting.PNG ├── server-status.png ├── task-demo-2.gif ├── task-demo.gif └── webview-devtools-demo.gif ├── media ├── injectScript.js ├── main.js ├── preview-dark.svg ├── preview-light.svg └── vscode.css ├── package.json ├── package.nls.json ├── release_notes ├── images │ ├── july-2021 │ │ ├── sass-demo.gif │ │ └── start-server-demo.gif │ ├── june-2021 │ │ ├── auto-refresh-options.png │ │ ├── link-preview.gif │ │ ├── multi-root-demo.gif │ │ ├── nav-bar.PNG │ │ └── on-save-demo.gif │ └── v0_1 │ │ ├── browser-support-demo.gif │ │ ├── index-page-demo.gif │ │ ├── live-preview.gif │ │ ├── live-server-v0_1-overview.gif │ │ └── nav-demo.gif ├── july-2021.md ├── june-2021.md └── may-2021.md ├── scripts ├── applyPatchForPrerelease.js └── validateStable.js ├── src ├── connectionInfo │ ├── connection.ts │ └── connectionManager.ts ├── editorPreview │ ├── browserPreview.ts │ ├── pageHistoryTracker.ts │ ├── previewManager.ts │ └── webviewComm.ts ├── extension.ts ├── infoManagers │ └── endpointManager.ts ├── manager.ts ├── server │ ├── httpServer.ts │ ├── serverGrouping.ts │ ├── serverUtils │ │ ├── HTMLInjector.ts │ │ ├── contentLoader.ts │ │ └── statusBarNotifier.ts │ └── wsServer.ts ├── task │ ├── serverTaskLinkProvider.ts │ ├── serverTaskProvider.ts │ └── serverTaskTerminal.ts ├── test │ ├── runTest.ts │ └── suite │ │ ├── common.ts │ │ ├── connectionInfo.test.ts │ │ ├── endpointManager.test.ts │ │ ├── index.ts │ │ ├── manager.test.ts │ │ ├── mocks │ │ └── mockTelemetryReporter.ts │ │ ├── pathUtil.test.ts │ │ ├── preview.test.ts │ │ └── serverGrouping.test.ts ├── updateListener.ts └── utils │ ├── constants.ts │ ├── dispose.ts │ ├── externalBrowserUtils.ts │ ├── pathUtil.ts │ ├── settingsUtil.ts │ ├── terminalStyleUtil.ts │ └── utils.ts ├── test-workspace ├── baby_kermit.jpg ├── kermit.jpg ├── page0.html ├── page1.html ├── page2.html ├── styles.css ├── subfolder │ └── subfolder_page.html └── 测试目录 │ ├── page.html │ └── 测试.html ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/pr-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.github/workflows/pr-pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/README.md -------------------------------------------------------------------------------- /README.prerelease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/README.prerelease.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/SECURITY.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/icon.png -------------------------------------------------------------------------------- /img/browser-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/browser-demo.gif -------------------------------------------------------------------------------- /img/console-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/console-demo.gif -------------------------------------------------------------------------------- /img/external-debug-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/external-debug-demo.gif -------------------------------------------------------------------------------- /img/external-window-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/external-window-demo.gif -------------------------------------------------------------------------------- /img/find-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/find-demo.gif -------------------------------------------------------------------------------- /img/live-refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/live-refresh.gif -------------------------------------------------------------------------------- /img/multi-root-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/multi-root-demo.gif -------------------------------------------------------------------------------- /img/no-workspace-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/no-workspace-preview.gif -------------------------------------------------------------------------------- /img/open-context-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/open-context-menu.gif -------------------------------------------------------------------------------- /img/open-preview-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/open-preview-btn.gif -------------------------------------------------------------------------------- /img/preview-target-setting.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/preview-target-setting.PNG -------------------------------------------------------------------------------- /img/server-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/server-status.png -------------------------------------------------------------------------------- /img/task-demo-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/task-demo-2.gif -------------------------------------------------------------------------------- /img/task-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/task-demo.gif -------------------------------------------------------------------------------- /img/webview-devtools-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/img/webview-devtools-demo.gif -------------------------------------------------------------------------------- /media/injectScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/media/injectScript.js -------------------------------------------------------------------------------- /media/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/media/main.js -------------------------------------------------------------------------------- /media/preview-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/media/preview-dark.svg -------------------------------------------------------------------------------- /media/preview-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/media/preview-light.svg -------------------------------------------------------------------------------- /media/vscode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/media/vscode.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/package.nls.json -------------------------------------------------------------------------------- /release_notes/images/july-2021/sass-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/july-2021/sass-demo.gif -------------------------------------------------------------------------------- /release_notes/images/july-2021/start-server-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/july-2021/start-server-demo.gif -------------------------------------------------------------------------------- /release_notes/images/june-2021/auto-refresh-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/june-2021/auto-refresh-options.png -------------------------------------------------------------------------------- /release_notes/images/june-2021/link-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/june-2021/link-preview.gif -------------------------------------------------------------------------------- /release_notes/images/june-2021/multi-root-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/june-2021/multi-root-demo.gif -------------------------------------------------------------------------------- /release_notes/images/june-2021/nav-bar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/june-2021/nav-bar.PNG -------------------------------------------------------------------------------- /release_notes/images/june-2021/on-save-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/june-2021/on-save-demo.gif -------------------------------------------------------------------------------- /release_notes/images/v0_1/browser-support-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/v0_1/browser-support-demo.gif -------------------------------------------------------------------------------- /release_notes/images/v0_1/index-page-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/v0_1/index-page-demo.gif -------------------------------------------------------------------------------- /release_notes/images/v0_1/live-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/v0_1/live-preview.gif -------------------------------------------------------------------------------- /release_notes/images/v0_1/live-server-v0_1-overview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/v0_1/live-server-v0_1-overview.gif -------------------------------------------------------------------------------- /release_notes/images/v0_1/nav-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/images/v0_1/nav-demo.gif -------------------------------------------------------------------------------- /release_notes/july-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/july-2021.md -------------------------------------------------------------------------------- /release_notes/june-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/june-2021.md -------------------------------------------------------------------------------- /release_notes/may-2021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/release_notes/may-2021.md -------------------------------------------------------------------------------- /scripts/applyPatchForPrerelease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/scripts/applyPatchForPrerelease.js -------------------------------------------------------------------------------- /scripts/validateStable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/scripts/validateStable.js -------------------------------------------------------------------------------- /src/connectionInfo/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/connectionInfo/connection.ts -------------------------------------------------------------------------------- /src/connectionInfo/connectionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/connectionInfo/connectionManager.ts -------------------------------------------------------------------------------- /src/editorPreview/browserPreview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/editorPreview/browserPreview.ts -------------------------------------------------------------------------------- /src/editorPreview/pageHistoryTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/editorPreview/pageHistoryTracker.ts -------------------------------------------------------------------------------- /src/editorPreview/previewManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/editorPreview/previewManager.ts -------------------------------------------------------------------------------- /src/editorPreview/webviewComm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/editorPreview/webviewComm.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/infoManagers/endpointManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/infoManagers/endpointManager.ts -------------------------------------------------------------------------------- /src/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/manager.ts -------------------------------------------------------------------------------- /src/server/httpServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/server/httpServer.ts -------------------------------------------------------------------------------- /src/server/serverGrouping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/server/serverGrouping.ts -------------------------------------------------------------------------------- /src/server/serverUtils/HTMLInjector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/server/serverUtils/HTMLInjector.ts -------------------------------------------------------------------------------- /src/server/serverUtils/contentLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/server/serverUtils/contentLoader.ts -------------------------------------------------------------------------------- /src/server/serverUtils/statusBarNotifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/server/serverUtils/statusBarNotifier.ts -------------------------------------------------------------------------------- /src/server/wsServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/server/wsServer.ts -------------------------------------------------------------------------------- /src/task/serverTaskLinkProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/task/serverTaskLinkProvider.ts -------------------------------------------------------------------------------- /src/task/serverTaskProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/task/serverTaskProvider.ts -------------------------------------------------------------------------------- /src/task/serverTaskTerminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/task/serverTaskTerminal.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/common.ts -------------------------------------------------------------------------------- /src/test/suite/connectionInfo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/connectionInfo.test.ts -------------------------------------------------------------------------------- /src/test/suite/endpointManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/endpointManager.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/test/suite/manager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/manager.test.ts -------------------------------------------------------------------------------- /src/test/suite/mocks/mockTelemetryReporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/mocks/mockTelemetryReporter.ts -------------------------------------------------------------------------------- /src/test/suite/pathUtil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/pathUtil.test.ts -------------------------------------------------------------------------------- /src/test/suite/preview.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/preview.test.ts -------------------------------------------------------------------------------- /src/test/suite/serverGrouping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/test/suite/serverGrouping.test.ts -------------------------------------------------------------------------------- /src/updateListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/updateListener.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/dispose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/utils/dispose.ts -------------------------------------------------------------------------------- /src/utils/externalBrowserUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/utils/externalBrowserUtils.ts -------------------------------------------------------------------------------- /src/utils/pathUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/utils/pathUtil.ts -------------------------------------------------------------------------------- /src/utils/settingsUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/utils/settingsUtil.ts -------------------------------------------------------------------------------- /src/utils/terminalStyleUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/utils/terminalStyleUtil.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /test-workspace/baby_kermit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/test-workspace/baby_kermit.jpg -------------------------------------------------------------------------------- /test-workspace/kermit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/test-workspace/kermit.jpg -------------------------------------------------------------------------------- /test-workspace/page0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/test-workspace/page0.html -------------------------------------------------------------------------------- /test-workspace/page1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/test-workspace/page1.html -------------------------------------------------------------------------------- /test-workspace/page2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/test-workspace/page2.html -------------------------------------------------------------------------------- /test-workspace/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/test-workspace/styles.css -------------------------------------------------------------------------------- /test-workspace/subfolder/subfolder_page.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-workspace/测试目录/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/test-workspace/测试目录/page.html -------------------------------------------------------------------------------- /test-workspace/测试目录/测试.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/test-workspace/测试目录/测试.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-livepreview/HEAD/yarn.lock --------------------------------------------------------------------------------