rulesync 3.16.0 → 3.17.1

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.
package/dist/index.cjs CHANGED
@@ -7707,7 +7707,7 @@ Attention, again, you are just the planner, so though you can read any files and
7707
7707
  }
7708
7708
 
7709
7709
  // src/cli/index.ts
7710
- var getVersion = () => "3.16.0";
7710
+ var getVersion = () => "3.17.1";
7711
7711
  var main = async () => {
7712
7712
  const program = new import_commander.Command();
7713
7713
  const version = getVersion();
package/dist/index.js CHANGED
@@ -7684,7 +7684,7 @@ Attention, again, you are just the planner, so though you can read any files and
7684
7684
  }
7685
7685
 
7686
7686
  // src/cli/index.ts
7687
- var getVersion = () => "3.16.0";
7687
+ var getVersion = () => "3.17.1";
7688
7688
  var main = async () => {
7689
7689
  const program = new Command();
7690
7690
  const version = getVersion();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rulesync",
3
- "version": "3.16.0",
3
+ "version": "3.17.1",
4
4
  "description": "Unified AI rules management CLI tool that generates configuration files for various AI development tools",
5
5
  "keywords": [
6
6
  "ai",
@@ -91,6 +91,7 @@
91
91
  "bcheck": "biome check .",
92
92
  "bcheck:fix": "biome check --write .",
93
93
  "build": "tsup src/cli/index.ts --format cjs,esm --dts --clean",
94
+ "bundle:deno": "tsup --config tsup.deno.config.ts",
94
95
  "check": "pnpm run bcheck && pnpm run oxlint && pnpm run eslint && pnpm run typecheck",
95
96
  "cicheck": "pnpm run cicheck:code && pnpm run cicheck:content",
96
97
  "cicheck:code": "pnpm run check && pnpm run test",
@@ -109,6 +110,7 @@
109
110
  "task": "tsx scripts/run-tasks.ts",
110
111
  "test": "vitest run --silent=true",
111
112
  "test:coverage": "vitest run --coverage --silent=true",
113
+ "test:e2e": "vitest run --config vitest.e2e.config.ts --silent=false",
112
114
  "test:watch": "vitest --silent=true",
113
115
  "typecheck": "tsgo --noEmit"
114
116
  }