We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06cf4ba commit 0f5e769Copy full SHA for 0f5e769
compiler/run-validations.js
@@ -108,7 +108,7 @@ async function run () {
108
const isCompilerInstalled = await $`[[ -d ${path.join(compilerPath, 'node_modules')} ]]`.exitCode === 0
109
const isTsGeneratorInstalled = await $`[[ -d ${path.join(tsGeneratorPath, 'node_modules')} ]]`.exitCode === 0
110
if (noCache || !isCompilerInstalled || !isTsGeneratorInstalled) {
111
- spinner.text = 'It looks like you didn't install the project dependencies, doing that for you'
+ spinner.text = "It looks like you didn't install the project dependencies, doing that for you"
112
await $`npm install --prefix ${compilerPath}`
113
await $`npm install --prefix ${tsGeneratorPath}`
114
}
0 commit comments