File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ src /**
2+ ! src /common /config.json
3+ out /**
4+ build /**
5+ extension.webpack.config.js
6+ tsconfig.json
7+ yarn.lock
8+ README.md
Original file line number Diff line number Diff line change 1+ # GitHub for Visual Studio Code
2+
3+ ** Notice:** This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.
4+
5+ ## Features
6+
7+ This extension provides GitHub features for VS Code.
Original file line number Diff line number Diff line change 1+ /*---------------------------------------------------------------------------------------------
2+ * Copyright (c) Microsoft Corporation. All rights reserved.
3+ * Licensed under the MIT License. See License.txt in the project root for license information.
4+ *--------------------------------------------------------------------------------------------*/
5+
6+ //@ts -check
7+
8+ 'use strict' ;
9+
10+ const withDefaults = require ( '../shared.webpack.config' ) ;
11+
12+ module . exports = withDefaults ( {
13+ context : __dirname ,
14+ entry : {
15+ extension : './src/extension.ts'
16+ }
17+ } ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " github" ,
3+ "displayName" : " %displayName%" ,
4+ "description" : " %description%" ,
5+ "publisher" : " vscode" ,
6+ "version" : " 0.0.1" ,
7+ "engines" : {
8+ "vscode" : " ^1.41.0"
9+ },
10+ "enableProposedApi" : true ,
11+ "categories" : [
12+ " Other"
13+ ],
14+ "activationEvents" : [
15+ " *"
16+ ],
17+ "main" : " ./out/extension.js" ,
18+ "scripts" : {
19+ "vscode:prepublish" : " npm run compile" ,
20+ "compile" : " gulp compile-extension:github" ,
21+ "watch" : " gulp watch-extension:github"
22+ },
23+ "dependencies" : {
24+ "vscode-nls" : " ^4.1.2"
25+ },
26+ "devDependencies" : {
27+ "@types/node" : " ^10.12.21"
28+ }
29+ }
Original file line number Diff line number Diff line change 1+ {
2+ "displayName" : " GitHub" ,
3+ "description" : " GitHub"
4+ }
Original file line number Diff line number Diff line change 1+ /*---------------------------------------------------------------------------------------------
2+ * Copyright (c) Microsoft Corporation. All rights reserved.
3+ * Licensed under the MIT License. See License.txt in the project root for license information.
4+ *--------------------------------------------------------------------------------------------*/
5+
6+ import * as vscode from 'vscode' ;
7+
8+ export async function activate ( context : vscode . ExtensionContext ) {
9+ console . log ( 'github is active!' ) ;
10+ }
Original file line number Diff line number Diff line change 1+ /*---------------------------------------------------------------------------------------------
2+ * Copyright (c) Microsoft Corporation. All rights reserved.
3+ * Licensed under the MIT License. See License.txt in the project root for license information.
4+ *--------------------------------------------------------------------------------------------*/
5+
6+ /// <reference path='../../../../src/vs/vscode.d.ts'/>
7+ /// <reference path='../../../../src/vs/vscode.proposed.d.ts'/>
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ../shared.tsconfig.json" ,
3+ "compilerOptions" : {
4+ "outDir" : " ./out" ,
5+ "experimentalDecorators" : true ,
6+ "typeRoots" : [
7+ " ./node_modules/@types"
8+ ]
9+ },
10+ "include" : [
11+ " src/**/*"
12+ ]
13+ }
Original file line number Diff line number Diff line change 1+ # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+ # yarn lockfile v1
3+
4+
5+ " @types/node@^10.12.21 " :
6+ version "10.17.14"
7+ resolved "https://registry.yarnpkg.com/@types/node/-/node-10.17.14.tgz#b6c60ebf2fb5e4229fdd751ff9ddfae0f5f31541"
8+ integrity sha512-G0UmX5uKEmW+ZAhmZ6PLTQ5eu/VPaT+d/tdLd5IFsKRPcbe6lPxocBtcYBFSaLaCW8O60AX90e91Nsp8lVHCNw==
9+
10+ vscode-nls@^4.1.2 :
11+ version "4.1.2"
12+ resolved "https://registry.yarnpkg.com/vscode-nls/-/vscode-nls-4.1.2.tgz#ca8bf8bb82a0987b32801f9fddfdd2fb9fd3c167"
13+ integrity sha512-7bOHxPsfyuCqmP+hZXscLhiHwe7CSuFE4hyhbs22xPIhQ4jv99FcR4eBzfYYVLP356HNFpdvz63FFb/xw6T4Iw==
You can’t perform that action at this time.
0 commit comments