anymorph 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -8158,7 +8158,7 @@ function printScaffoldError(prefix, err) {
8158
8158
 
8159
8159
  // src/index.ts
8160
8160
  var program2 = new Command();
8161
- program2.name("anymorph").description("Check your brand's AI visibility \u2014 powered by Anymorph").version("0.2.0");
8161
+ program2.name("anymorph").description("Check your brand's AI visibility \u2014 powered by Anymorph").version("0.2.2");
8162
8162
  program2.command("login").description("Sign in to your Anymorph account").action(loginCommand);
8163
8163
  program2.command("check <domain>").description("Check AI visibility for a domain").option("--json", "Output as JSON").action(checkCommand);
8164
8164
  program2.command("status").description("Show current auth status").action(statusCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anymorph",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Check your brand's AI visibility across ChatGPT, Perplexity, Gemini, and more",
5
5
  "type": "module",
6
6
  "private": false,
@@ -14,7 +14,7 @@
14
14
  "scripts": {
15
15
  "build": "node build.ts",
16
16
  "dev": "tsx src/index.ts",
17
- "test": "tsx --test src/**/*.test.ts"
17
+ "test": "tsx --test src/*.test.ts src/**/*.test.ts"
18
18
  },
19
19
  "publishConfig": {
20
20
  "access": "public"