Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ let perfStats = {

Object.defineProperty(exports, "__esModule", { value: true });

const extension = require('./out/src/extension');
const extension = require('./dist/extension.bundle');

async function activate(ctx) {
return await extension.activateInternal(ctx, perfStats, true /* ignoreBundle */);
return await extension.activateInternal(ctx, perfStats);
}

async function deactivate(ctx) {
Expand Down
2 changes: 1 addition & 1 deletion test/runTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import * as path from 'path';

async function main(): Promise<void> {
try {
const vscodeExecutablePath = await downloadAndUnzipVSCode('insiders');
const vscodeExecutablePath = await downloadAndUnzipVSCode('stable');
const [cli, ...args] = resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);

cp.spawnSync(
Expand Down