mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Remove context builder Extension (#24156)
* Remove context builder ext * Compiled build dir output
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -278,7 +278,6 @@ const externalExtensions = [
|
|||||||
'azcli',
|
'azcli',
|
||||||
'azuremonitor',
|
'azuremonitor',
|
||||||
'cms',
|
'cms',
|
||||||
'context-builder',
|
|
||||||
'dacpac',
|
'dacpac',
|
||||||
'datavirtualization',
|
'datavirtualization',
|
||||||
'import',
|
'import',
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ const dirs = [
|
|||||||
'extensions/azuremonitor',
|
'extensions/azuremonitor',
|
||||||
'extensions/cms',
|
'extensions/cms',
|
||||||
'extensions/configuration-editing',
|
'extensions/configuration-editing',
|
||||||
'extensions/context-builder',
|
|
||||||
'extensions/dacpac',
|
'extensions/dacpac',
|
||||||
'extensions/data-workspace',
|
'extensions/data-workspace',
|
||||||
'extensions/datavirtualization',
|
'extensions/datavirtualization',
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"parserOptions": {
|
|
||||||
"project": "./extensions/context-builder/tsconfig.json"
|
|
||||||
},
|
|
||||||
"rules": {
|
|
||||||
"@typescript-eslint/no-floating-promises": [
|
|
||||||
"error",
|
|
||||||
{
|
|
||||||
"ignoreVoid": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
1
extensions/context-builder/.gitignore
vendored
1
extensions/context-builder/.gitignore
vendored
@@ -1 +0,0 @@
|
|||||||
*.vsix
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
src
|
|
||||||
out
|
|
||||||
tsconfig.json
|
|
||||||
.gitignore
|
|
||||||
coverage
|
|
||||||
coverConfig.json
|
|
||||||
extension.webpack.config.js
|
|
||||||
*.vsix
|
|
||||||
yarn.lock
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
# Context Builder Extension for Azure Data Studio
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
|
|
||||||
The Context Builder extension for Azure Data Studio assists with building context for the GitHub Copilot extension by maintaining a historical record of queries that have been executed. The tracked queries are provided to the GitHub Copilot extension, so that suggestions provided by Copilot are accurate and relevant to the current user's session.
|
|
||||||
|
|
||||||
## Privacy Statement
|
|
||||||
|
|
||||||
To learn more about our Privacy Statement visit [this link](https://go.microsoft.com/fwlink/?LinkID=824704).
|
|
||||||
|
|
||||||
## Feedback
|
|
||||||
|
|
||||||
Please report issues and feature requests [here.](https://github.com/microsoft/azuredatastudio/issues)
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
||||||
|
|
||||||
Licensed under the [Source EULA](https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt).
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
"enabled": true,
|
|
||||||
"relativeSourcePath": "..",
|
|
||||||
"relativeCoverageDir": "../../coverage",
|
|
||||||
"ignorePatterns": [
|
|
||||||
"**/node_modules/**",
|
|
||||||
"**/test/**",
|
|
||||||
"extension.js"
|
|
||||||
],
|
|
||||||
"reports": [
|
|
||||||
"cobertura",
|
|
||||||
"lcov",
|
|
||||||
"json"
|
|
||||||
],
|
|
||||||
"verbose": false,
|
|
||||||
"remapOptions": {
|
|
||||||
"basePath": "..",
|
|
||||||
"useAbsolutePaths": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
/*---------------------------------------------------------------------------------------------
|
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
||||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
||||||
*--------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
//@ts-check
|
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
const withDefaults = require('../shared.webpack.config');
|
|
||||||
|
|
||||||
module.exports = withDefaults({
|
|
||||||
context: __dirname,
|
|
||||||
entry: {
|
|
||||||
extension: './src/extension.ts'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.3 KiB |
@@ -1,49 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "context-builder",
|
|
||||||
"displayName": "%contextBuilder.displayName%",
|
|
||||||
"description": "%contextBuilder.description%",
|
|
||||||
"version": "0.1.0",
|
|
||||||
"publisher": "Microsoft",
|
|
||||||
"preview": true,
|
|
||||||
"engines": {
|
|
||||||
"vscode": "*",
|
|
||||||
"azdata": ">=1.45.0"
|
|
||||||
},
|
|
||||||
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
|
|
||||||
"icon": "images/extension.png",
|
|
||||||
"aiKey": "29a207bb14f84905966a8f22524cb730-25407f35-11b6-4d4e-8114-ab9e843cb52f-7380",
|
|
||||||
"activationEvents": [
|
|
||||||
"*"
|
|
||||||
],
|
|
||||||
"main": "./out/extension",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
||||||
},
|
|
||||||
"capabilities": {
|
|
||||||
"virtualWorkspaces": false,
|
|
||||||
"untrustedWorkspaces": {
|
|
||||||
"supported": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"extensionDependencies": [
|
|
||||||
"Microsoft.mssql"
|
|
||||||
],
|
|
||||||
"contributes": {
|
|
||||||
"commands": [
|
|
||||||
],
|
|
||||||
"menus": {
|
|
||||||
"objectExplorer/item/context": [
|
|
||||||
],
|
|
||||||
"dataExplorer/context": [
|
|
||||||
],
|
|
||||||
"commandPalette": [
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"vscode-nls": "^4.0.0"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"contextBuilder.displayName": "Context Builder",
|
|
||||||
"contextBuilder.description": "Context Builder extension for Azure Data Studio."
|
|
||||||
}
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
/*---------------------------------------------------------------------------------------------
|
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
||||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
||||||
*--------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
//import * as vscode from 'vscode';
|
|
||||||
|
|
||||||
export async function activate(/*context: vscode.ExtensionContext*/): Promise<void> {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
export function deactivate(): void {
|
|
||||||
|
|
||||||
}
|
|
||||||
10
extensions/context-builder/src/typings/ref.d.ts
vendored
10
extensions/context-builder/src/typings/ref.d.ts
vendored
@@ -1,10 +0,0 @@
|
|||||||
/*---------------------------------------------------------------------------------------------
|
|
||||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
||||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
||||||
*--------------------------------------------------------------------------------------------*/
|
|
||||||
|
|
||||||
/// <reference path='../../../../src/vscode-dts/vscode.d.ts'/>
|
|
||||||
/// <reference path='../../../../src/sql/azdata.d.ts'/>
|
|
||||||
/// <reference path='../../../../src/sql/azdata.proposed.d.ts'/>
|
|
||||||
/// <reference path='../../../mssql/src/mssql.d.ts'/>
|
|
||||||
/// <reference types='@types/node'/>
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../tsconfig.base.json",
|
|
||||||
"compileOnSave": true,
|
|
||||||
"compilerOptions": {
|
|
||||||
"outDir": "./out",
|
|
||||||
"lib": [
|
|
||||||
"es6",
|
|
||||||
"es2015.promise",
|
|
||||||
"dom"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"exclude": [
|
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
||||||
# yarn lockfile v1
|
|
||||||
|
|
||||||
|
|
||||||
vscode-nls@^4.0.0:
|
|
||||||
version "4.1.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/vscode-nls/-/vscode-nls-4.1.2.tgz#ca8bf8bb82a0987b32801f9fddfdd2fb9fd3c167"
|
|
||||||
integrity sha512-7bOHxPsfyuCqmP+hZXscLhiHwe7CSuFE4hyhbs22xPIhQ4jv99FcR4eBzfYYVLP356HNFpdvz63FFb/xw6T4Iw==
|
|
||||||
Reference in New Issue
Block a user