Skip to content

Commit 068c8b6

Browse files
committed
fix gulpfile packaging
1 parent 4f5d015 commit 068c8b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

client/gulpfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var exec = require('child_process').exec;
66
var bump = require('gulp-bump');
77
var 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)
1010
gulp.task('default', ['build']);
1111

1212
gulp.task('clean', function () {
@@ -22,7 +22,7 @@ gulp.task('copy_language_server', function () {
2222
})
2323

2424
gulp.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

Comments
 (0)