diff --git a/package.json b/package.json index 3bbf4f3977d..ef25ddb96d6 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "checkdocs": "remark markdown --quiet --frail", "strapi:translate": "node scripts/strapi-en-to-other.mjs", "fixdocs": "remark markdown --quiet --frail --output", - "wbuildall": "lerna run wcibuild_step0 && lerna run wcibuild_step1 && lerna run wcibuild_step2 && lerna run wcibuild_step3 && lerna run wcibuild_step4 && lerna run wcibuild_step5 && lerna run wcibuild_step6 && lerna run wcibuild_step7", + "wbuildall": "npm run reconfigure && lerna run wcibuild_step0 && lerna run wcibuild_step1 && lerna run wcibuild_step2 && lerna run wcibuild_step3 && lerna run wcibuild_step4 && lerna run wcibuild_step5 && lerna run wcibuild_step6 && lerna run wcibuild_step7", "prepare": "husky install" }, "repository": { diff --git a/scripts/reconfigure.mjs b/scripts/reconfigure.mjs index 4348b53afb5..ca2cf1f6511 100644 --- a/scripts/reconfigure.mjs +++ b/scripts/reconfigure.mjs @@ -104,7 +104,7 @@ fs.writeFileSync(path.join(repo.path, 'CHANGELOG.md'), changelog('global')) // Step 5: Generate build script for published software log.write(chalk.blueBright('Generating buildall node script...')) const buildSteps = buildOrder.map((step, i) => `lerna run cibuild_step${i}`) -const buildAllCommand = buildSteps.join(' && ') +const buildAllCommand = 'npm run reconfigure && ' + buildSteps.join(' && ') const newRootPkgJson = { ...rootPackageJson } newRootPkgJson.scripts.buildall = buildAllCommand newRootPkgJson.scripts.wbuildall = buildAllCommand.replace(/cibuild/g, 'wcibuild') diff --git a/sites/lab/package.json b/sites/lab/package.json index 371ae3ddddb..eea86e2dbb1 100644 --- a/sites/lab/package.json +++ b/sites/lab/package.json @@ -36,7 +36,7 @@ "d3-drag": "3.0.0", "d3-selection": "3.0.0", "daisyui": "2.46.1", - "i18next": "22.4.6", + "i18next": "22.4.8", "lodash.get": "4.4.2", "lodash.orderby": "4.6.0", "lodash.set": "4.3.2", @@ -46,7 +46,7 @@ "react-copy-to-clipboard": "5.1.0", "react-hotkeys-hook": "4.3.2", "react-i18next": "12.1.1", - "react-instantsearch-dom": "6.38.1", + "react-instantsearch-dom": "6.38.2", "react-markdown": "8.0.4", "react-swipeable": "7.0.0", "react-timeago": "7.1.0",