Skip to content

Commit be6d2fe

Browse files
committed
added note about vscodeignore to bundle reminder
1 parent d4c2702 commit be6d2fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/package.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ export async function pack(options: IPackageOptions = {}): Promise<IPackageResul
847847

848848
const files = await collect(manifest, options);
849849
if (files.length > 100) {
850-
console.log(`This extension consists of ${files.length} separate files. For performance reasons, you should bundle your extension: https://aka.ms/vscode-bundle-extension`);
850+
console.log(`This extension consists of ${files.length} separate files. For performance reasons, you should bundle your extension: https://aka.ms/vscode-bundle-extension. You should also exclude unnecessary files by adding them to your .vscodeignore: https://code.visualstudio.com/api/working-with-extensions/publishing-extension#.vscodeignore`);
851851
}
852852
const packagePath = await writeVsix(files, path.resolve(options.packagePath || defaultPackagePath(cwd, manifest)));
853853

0 commit comments

Comments
 (0)