From: Julien Déramond Date: Sun, 18 Jun 2023 14:52:31 +0000 (+0200) Subject: Add `color-modes.js` to `bootstrap-x.y.z-examples.zip` (#38747) X-Git-Tag: v5.3.1~70 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5036f70e1c80cebb270aca8c1b422f8d4d4bd47f;p=thirdparty%2Fbootstrap.git Add `color-modes.js` to `bootstrap-x.y.z-examples.zip` (#38747) --- diff --git a/build/zip-examples.js b/build/zip-examples.js index 613376a975..7378c33c17 100644 --- a/build/zip-examples.js +++ b/build/zip-examples.js @@ -34,6 +34,9 @@ const imgFiles = [ 'bootstrap-logo.svg', 'bootstrap-logo-white.svg' ] +const staticJsFiles = [ + 'color-modes.js' +] sh.config.fatal = true @@ -52,7 +55,8 @@ sh.mkdir('-p', [ distFolder, `${distFolder}/assets/brand/`, `${distFolder}/assets/dist/css/`, - `${distFolder}/assets/dist/js/` + `${distFolder}/assets/dist/js/`, + `${distFolder}/assets/js/` ]) sh.cp('-Rf', `${docsDir}/examples/*`, distFolder) @@ -69,6 +73,10 @@ for (const file of imgFiles) { sh.cp('-f', `${docsDir}/assets/brand/${file}`, `${distFolder}/assets/brand/`) } +for (const file of staticJsFiles) { + sh.cp('-f', `${docsDir}/assets/js/${file}`, `${distFolder}/assets/js/`) +} + sh.rm(`${distFolder}/index.html`) // get all examples' HTML files