@regardio/dev 1.20.0 → 1.20.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.
package/README.md CHANGED
@@ -52,27 +52,28 @@ Detailed documentation is organized by topic:
52
52
  ### Concepts
53
53
 
54
54
  - [AI Agents](./docs/en/agents.md) - Instructions for AI coding assistants
55
- - [API](./docs/en/api.md) - API design and implementation guidelines
56
- - [Coding](./docs/en/coding.md) - TypeScript, React, and general patterns
57
- - [Commits](./docs/en/commits.md) - Conventional commits and changelog generation
58
- - [Documentation](./docs/en/documentation.md) - Documentation structure and conventions
59
- - [Naming](./docs/en/naming.md) - Consistent naming across languages
60
- - [Principles](./docs/en/principles.md) - Code quality, architecture, maintainability
61
- - [React](./docs/en/react.md) - React and TypeScript development patterns
62
- - [SQL](./docs/en/sql.md) - PostgreSQL/Supabase schema styling and structure
63
- - [Testing](./docs/en/testing.md) - Testing philosophy and patterns
64
- - [Writing](./docs/en/writing.md) - Voice, tone, and language for content
55
+ - [API](./docs/en/coding/api.md) - API design and implementation guidelines
56
+ - [Coding](./docs/en/coding/coding.md) - TypeScript, React, and general patterns
57
+ - [Commits](./docs/en/conventions/commits.md) - Conventional commits and changelog generation
58
+ - [Documentation](./docs/en/conventions/documentation.md) - Documentation structure and conventions
59
+ - [Naming](./docs/en/conventions/naming.md) - Consistent naming across languages
60
+ - [Principles](./docs/en/coding/principles.md) - Code quality, architecture, maintainability
61
+ - [React](./docs/en/coding/react.md) - React and TypeScript development patterns
62
+ - [SQL](./docs/en/coding/sql.md) - PostgreSQL/Supabase schema styling and structure
63
+ - [Testing](./docs/en/conventions/testing.md) - Testing philosophy and patterns
64
+ - [Writing](./docs/en/conventions/writing.md) - Voice, tone, and language for content
65
65
 
66
66
  ### Toolchain
67
67
 
68
- - [Biome](./docs/en/toolchain/biome.md) - Linting and formatting
69
- - [Commitlint](./docs/en/toolchain/commitlint.md) - Commit message validation
70
- - [Husky](./docs/en/toolchain/husky.md) - Git hooks
71
- - [Markdownlint](./docs/en/toolchain/markdownlint.md) - Markdown quality
72
- - [Playwright](./docs/en/toolchain/playwright.md) - End-to-end testing
73
- - [Releases](./docs/en/toolchain/releases.md) - GitLab-flow-based versioning and releases
74
- - [TypeScript](./docs/en/toolchain/typescript.md) - Strict TypeScript configuration
75
- - [Vitest](./docs/en/toolchain/vitest.md) - Unit and integration testing
68
+ - [Biome](./docs/en/tools/biome.md) - Linting and formatting
69
+ - [Commitlint](./docs/en/tools/commitlint.md) - Commit message validation
70
+ - [Dependencies](./docs/en/tools/dependencies.md) - Safe dependency updates and supply-chain controls
71
+ - [Husky](./docs/en/tools/husky.md) - Git hooks
72
+ - [Markdownlint](./docs/en/tools/markdownlint.md) - Markdown quality
73
+ - [Playwright](./docs/en/tools/playwright.md) - End-to-end testing
74
+ - [Releases](./docs/en/tools/releases.md) - GitLab-flow-based versioning and releases
75
+ - [TypeScript](./docs/en/tools/typescript.md) - Strict TypeScript configuration
76
+ - [Vitest](./docs/en/tools/vitest.md) - Unit and integration testing
76
77
 
77
78
  ## Portability
78
79
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "@regardio/dev",
4
- "version": "1.20.0",
4
+ "version": "1.20.2",
5
5
  "private": false,
6
6
  "description": "Regardio developer tooling for testing, linting, and build workflows",
7
7
  "keywords": [
@@ -96,7 +96,7 @@
96
96
  "@biomejs/biome": "2.4.10",
97
97
  "@commitlint/cli": "20.5.0",
98
98
  "@commitlint/config-conventional": "20.5.0",
99
- "@playwright/test": "1.58.2",
99
+ "@playwright/test": "1.59.1",
100
100
  "@testing-library/jest-dom": "6.9.1",
101
101
  "@testing-library/react": "16.3.2",
102
102
  "@total-typescript/ts-reset": "0.6.1",
@@ -58,11 +58,11 @@ jobs:
58
58
  Object.keys(pkg[depType]).forEach(key => {
59
59
  if (pkg[depType][key].startsWith('workspace:')) {
60
60
  try {
61
- const version = execSync(\`npm view \${key} version\`, { encoding: 'utf8' }).trim();
62
- pkg[depType][key] = \`^\${version}\`;
63
- console.log(\`Replaced \${key}@workspace:* with ^\${version}\`);
61
+ const version = execSync(`npm view ${key} version`, { encoding: 'utf8' }).trim();
62
+ pkg[depType][key] = version;
63
+ console.log(`Replaced ${key}@workspace:* with ${version}`);
64
64
  } catch (e) {
65
- console.error(\`Error: Could not find \${key} on npm. Publish it first.\`);
65
+ console.error(`Error: Could not find ${key} on npm. Publish it first.`);
66
66
  process.exit(1);
67
67
  }
68
68
  }