Skip to content

Commit

Permalink
drop inquirer dependency (#554)
Browse files Browse the repository at this point in the history
* drop inquirer dependency

* drop inquirer dependency
  • Loading branch information
mshima authored Oct 1, 2024
1 parent 754d9ce commit 7148ac5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
"cpy-cli": "^5.0.0",
"esmocha": "^1.0.1",
"fs-extra": "^11.1.1",
"inquirer": "^9.2.11",
"jsdoc": "^4.0.2",
"prettier": "3.0.3",
"prettier-plugin-packagejson": "^2.4.6",
Expand Down
7 changes: 0 additions & 7 deletions test/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const ENVIRONMENT_VERSION = require('../package.json').version;
const INQUIRER_VERSION = require('inquirer/package.json').version;
const GROUPED_QUEUE_VERSION = require('grouped-queue/package.json').version;

for (const generatorVersion of allVersions) {
Expand Down Expand Up @@ -78,12 +77,6 @@ for (const generatorVersion of allVersions) {
assert.textEqual(version, ENVIRONMENT_VERSION);
});

it('output the inquirer version number', async function () {
const version = this.env.getVersion('inquirer');
assert.ok(version);
assert.textEqual(version, INQUIRER_VERSION);
});

it('output the grouped-queue version number', async function () {
const version = this.env.getVersion('grouped-queue');
assert.ok(version);
Expand Down

0 comments on commit 7148ac5

Please sign in to comment.