Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/default_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
${{ runner.os }}-pnpm-store

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --config.optional=true

- name: Run targets
run: >
Expand Down
4 changes: 3 additions & 1 deletion e2e/bundlers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"cldrjs": "0.5.5",
"jquery": "3.7.1",
"minimist": "1.2.8",
"@parcel/watcher-linux-x64-glibc": "2.5.0",
"parcel": "2.16.4",
"rimraf": "3.0.2",
"rollup": "4.22.4",
Expand All @@ -21,6 +20,9 @@
"webpack-cli": "4.10.0",
"devextreme": "workspace:*"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "2.5.0"
},
"alias": {
"globalize$": "./node_modules/globalize/dist/globalize.js",
"globalize": "./node_modules/globalize/dist/globalize",
Expand Down
7 changes: 5 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tools/scripts/build-all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const injectDescriptions = () => {
sh.exec(`git clone -b ${MAJOR_VERSION} --depth 1 --config core.longpaths=true https://github.com/DevExpress/devextreme-documentation.git ${DOCUMENTATION_TEMP_DIR}`);

sh.pushd(DOCUMENTATION_TEMP_DIR);
sh.exec('npm ci');
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}`);
sh.popd();

sh.rm('-rf', DOCUMENTATION_TEMP_DIR);
Expand Down
Loading