microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
unified-deduplication-logic-afterEach

Branches

Tags

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

Clone

HTTPS

Download ZIP

gulp_scripts/packager.js

14lines · modeblame

c29f0740benjaminbi3 years ago1const gulp = require("gulp");
2const path = require("path");
3const GulpExtras = require("../tools/gulp-extras");
4const executeCommand = GulpExtras.executeCommand;
5
6function package(cb) {
7const command = path.join("./node_modules", ".bin", "vsce");
8const args = ["package"];
9executeCommand(command, args, cb);
10}
11
12module.exports = {
13package,
14};