Skip to content

Commit d2548d8

Browse files
committed
Revert changes in build-all.ts, use npm ci
1 parent 09b74f3 commit d2548d8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/scripts/build-all.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ const DEVEXTREME_NPM_DIR = path.join(ROOT_DIR, 'packages/devextreme/artifacts/np
1717
const injectDescriptions = () => {
1818
sh.pushd(ROOT_DIR);
1919

20-
const DOCUMENTATION_TEMP_DIR = path.join(ROOT_DIR, '..', 'doc_tmp');
20+
const DOCUMENTATION_TEMP_DIR = path.join(ARTIFACTS_DIR, 'doc_tmp');
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('pnpm i --frozen-lockfile');
25-
sh.exec(`pnpm run update-topics --artifacts ${INTERNAL_TOOLS_ARTIFACTS}`);
24+
sh.exec('npm ci');
25+
sh.exec(`npm run update-topics -- --artifacts ${INTERNAL_TOOLS_ARTIFACTS}`);
2626
sh.popd();
2727

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

0 commit comments

Comments
 (0)