@@ -36,8 +36,6 @@ module.exports =
3636/******/ // Load entry module and return exports
3737/******/ return __webpack_require__ ( 198 ) ;
3838/******/ } ;
39- /******/ // initialize runtime
40- /******/ runtime ( __webpack_require__ ) ;
4139/******/
4240/******/ // run startup
4341/******/ return startup ( ) ;
@@ -424,10 +422,9 @@ module.exports = {
424422/***/ } ) ,
425423
426424/***/ 39 :
427- /***/ ( function ( module , exports , __webpack_require__ ) {
425+ /***/ ( function ( __unusedmodule , exports , __webpack_require__ ) {
428426
429427"use strict" ;
430- /* module decorator */ module = __webpack_require__ . nmd ( module ) ;
431428
432429// This file does the real work, you can test it locally via
433430//
@@ -450,10 +447,11 @@ const fs_1 = __webpack_require__(747);
450447const vscode_1 = __webpack_require__ ( 166 ) ;
451448const npm_1 = __webpack_require__ ( 509 ) ;
452449exports . runDeployer = ( settings ) => __awaiter ( void 0 , void 0 , void 0 , function * ( ) {
450+ console . log ( `Looking at changes in${ settings . cwd } since${ settings . since } ` ) ;
453451const files = child_process_1 . execSync ( `git log --pretty=format: --name-only --since="${ settings . since } "` , { encoding :'utf8' , cwd :settings . cwd } ) ;
454452const changedPackages = getChangedPackages ( files ) ;
455453const packageMetadata = getPackageMetadata ( changedPackages , settings ) ;
456- console . log ( "Found the following packages with changes: " , packageMetadata ) ;
454+ console . log ( "Found the following packages with changes: " , [ ... packageMetadata ] . map ( m => m . name ) ) ;
457455const deployablePackages = filterPackages ( packageMetadata ) ;
458456yield bumpVersions ( deployablePackages ) ;
459457yield deploy ( deployablePackages ) ;
@@ -465,11 +463,12 @@ function deploy(packageMetadata) {
465463if ( packageMD . type === 'vscode' ) {
466464child_process_1 . execSync ( `npx vsce publish --yarn -p${ process . env . VSCE_TOKEN } ` , {
467465encoding :'utf8' ,
468- cwd :packageMD . path
466+ cwd :packageMD . path ,
467+ stdio :'inherit'
469468} ) ;
470469}
471470else if ( packageMD . type === 'npm' ) {
472- child_process_1 . execSync ( `npm publish` , { encoding :'utf8' , cwd :packageMD . path } ) ;
471+ child_process_1 . execSync ( `npm publish` , { encoding :'utf8' , cwd :packageMD . path , stdio : 'inherit' } ) ;
473472}
474473}
475474} ) ;
@@ -536,9 +535,7 @@ function getChangedPackages(files) {
536535} ) ;
537536return changedPackages ;
538537}
539- if ( ! module . parent ) {
540- exports . runDeployer ( { since :'30 day ago' , cwd :'../language-tools' } ) ;
541- }
538+ if ( false ) { }
542539
543540
544541/***/ } ) ,
@@ -4052,26 +4049,4 @@ module.exports = function buildFullPath(baseURL, requestedURL) {
40524049
40534050/***/ } )
40544051
4055- /******/ } ,
4056- /******/ function ( __webpack_require__ ) { // webpackRuntimeModules
4057- /******/ "use strict" ;
4058- /******/
4059- /******/ /* webpack/runtime/node module decorator */
4060- /******/ ! function ( ) {
4061- /******/ __webpack_require__ . nmd = function ( module ) {
4062- /******/ module . paths = [ ] ;
4063- /******/ if ( ! module . children ) module . children = [ ] ;
4064- /******/ Object . defineProperty ( module , 'loaded' , {
4065- /******/ enumerable :true ,
4066- /******/ get :function ( ) { return module . l ; }
4067- /******/ } ) ;
4068- /******/ Object . defineProperty ( module , 'id' , {
4069- /******/ enumerable :true ,
4070- /******/ get :function ( ) { return module . i ; }
4071- /******/ } ) ;
4072- /******/ return module ;
4073- /******/ } ;
4074- /******/ } ( ) ;
4075- /******/
4076- /******/ }
4077- ) ;
4052+ /******/ } ) ;