├── .eslintrc.js ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── commands.png ├── devTools.png ├── launchJson.png ├── logo.png └── video.gif ├── package.json ├── pnpm-lock.yaml ├── src ├── commands │ ├── index.ts │ ├── publish.ts │ └── run.ts ├── context.ts ├── core │ ├── devtools │ │ ├── index.ts │ │ └── weixin.ts │ └── uniapp │ │ ├── command.ts │ │ ├── index.ts │ │ └── process.ts ├── debugger │ ├── uniappDebug.ts │ ├── uniappDebugConfiguration.ts │ └── uniappDebugFactory.ts ├── explorer │ └── index.ts └── extension.ts ├── tsconfig.json └── vsc-extension-quickstart.md /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts = true -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/README.md -------------------------------------------------------------------------------- /images/commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/images/commands.png -------------------------------------------------------------------------------- /images/devTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/images/devTools.png -------------------------------------------------------------------------------- /images/launchJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/images/launchJson.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/images/video.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/commands/index.ts -------------------------------------------------------------------------------- /src/commands/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/commands/publish.ts -------------------------------------------------------------------------------- /src/commands/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/commands/run.ts -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/core/devtools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/core/devtools/index.ts -------------------------------------------------------------------------------- /src/core/devtools/weixin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/core/devtools/weixin.ts -------------------------------------------------------------------------------- /src/core/uniapp/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/core/uniapp/command.ts -------------------------------------------------------------------------------- /src/core/uniapp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/core/uniapp/index.ts -------------------------------------------------------------------------------- /src/core/uniapp/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/core/uniapp/process.ts -------------------------------------------------------------------------------- /src/debugger/uniappDebug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/debugger/uniappDebug.ts -------------------------------------------------------------------------------- /src/debugger/uniappDebugConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/debugger/uniappDebugConfiguration.ts -------------------------------------------------------------------------------- /src/debugger/uniappDebugFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/debugger/uniappDebugFactory.ts -------------------------------------------------------------------------------- /src/explorer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/explorer/index.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/src/extension.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hb0730/vscode-uniapp-run/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------