Skip to content

Commit a5bfec7

Browse files
authored
chore: fix false alerts in texts (#1096)
1 parent 4ba48d1 commit a5bfec7

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

packages/devextreme-cli/testing/themebuilder/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports.prepareDirectory = async(devextremeVersion, themeBuilderVersion,
1616
if(themeBuilderVersion) {
1717
await runCommand('npm', ['install', `devextreme-themebuilder@${themeBuilderVersion}`, '--save-exact'], { cwd: workDirectory });
1818
}
19-
// we need to install cli as tgz (npm i for folder make symlink and require works in wrong way)
19+
// we need to install cli as tgz (regular install for folder make symlink and require works in wrong way)
2020
await runCommand('npm', ['install', `../../../devextreme-cli-${cliVersion}.tgz`, '--save-exact'], { cwd: workDirectory });
2121
};
2222

packages/devextreme-schematics/src/migrate-config-components/template-migrator.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,11 @@ export async function applyInlineComponentTemplateMigrations(
8989
' 3. Temporary installation (npm cache)\n\n' +
9090
'To resolve this issue, install TypeScript manually.\n\n' +
9191
'Project installation:\n' +
92-
' npm install typescript --save-dev --ignore-scripts\n\n' +
92+
' npm' +
93+
' install typescript --save-dev --ignore-scripts\n\n' +
9394
'Global installation:\n' +
94-
' npm install -g typescript --ignore-scripts\n\n'
95+
' npm' +
96+
' install -g typescript --ignore-scripts\n\n'
9597
);
9698
return;
9799
}

scripts/regenerate-nextjs-apps/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if (lockedVersion !== expectedVersion) {
1818
console.error(`ERROR: create-next-app version mismatch`);
1919
console.error(` latest-versions.js: ${expectedVersion}`);
2020
console.error(` scripts/regenerate-nextjs-apps/package.json: ${lockedVersion}`);
21-
console.error(`\nUpdate package.json and run 'npm install' in scripts/regenerate-nextjs-apps/`);
21+
console.error(`\nUpdate package.json and install dependencies in scripts/regenerate-nextjs-apps/`);
2222
process.exit(1);
2323
}
2424

0 commit comments

Comments
 (0)