microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1fe78525cb3778a3fadfcad91e71c2720d5cb626

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

gulp_scripts/packager.js

14lines · modepreview

const gulp = require("gulp");
const path = require("path");
const GulpExtras = require("../tools/gulp-extras");
const executeCommand = GulpExtras.executeCommand;

function package(cb) {
    const command = path.join("./node_modules", ".bin", "vsce");
    const args = ["package"];
    executeCommand(command, args, cb);
}

module.exports = {
    package,
};