fix: reduce mangle to minimum
This commit is contained in:
parent
4afe89a9ce
commit
4b4cfe4f74
5 changed files with 49 additions and 23 deletions
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"tag": "1.75.0",
|
"tag": "1.75.0",
|
||||||
"commit": "b229eb5fa2ecadb8a5238ccb9f6f49f7ccba9d2b"
|
"commit": "0615c4f98b07b51d3be6a357e22afec119490c5a"
|
||||||
}
|
}
|
||||||
|
|
4
patch.sh
4
patch.sh
|
@ -15,8 +15,12 @@ if [[ -f "${FILE}" ]]; then
|
||||||
git apply --reject "${FILE}"
|
git apply --reject "${FILE}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
git apply --reject "../patches/helper/settings.patch"
|
||||||
|
|
||||||
read -p "Press any key when the conflict have been resolved..." -n1 -s
|
read -p "Press any key when the conflict have been resolved..." -n1 -s
|
||||||
|
|
||||||
|
git restore .vscode/settings.json
|
||||||
|
|
||||||
git add .
|
git add .
|
||||||
git diff --staged -U1 > "${FILE}"
|
git diff --staged -U1 > "${FILE}"
|
||||||
|
|
||||||
|
|
23
patches/helper/settings.patch
Normal file
23
patches/helper/settings.patch
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
diff --git a/.vscode/settings.json b/.vscode/settings.json
|
||||||
|
index 7ae8bce..724b9ad 100644
|
||||||
|
--- a/.vscode/settings.json
|
||||||
|
+++ b/.vscode/settings.json
|
||||||
|
@@ -9,5 +9,5 @@
|
||||||
|
"cli/target": true,
|
||||||
|
- "build/**/*.js": {
|
||||||
|
- "when": "$(basename).ts"
|
||||||
|
- }
|
||||||
|
+ // "build/**/*.js": {
|
||||||
|
+ // "when": "$(basename).ts"
|
||||||
|
+ // }
|
||||||
|
},
|
||||||
|
@@ -81,3 +81,3 @@
|
||||||
|
"gulp.autoDetect": "off",
|
||||||
|
- "files.insertFinalNewline": true,
|
||||||
|
+ // "files.insertFinalNewline": true,
|
||||||
|
"[plaintext]": {
|
||||||
|
@@ -91,3 +91,3 @@
|
||||||
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
||||||
|
- "editor.formatOnSave": true
|
||||||
|
+ // "editor.formatOnSave": true
|
||||||
|
},
|
File diff suppressed because one or more lines are too long
14
product.json
14
product.json
|
@ -48,7 +48,8 @@
|
||||||
],
|
],
|
||||||
"extensionEnabledApiProposals": {
|
"extensionEnabledApiProposals": {
|
||||||
"ms-vscode.vscode-selfhost-test-provider": [
|
"ms-vscode.vscode-selfhost-test-provider": [
|
||||||
"testObserver"
|
"testObserver",
|
||||||
|
"testContinuousRun"
|
||||||
],
|
],
|
||||||
"VisualStudioExptTeam.vscodeintellicode-completions": [
|
"VisualStudioExptTeam.vscodeintellicode-completions": [
|
||||||
"inlineCompletionsAdditions"
|
"inlineCompletionsAdditions"
|
||||||
|
@ -76,8 +77,7 @@
|
||||||
],
|
],
|
||||||
"ms-python.python": [
|
"ms-python.python": [
|
||||||
"quickPickSortByLabel",
|
"quickPickSortByLabel",
|
||||||
"testObserver",
|
"testObserver"
|
||||||
"telemetryLogger"
|
|
||||||
],
|
],
|
||||||
"ms-dotnettools.dotnet-interactive-vscode": [
|
"ms-dotnettools.dotnet-interactive-vscode": [
|
||||||
"notebookMessaging"
|
"notebookMessaging"
|
||||||
|
@ -95,7 +95,6 @@
|
||||||
],
|
],
|
||||||
"ms-vscode.azure-repos": [
|
"ms-vscode.azure-repos": [
|
||||||
"extensionRuntime",
|
"extensionRuntime",
|
||||||
"telemetryLogger",
|
|
||||||
"fileSearchProvider",
|
"fileSearchProvider",
|
||||||
"textSearchProvider"
|
"textSearchProvider"
|
||||||
],
|
],
|
||||||
|
@ -115,7 +114,6 @@
|
||||||
"scmActionButton",
|
"scmActionButton",
|
||||||
"scmSelectedProvider",
|
"scmSelectedProvider",
|
||||||
"scmValidation",
|
"scmValidation",
|
||||||
"telemetryLogger",
|
|
||||||
"textSearchProvider",
|
"textSearchProvider",
|
||||||
"timeline"
|
"timeline"
|
||||||
],
|
],
|
||||||
|
@ -169,7 +167,8 @@
|
||||||
"treeItemCheckbox",
|
"treeItemCheckbox",
|
||||||
"codiconDecoration",
|
"codiconDecoration",
|
||||||
"diffCommand",
|
"diffCommand",
|
||||||
"contribCommentEditorActionsMenu"
|
"contribCommentEditorActionsMenu",
|
||||||
|
"quickDiffProvider"
|
||||||
],
|
],
|
||||||
"GitHub.copilot": [
|
"GitHub.copilot": [
|
||||||
"inlineCompletionsAdditions"
|
"inlineCompletionsAdditions"
|
||||||
|
@ -190,8 +189,7 @@
|
||||||
"scmSelectedProvider",
|
"scmSelectedProvider",
|
||||||
"scmValidation",
|
"scmValidation",
|
||||||
"textSearchProvider",
|
"textSearchProvider",
|
||||||
"timeline",
|
"timeline"
|
||||||
"telemetryLogger"
|
|
||||||
],
|
],
|
||||||
"ms-python.gather": [
|
"ms-python.gather": [
|
||||||
"notebookCellExecutionState"
|
"notebookCellExecutionState"
|
||||||
|
|
Loading…
Reference in a new issue