Skip to content

Commit

Permalink
Update dependencies to latest versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Aug 27, 2020
1 parent ca3d1e5 commit fba4eac
Show file tree
Hide file tree
Showing 4 changed files with 1,156 additions and 359 deletions.
2 changes: 1 addition & 1 deletion commands/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const SHARED = {
// TODO: promisify the sync code below

_isFeatureAvailable(feature) {
let checker = new VersionChecker(this.project).forEmber();
let checker = new VersionChecker(this.project).for('ember-source');
return checker.gte(`${feature.since}-beta.1`);
},

Expand Down
2 changes: 1 addition & 1 deletion features/template-only-glimmer-components.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ module.exports = {
let componentPath = components[i];
console.log(` ${chalk.green('create')} ${componentPath}`);
let absolutePath = path.join(project.root, componentPath);
await p(mkdirp)(path.dirname(absolutePath));
await mkdirp(path.dirname(absolutePath));
await p(fs.writeFile)(absolutePath, ComponentFile, { encoding: 'UTF-8' });
}

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,23 @@
"test": "qunit tests/**/*-test.js"
},
"dependencies": {
"chalk": "^3.0.0",
"ember-cli-version-checker": "^3.1.3",
"chalk": "^4.1.0",
"ember-cli-version-checker": "^5.1.1",
"glob": "^7.1.6",
"inquirer": "^7.0.4",
"mkdirp": "^0.5.1",
"inquirer": "^7.3.3",
"mkdirp": "^1.0.4",
"silent-error": "^1.1.1",
"util.promisify": "^1.0.1"
},
"devDependencies": {
"broccoli-test-helper": "^2.0.0",
"ember-cli": "~3.15.2",
"ember-cli": "~3.20.0",
"ember-cli-dependency-checker": "^3.2.0",
"eslint": "^6.8.0",
"eslint-plugin-node": "^11.0.0",
"execa": "^3.4.0",
"execa": "^4.0.3",
"prettier": "^1.19.1",
"qunit": "^2.9.3",
"qunit": "^2.11.1",
"release-it": "^12.4.3",
"release-it-lerna-changelog": "^1.0.3"
},
Expand Down
Loading

0 comments on commit fba4eac

Please sign in to comment.