-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tracking): Check for Third party NPM replacements and make use o…
…f those if set by default
- Loading branch information
1 parent
ea9f334
commit d105844
Showing
6 changed files
with
78 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import * as chalk from 'chalk'; | ||
import {exec} from 'child_process'; | ||
|
||
import {CliConfig} from '../models/config'; | ||
|
||
const Promise = require('../ember-cli/lib/ext/promise'); | ||
const config = CliConfig.fromProject(); | ||
|
||
const execPromise = Promise.denodeify(exec); | ||
|
||
let packageManager = 'npm'; | ||
if (config && config.get('packageManager')) { | ||
packageManager = config.get('packageManager'); | ||
} | ||
|
||
export function checkYarnOrCNPM() { | ||
return Promise | ||
.all([checkYarn(), checkCNPM()]) | ||
.then((data: Array<boolean>) => { | ||
if (packageManager === 'npm') { | ||
const [isYarnInstalled, isCNPMInstalled] = data; | ||
if (isYarnInstalled && isCNPMInstalled) { | ||
console.log(chalk.yellow('you can `ng set --global packageManager=yarn` ' + | ||
'or `ng set --global packageManager=cnpm`')); | ||
} else if (isYarnInstalled) { | ||
console.log(chalk.yellow('you can `ng set --global packageManager=yarn`')); | ||
} else if (isCNPMInstalled) { | ||
console.log(chalk.yellow('you can `ng set --global packageManager=cnpm`')); | ||
} | ||
} | ||
}); | ||
} | ||
|
||
function checkYarn() { | ||
return execPromise('yarn --version') | ||
.then(() => true, () => false); | ||
} | ||
|
||
function checkCNPM() { | ||
return execPromise('cnpm --version') | ||
.then(() => true, () => false); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import {ng} from '../../../utils/process'; | ||
import {getGlobalVariable} from '../../../utils/env'; | ||
|
||
const yarnRegEx = /you can `ng set --global packageManager=yarn`/; | ||
|
||
export default function() { | ||
return Promise.resolve() | ||
.then(() => process.chdir(getGlobalVariable('tmp-root'))) | ||
.then(() => ng('new', 'foo')) | ||
.then((stdout) => { | ||
// assuming yarn is installed and checking for message with yarn | ||
if (!stdout.toString().match(yarnRegEx)) { | ||
throw new Error('Should display message to use yarn packageManager'); | ||
} | ||
}); | ||
} |