@@ -6,7 +6,7 @@ var exec = require('child_process').exec;
66var bump = require ( 'gulp-bump' ) ;
77var args = require ( 'yargs' ) . argv ;
88
9- // The default task (called when you run `gulp` from cli)
9+ // The default task (called when you run `gulp` from cli)
1010gulp . task ( 'default' , [ 'build' ] ) ;
1111
1212gulp . task ( 'clean' , function ( ) {
@@ -22,7 +22,7 @@ gulp.task('copy_language_server', function () {
2222} )
2323
2424gulp . task ( 'build_extension' , function ( callback ) {
25- exec ( 'node ./node_modules/vsce/out/vsce package' ,
25+ exec ( 'node ./node_modules/vsce/out/vsce package --baseContentUrl https://github.com/jpogran/puppet-vscode/client --baseImagesUrl https://github.com/jpogran/puppet-vscode/client ' ,
2626 function ( err , stdout , stderr ) {
2727 console . log ( stdout ) ;
2828 console . log ( stderr ) ;
@@ -41,9 +41,9 @@ gulp.task('bump', function () {
4141 /// Usage:
4242 /// 1. gulp bump : bumps the package.json and bower.json to the next minor revision.
4343 /// i.e. from 0.1.1 to 0.1.2
44- /// 2. gulp bump --version 1.1.1 : bumps/sets the package.json and bower.json to the
44+ /// 2. gulp bump --version 1.1.1 : bumps/sets the package.json and bower.json to the
4545 /// specified revision.
46- /// 3. gulp bump --type major : bumps 1.0.0
46+ /// 3. gulp bump --type major : bumps 1.0.0
4747 /// gulp bump --type minor : bumps 0.1.0
4848 /// gulp bump --type patch : bumps 0.0.2
4949 /// gulp bump --type prerelease : bumps 0.0.1-2
0 commit comments