Skip to content

Commit d0f8dc9

Browse files
authored
Merge pull request microsoft#261500 from mjbvz/unchanged-rodent
Remove bower package intellisense from core
2 parents c76b15a + f7912a4 commit d0f8dc9

2 files changed

Lines changed: 1 addition & 210 deletions

File tree

extensions/npm/src/features/bowerJSONContribution.ts

Lines changed: 0 additions & 208 deletions
This file was deleted.

extensions/npm/src/features/jsonContributions.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import { Location, getLocation, createScanner, SyntaxKind, ScanError, JSONScanner } from 'jsonc-parser';
7-
import { BowerJSONContribution } from './bowerJSONContribution';
87
import { PackageJSONContribution } from './packageJSONContribution';
98
import { XHRRequest } from 'request-light';
109

@@ -30,7 +29,7 @@ export interface IJSONContribution {
3029
}
3130

3231
export function addJSONProviders(xhr: XHRRequest, npmCommandPath: string | undefined): Disposable {
33-
const contributions = [new PackageJSONContribution(xhr, npmCommandPath), new BowerJSONContribution(xhr)];
32+
const contributions = [new PackageJSONContribution(xhr, npmCommandPath)];
3433
const subscriptions: Disposable[] = [];
3534
contributions.forEach(contribution => {
3635
const selector = contribution.getDocumentSelector();

0 commit comments

Comments
 (0)