We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f2a0f1 commit 7685e7bCopy full SHA for 7685e7b
1 file changed
tools/scripts/build-all.ts
@@ -21,8 +21,8 @@ const injectDescriptions = () => {
21
sh.exec(`git clone -b ${MAJOR_VERSION} --depth 1 --config core.longpaths=true https://github.com/DevExpress/devextreme-documentation.git ${DOCUMENTATION_TEMP_DIR}`);
22
23
sh.pushd(DOCUMENTATION_TEMP_DIR);
24
- sh.exec('npm ci');
25
- sh.exec(`npm run update-topics -- --artifacts ${INTERNAL_TOOLS_ARTIFACTS}`);
+ sh.exec('pnpm install --frozen-lockfile');
+ sh.exec(`pnpm run update-topics -- --artifacts ${INTERNAL_TOOLS_ARTIFACTS}`);
26
sh.popd();
27
28
sh.rm('-rf', DOCUMENTATION_TEMP_DIR);
0 commit comments