Skip to content

Commit 58aeacd

Browse files
committed
Add --no-install (part 2)
1 parent 76294d8 commit 58aeacd

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

apps/demos/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
"lint-js": "eslint . --ignore-pattern 'Demos'",
125125
"lint-demos": "ts-node utils/eslint-runner",
126126
"lint-css": "stylelint **/*.{css,vue}",
127-
"lint-non-demos": "npx nx run-many -t lint-js lint-css lint-html -p devextreme-demos",
127+
"lint-non-demos": "nx run-many -t lint-js lint-css lint-html -p devextreme-demos",
128128
"lint": "npm-run-all -p -c lint-non-demos lint-demos",
129129
"test-testcafe": "node utils/visual-tests/testcafe-runner.mjs",
130130
"test-testcafe:accessibility": "cross-env STRATEGY=accessibility CONSTEL=jquery node utils/visual-tests/testcafe-runner.mjs",

e2e/testcafe-devextreme/docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ COPY . .
2020

2121
RUN export PATH=$PATH:~/.dotnet \
2222
&& npm run build:testcafe \
23-
&& npx gulp localization \
23+
&& npx --no-install gulp localization \
2424
&& cd testing/renovation \
2525
&& npm install --no-audit --no-fund --legacy-peer-deps \
2626
&& cd ../.. \
2727
&& npm run build:react \
28-
&& npx gulp build-renovation-testing
28+
&& npx --no-install gulp build-renovation-testing
2929

3030
RUN npm run build:react \
3131
&& npx gulp build-renovation-testing

tools/scripts/build-all.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ if (!devMode) {
5151
}
5252

5353
if (devMode) {
54-
sh.exec('npx nx build devextreme-main');
54+
sh.exec('npx --no-install nx build devextreme-main');
5555
} else {
56-
sh.exec('npx nx build devextreme-scss');
56+
sh.exec('npx --no-install nx build devextreme-scss');
5757
sh.exec('npm run build-dist -w devextreme-main', {
5858
env: {
5959
...sh.env,
@@ -63,7 +63,7 @@ if (devMode) {
6363
}
6464

6565
if (devMode) {
66-
sh.exec(`npx nx build devextreme-themebuilder`);
66+
sh.exec(`npx --no-install nx build devextreme-themebuilder`);
6767
} else {
6868
sh.exec('npm run build -w devextreme-themebuilder');
6969
}

0 commit comments

Comments
 (0)