Skip to content

Commit 7685e7b

Browse files
authored
CI: Remove npm scripts from build-all.ts file (DevExpress#33711)
1 parent 4f2a0f1 commit 7685e7b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/scripts/build-all.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const injectDescriptions = () => {
2121
sh.exec(`git clone -b ${MAJOR_VERSION} --depth 1 --config core.longpaths=true https://github.com/DevExpress/devextreme-documentation.git ${DOCUMENTATION_TEMP_DIR}`);
2222

2323
sh.pushd(DOCUMENTATION_TEMP_DIR);
24-
sh.exec('npm ci');
25-
sh.exec(`npm run update-topics -- --artifacts ${INTERNAL_TOOLS_ARTIFACTS}`);
24+
sh.exec('pnpm install --frozen-lockfile');
25+
sh.exec(`pnpm run update-topics -- --artifacts ${INTERNAL_TOOLS_ARTIFACTS}`);
2626
sh.popd();
2727

2828
sh.rm('-rf', DOCUMENTATION_TEMP_DIR);

0 commit comments

Comments
 (0)