Skip to content

Commit 0c56e27

Browse files
committed
chore(package): fixed base href and deploy url params for the build demo prod task
1 parent adcecac commit 0c56e27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ gulp.task('build:demo', () => {
535535
});
536536

537537
gulp.task('build:demo:prod', () => {
538-
return execDemoCmd(`build --preserve-symlinks --prod --aot --build-optimizer --base-href /@angular-material-extensions/password-strength/ --deploy-url /@angular-material-extensions/password-strength/`, {cwd: `${config.demoDir}`});
538+
return execDemoCmd(`build --preserve-symlinks --prod --aot --build-optimizer --base-href /password-strength/ --deploy-url /password-strength/`, {cwd: `${config.demoDir}`});
539539
});
540540

541541
gulp.task('serve:demo-ssr', ['build:demo'], () => {
@@ -569,7 +569,7 @@ gulp.task('push:demo', () => {
569569
});
570570

571571
gulp.task('deploy:demo', (cb) => {
572-
runSequence('build:demo', 'build:doc', 'push:demo', cb);
572+
runSequence('build:demo:prod', 'build:doc', 'push:demo', cb);
573573
});
574574

575575

0 commit comments

Comments
 (0)