How to use the vsce.publish function in vsce

To help you get started, we’ve selected a few vsce examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github egodigital / vscode-powertools / publish.js View on Github external
(async () => {
    try {
        // npm run deploy 
        const PAT = process.argv[2].trim();
        if ('' === PAT) {
            throw new Error(`No Personal Access Token defined!`);
        }

        await vsce.publish({
            cwd: __dirname,
            pat: PAT,
            useYarn: false,
        });
    } catch (e) {
        console.error(e);

        process.exit(1);
    }
})();
github microsoft / vscode-js-debug / gulpfile.js View on Github external
gulp.task('publish:vsce', () =>
  vsce.publish({
    noVerify: true, // for proposed API usage
    pat: process.env.MARKETPLACE_TOKEN,
    useYarn: true,
    cwd: distDir,
  }),
);
github zowe / vscode-extension-for-zowe / gulpfile.js View on Github external
const vscePublishTask = function() {
	return vsce.publish();
};
github microsoft / vscode-node-debug2 / gulpfile.js View on Github external
gulp.task('vsce-publish', () => {
    return vsce.publish();
});
gulp.task('vsce-package', () => {
github Yesterday17 / ZenScript / gulpfile.js View on Github external
gulp.task("vsce:publish", function() {
  return vsce.publish();
});
github robsonrosilva / advpl-sintaxe / gulpfile.js View on Github external
gulp.task('vsce:publish', function () {
  return vsce.publish();
});
github microsoft / vscode-node-debug / gulpfile.js View on Github external
gulp.task('vsce-publish', function() {
	return vsce.publish();
});
github microsoft / vscode-extension-samples / i18n-sample / gulpfile.js View on Github external
gulp.task('vsce:publish', function() {
	return vsce.publish();
});
github microsoft / WebTemplateStudio / src / extension / gulpfile.js View on Github external
gulp.task("vsce:publish", function() {
  return vsce.publish();
});
github facebookarchive / atom-ide-ui / modules / atom-ide-debugger-node / VendorLib / vscode-node-debug2 / gulpfile.js View on Github external
gulp.task('vsce-publish', function () {
    return vsce.publish();
});
gulp.task('vsce-package', function () {

vsce

VSCode Extension Manager

MIT
Latest version published 1 year ago

Package Health Score

53 / 100
Full package analysis