Skip to content

Commit

Permalink
fix: fix automated periodic testing (#14)
Browse files Browse the repository at this point in the history
* Remove queryType option from prompts array

* Fix automation
  • Loading branch information
ytham authored Oct 22, 2024
1 parent 9e7823b commit 3c528b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion axiom-init/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion axiom-init/src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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));

Expand Down
2 changes: 1 addition & 1 deletion axiom-init/src/version.ts
Original file line number Diff line number Diff line change
@@ -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";
export const CURRENT_VERSION = "0.2.2";

0 comments on commit 3c528b4

Please sign in to comment.