1
0
mirror of https://github.com/tabler/tabler.git synced 2026-06-17 12:50:03 +04:00

exclude playgrounds from build (#1342)

This commit is contained in:
Paweł Kuna
2022-11-01 11:23:49 +01:00
committed by GitHub
parent 8ae0434bd1
commit 4e8fbec28f
3 changed files with 6 additions and 1 deletions
+1
View File
@@ -22,4 +22,5 @@ node_modules/
/components/
/percy.sh
/src/pages/playground.html
/src/pages/playground-*.html
/src/pages/features.html
+4
View File
@@ -0,0 +1,4 @@
exclude:
- redirects.json
- playground.html
- playground-*.html
+1 -1
View File
@@ -363,7 +363,7 @@ gulp.task('build-jekyll', (cb) => {
env.JEKYLL_ENV = 'production'
}
return spawn('bundle', ['exec', 'jekyll', 'build', '--destination', demoDir, '--trace'], {
return spawn('bundle', ['exec', 'jekyll', 'build', '--destination', demoDir, '--trace', '--config', '_config.yml,_config_prod.yml'], {
env: env,
stdio: 'inherit'
})