microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
bdbc6a68ae2015b1cf5e4dfca67d64bbbb427f77

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,
};