Skip to content

Commit

Permalink
fix: less dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Dec 20, 2024
1 parent 2db1195 commit eab2f39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/create-webpack-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
"!**/*.d.ts"
],
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"@inquirer/expand": "^4.0.3",
"@inquirer/select": "^4.0.3",
"colorette": "^2.0.20",
"commander": "^12.1.0",
"cross-spawn": "^7.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-webpack-app/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Command } from "commander";
import { resolve, dirname } from "path";
import { select } from "@inquirer/prompts";
import select from "@inquirer/select";
import nodePlop, { type PlopGenerator } from "node-plop";
import { fileURLToPath } from "url";

Expand Down
2 changes: 1 addition & 1 deletion packages/create-webpack-app/src/utils/generate-files.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as fs from "fs/promises";
import * as ejs from "ejs";
import { expand } from "@inquirer/prompts";
import expand from "@inquirer/expand";
import { spawn, sync } from "cross-spawn";
import * as path from "path";
import { fileURLToPath } from "url";
Expand Down

0 comments on commit eab2f39

Please sign in to comment.