From 3c528b4250f1618332375b4b69b78a0886aca87d Mon Sep 17 00:00:00 2001 From: Yu Jiang Tham Date: Tue, 22 Oct 2024 15:47:06 -0400 Subject: [PATCH] fix: fix automated periodic testing (#14) * Remove queryType option from prompts array * Fix automation --- axiom-init/package.json | 2 +- axiom-init/src/setup.ts | 2 +- axiom-init/src/version.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/axiom-init/package.json b/axiom-init/package.json index 0737b83..e3af233 100644 --- a/axiom-init/package.json +++ b/axiom-init/package.json @@ -1,7 +1,7 @@ { "name": "axiom-init", "description": "Initialize a new Axiom project", - "version": "0.2.1", + "version": "0.2.2", "author": "Intrinsic Technologies", "scripts": { "build": "rm -rf dist && node ./script/preBuild.js && tsc", diff --git a/axiom-init/src/setup.ts b/axiom-init/src/setup.ts index c6f5a64..4af6872 100644 --- a/axiom-init/src/setup.ts +++ b/axiom-init/src/setup.ts @@ -35,7 +35,7 @@ export const setup = async ( } // Remove prompt answers if they're already passed in - let prompts = ["scaffold", "manager", "queryType"]; + let prompts = ["scaffold", "manager"]; let filterKeys = Object.keys(toFilter || {}); prompts = prompts.filter(prompt => !filterKeys.includes(prompt)); diff --git a/axiom-init/src/version.ts b/axiom-init/src/version.ts index 96e9e76..576fa6a 100644 --- a/axiom-init/src/version.ts +++ b/axiom-init/src/version.ts @@ -1,4 +1,4 @@ // This is an autogenerated file. It should match the version number in package.json. // Do not modify this file directly. -export const CURRENT_VERSION = "0.2.1"; \ No newline at end of file +export const CURRENT_VERSION = "0.2.2"; \ No newline at end of file