Skip to content

Commit 82050ff

Browse files
Fix package version (microsoft#29)
* Fix package dependencies * Remove comments
1 parent bb98921 commit 82050ff

File tree

13 files changed

+12527
-12554
lines changed

13 files changed

+12527
-12554
lines changed

.vscode/launch.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@
1616
"${workspaceFolder}/dist/**/*.js",
1717
"!${workspaceFolder}/**/node_modules**/*"
1818
],
19-
"preLaunchTask": "${defaultBuildTask}",
20-
"skipFiles": ["<node_internals>/**"]
19+
"preLaunchTask": "npm: watch",
20+
"presentation": {
21+
"hidden": false,
22+
"group": "",
23+
"order": 2
24+
}
2125
},
2226
{
2327
"name": "Unit Tests",
@@ -35,4 +39,4 @@
3539
"preLaunchTask": "tasks: watch-tests"
3640
},
3741
]
38-
}
42+
}

.vscode/settings.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,5 @@
1212
},
1313
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1414
"typescript.tsc.autoDetect": "off",
15-
"python.testing.pytestArgs": ["src/test/python_tests"],
16-
"python.testing.unittestEnabled": false,
17-
"python.testing.pytestEnabled": true,
18-
"python.testing.cwd": "${workspaceFolder}",
1915
"python.linting.flake8Enabled": true,
20-
"python.formatting.provider": "black",
21-
"editor.formatOnSave": true
22-
}
16+
}

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{
77
"type": "npm",
88
"script": "watch",
9-
"problemMatcher": "$tsc-watch",
9+
"problemMatcher": "$ts-webpack-watch",
1010
"isBackground": true,
1111
"presentation": {
1212
"reveal": "never",

noxfile.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,6 @@ def _install_bundle(session: nox.Session) -> None:
3030

3131
def _update_pip_packages(session: nox.Session) -> None:
3232
session.run("pip-compile", "--generate-hashes", "--upgrade", "./requirements.in")
33-
session.run(
34-
"pip-compile",
35-
"--generate-hashes",
36-
"--upgrade",
37-
"./src/test/python_tests/requirements.in",
38-
)
3933

4034

4135
@nox.session()

0 commit comments

Comments
 (0)