@auto-engineer/component-implementor-react 1.110.6 → 1.110.7

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/package.json CHANGED
@@ -6,13 +6,13 @@
6
6
  "dependencies": {
7
7
  "ai": "^6.0.0",
8
8
  "debug": "^4.4.1",
9
- "@auto-engineer/message-bus": "1.110.6",
10
- "@auto-engineer/model-factory": "1.110.6"
9
+ "@auto-engineer/message-bus": "1.110.7",
10
+ "@auto-engineer/model-factory": "1.110.7"
11
11
  },
12
12
  "devDependencies": {
13
13
  "vitest": "^3.2.1"
14
14
  },
15
- "version": "1.110.6",
15
+ "version": "1.110.7",
16
16
  "publishConfig": {
17
17
  "access": "public"
18
18
  },
@@ -14,7 +14,7 @@ describe('runLint', () => {
14
14
  const result = runLint(['src/Button.tsx'], '/project');
15
15
 
16
16
  expect(result).toEqual({ passed: true, errors: [] });
17
- expect(execSync).toHaveBeenCalledWith('npx biome check --config-path=/project/biome.json src/Button.tsx', {
17
+ expect(execSync).toHaveBeenCalledWith('npx @biomejs/biome check --config-path=/project/biome.json src/Button.tsx', {
18
18
  cwd: '/project',
19
19
  stdio: 'pipe',
20
20
  encoding: 'utf-8',
@@ -44,7 +44,7 @@ describe('runLint', () => {
44
44
  runLint(['src/Button.tsx', 'src/Button.test.tsx'], '/project');
45
45
 
46
46
  expect(execSync).toHaveBeenCalledWith(
47
- 'npx biome check --config-path=/project/biome.json src/Button.tsx src/Button.test.tsx',
47
+ 'npx @biomejs/biome check --config-path=/project/biome.json src/Button.tsx src/Button.test.tsx',
48
48
  { cwd: '/project', stdio: 'pipe', encoding: 'utf-8' },
49
49
  );
50
50
  });
@@ -57,11 +57,14 @@ describe('runLintFix', () => {
57
57
  const result = runLintFix(['src/Button.tsx'], '/project');
58
58
 
59
59
  expect(result).toEqual({ passed: true, errors: [] });
60
- expect(execSync).toHaveBeenCalledWith('npx biome check --write --config-path=/project/biome.json src/Button.tsx', {
61
- cwd: '/project',
62
- stdio: 'pipe',
63
- encoding: 'utf-8',
64
- });
60
+ expect(execSync).toHaveBeenCalledWith(
61
+ 'npx @biomejs/biome check --write --config-path=/project/biome.json src/Button.tsx',
62
+ {
63
+ cwd: '/project',
64
+ stdio: 'pipe',
65
+ encoding: 'utf-8',
66
+ },
67
+ );
65
68
  });
66
69
 
67
70
  it('returns errors when auto-fix still has remaining issues', () => {
@@ -8,7 +8,7 @@ export type LintResult = {
8
8
 
9
9
  function biomeCmd(action: string, filePaths: string[], targetDir: string): string {
10
10
  const configPath = path.resolve(targetDir, 'biome.json');
11
- return `npx biome ${action} --config-path=${configPath} ${filePaths.join(' ')}`;
11
+ return `npx @biomejs/biome ${action} --config-path=${configPath} ${filePaths.join(' ')}`;
12
12
  }
13
13
 
14
14
  export function runLint(filePaths: string[], targetDir: string): LintResult {