microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
gulp_scripts/packager.js
14lines · modeblame
c29f0740benjaminbi3 years ago | 1 | const gulp = require("gulp"); |
| 2 | const path = require("path"); | |
| 3 | const GulpExtras = require("../tools/gulp-extras"); | |
| 4 | const executeCommand = GulpExtras.executeCommand; | |
| 5 | | |
| 6 | function package(cb) { | |
| 7 | const command = path.join("./node_modules", ".bin", "vsce"); | |
| 8 | const args = ["package"]; | |
| 9 | executeCommand(command, args, cb); | |
| 10 | } | |
| 11 | | |
| 12 | module.exports = { | |
| 13 | package, | |
| 14 | }; |