1
0
Форкнуть 0

Renaming setup.py to process_user_code.py (#38)

PBI : 30298 - Task : 30384
This commit is contained in:
Christellah 2019-07-10 11:58:02 -07:00 коммит произвёл GitHub
Родитель bceaca8a2a
Коммит 62621ad1aa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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" });

Просмотреть файл