File tree Expand file tree Collapse file tree 3 files changed +12
-16
lines changed
Expand file tree Collapse file tree 3 files changed +12
-16
lines changed Original file line number Diff line number Diff line change 1- .vscode /**
2- .vscode-test /**
31src /**
4- .gitignore
5- .yarnrc
6- ** /* .map
7- ** /* .ts
8- ** /tsconfig.json
9- esbuild.js
102node_modules /**
11- bun.lockb
3+ dist /test /**
4+ . * /
5+ . *
6+ * .lock *
7+ * .json
8+ ! package.json
9+ esbuild.js
Original file line number Diff line number Diff line change 33 "displayName" : " FastAPI Extension" ,
44 "description" : " VS Code extension for FastAPI development" ,
55 "version" : " 0.0.1" ,
6- "publisher" : " FastAPI Labs " ,
6+ "publisher" : " FastAPILabs " ,
77 "engines" : {
88 "vscode" : " ^1.85.0"
99 },
107107 "@vscode/vsce" : " ^3.7.1" ,
108108 "esbuild" : " ^0.27.2" ,
109109 "husky" : " ^9.1.7" ,
110- "lint-staged" : " ^16.2.7"
111- },
112- "peerDependencies" : {
113- "typescript" : " ^5"
110+ "lint-staged" : " ^16.2.7" ,
111+ "typescript" : " ^5.0.0"
114112 },
115113 "license" : " MIT" ,
116114 "repository" : {
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ import * as vscode from "vscode"
33
44suite ( "Extension Test Suite" , ( ) => {
55 test ( "Extension should be present" , ( ) => {
6- assert . ok ( vscode . extensions . getExtension ( "FastAPI Labs .fastapi-vscode" ) )
6+ assert . ok ( vscode . extensions . getExtension ( "FastAPILabs .fastapi-vscode" ) )
77 } )
88
99 test ( "Extension should activate" , async ( ) => {
10- const ext = vscode . extensions . getExtension ( "FastAPI Labs .fastapi-vscode" )
10+ const ext = vscode . extensions . getExtension ( "FastAPILabs .fastapi-vscode" )
1111 assert . ok ( ext )
1212 await ext . activate ( )
1313 assert . strictEqual ( ext . isActive , true )
You can’t perform that action at this time.
0 commit comments