Renaming setup.py to process_user_code.py (#38)
PBI : 30298 - Task : 30384
This commit is contained in:
Родитель
bceaca8a2a
Коммит
62621ad1aa
|
@ -52,7 +52,7 @@
|
|||
- src
|
||||
- `adafruit_circuitplayground` : our mock library
|
||||
- `extension.ts` : our extension code
|
||||
- `setup.py` : the file containing the code ran by the Python process spawned by the extension, responsible for running the user's code
|
||||
- `process_user_code.py` : the file containing the code ran by the Python process spawned by the extension, responsible for running the user's code
|
||||
- `view` : React side
|
||||
- `components/`
|
||||
- `cpx/` and `Simulator.tsx` : contain the React components and objects to display and handle the simulator webview
|
||||
|
|
|
@ -142,7 +142,7 @@ export function activate(context: vscode.ExtensionContext) {
|
|||
|
||||
// Get the Python script path (And the special URI to use with the webview)
|
||||
const onDiskPath = vscode.Uri.file(
|
||||
path.join(context.extensionPath, "out", "setup.py")
|
||||
path.join(context.extensionPath, "out", "process_user_code.py")
|
||||
);
|
||||
const scriptPath = onDiskPath.with({ scheme: "vscode-resource" });
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче