From f7f5ef8d2b0e55070456086a0f4b5e33d42bf562 Mon Sep 17 00:00:00 2001 From: GitHub CD bot Date: Fri, 9 Feb 2024 08:31:20 +0000 Subject: [PATCH 1/2] update version --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index b0fab5e..75d9bed 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,12 @@ { "name": "create-codeceptjs", - "version": "0.1.8", + "version": "1.0.0", "description": "Install CodeceptJS with all its dependencies in a single run", "main": "index.js", "bin": { "create-codeceptjs": "index.js" }, - "scripts": { - }, + "scripts": {}, "repository": { "type": "git", "url": "git+https://github.com/codeceptjs/create-codeceptjs.git" From ffd5272f0cb858a29cc27461342ba4fec7ab3076 Mon Sep 17 00:00:00 2001 From: KobeN <7845001+kobenguyent@users.noreply.github.com> Date: Fri, 9 Feb 2024 10:31:21 +0100 Subject: [PATCH 2/2] fix: support force mode --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index 898f6fa..0103c43 100755 --- a/index.js +++ b/index.js @@ -60,6 +60,9 @@ const program = new commander.Command('Create CodeceptJS') .option('--webdriverio', 'Install webdriverio packages') .option('--testcafe', 'Install testcafe packages') + // force mode + .option('--force', 'Accept an incorrect (and potentially broken) dependency resolution.') + .allowUnknownOption() .on('--help', () => { console.log();