Skip to content

Commit 0e2b496

Browse files
committed
v3.4.9
1 parent 86408bf commit 0e2b496

File tree

3 files changed

+12
-25
lines changed

3 files changed

+12
-25
lines changed

dist/create-wizard.js

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9668,10 +9668,7 @@ export default [
96689668
${answers.extendPrettier ? "prettierConfig," : ""}
96699669
];
96709670
`;
9671-
fs2.writeFileSync(
9672-
join(absoluteTargetDir, "eslint.config.js"),
9673-
eslintConfig.trim()
9674-
);
9671+
fs2.writeFileSync(join(absoluteTargetDir, "eslint.config.js"), eslintConfig.trim());
96759672
configGenerated = true;
96769673
const { installDeps } = await inquirer2.prompt([
96779674
{
@@ -9777,14 +9774,7 @@ export default [
97779774
type: "checkbox",
97789775
name: "templates",
97799776
message: "Select .gitignore templates:",
9780-
choices: [
9781-
"node",
9782-
"visualstudiocode",
9783-
"windows",
9784-
"macos",
9785-
"linux",
9786-
"jetbrain"
9787-
],
9777+
choices: ["node", "visualstudiocode", "windows", "macos", "linux", "jetbrain"],
97889778
default: ["node", "visualstudiocode"]
97899779
}
97909780
]);
@@ -9960,7 +9950,16 @@ describe('Example Test', () => {
99609950
});
99619951
}
99629952
async function setupMochaChai() {
9963-
await execa("npm", ["install", "--save-dev", "mocha", "chai", "ts-node", "typescript", "@types/mocha", "@types/chai"]);
9953+
await execa("npm", [
9954+
"install",
9955+
"--save-dev",
9956+
"mocha",
9957+
"chai",
9958+
"ts-node",
9959+
"typescript",
9960+
"@types/mocha",
9961+
"@types/chai"
9962+
]);
99649963
const mochaConfigContent = `module.exports = {
99659964
require: ['ts-node/register'],
99669965
extension: ['ts', 'tsx'],

package-lock.json

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

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"name": "@involvex/create-wizard",
3-
<<<<<<< HEAD
43
"version": "3.4.9",
5-
=======
6-
"version": "3.4.8",
7-
>>>>>>> f9269987e758d1af7676fbb04ff1a244a10030c1
84
"description": "create everything with ease interactive ",
95
"keywords": [
106
"cli",

0 commit comments

Comments
 (0)