Skip to content

Commit ce8c03a

Browse files
Kelly Seldenkellyselden
authored andcommitted
update deps
1 parent 50b2001 commit ce8c03a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"src"
3939
],
4040
"dependencies": {
41-
"boilerplate-update": "^1.0.0",
41+
"boilerplate-update": "^1.0.5",
4242
"debug": "^4.1.1",
4343
"execa": "^5.0.0",
4444
"fs-extra": "^9.0.0",
@@ -64,7 +64,7 @@
6464
"eslint-plugin-mocha": "^8.0.0",
6565
"eslint-plugin-node": "^11.1.0",
6666
"eslint-plugin-prefer-let": "^1.1.0",
67-
"git-diff-apply": "^1.0.0",
67+
"git-diff-apply": "^2.0.3",
6868
"git-fixtures": "^3.0.0",
6969
"mocha": "^8.2.1",
7070
"mocha-helpers": "^5.1.0",

src/get-start-and-end-commands.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ async function isDefaultAddonBlueprint(blueprint) {
8787
if (blueprint.path) {
8888
keywords = utils.require(path.join(blueprint.path, 'package')).keywords;
8989
} else {
90-
keywords = await npm.json(`v ${blueprint.packageName} keywords`);
90+
keywords = await npm.json('v', blueprint.packageName, 'keywords');
9191
}
9292

9393
isDefaultAddonBlueprint = !(keywords && keywords.includes('ember-blueprint'));

src/get-versions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ const npm = require('boilerplate-update/src/npm');
1212
* @returns {Promise<Array<string>>}
1313
*/
1414
module.exports = async function getVersions(packageName) {
15-
return await npm.json(`view ${packageName} versions`);
15+
return await npm.json('view', packageName, 'versions');
1616
};

0 commit comments

Comments
 (0)