@regardio/dev 1.18.3 → 1.19.0

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/README.md +19 -14
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -51,23 +51,28 @@ Detailed documentation is organized by topic:
51
51
 
52
52
  ### Concepts
53
53
 
54
- - [Development Principles](./docs/concepts/development-principles.md) - Code quality, architecture, maintainability
55
- - [Coding Standards](./docs/concepts/coding-standards.md) - TypeScript, React, and general patterns
56
- - [Naming Conventions](./docs/concepts/naming-conventions.md) - Consistent naming across languages
57
- - [Commit Conventions](./docs/concepts/commits.md) - Conventional commits and changelog generation
58
- - [Testing Approach](./docs/concepts/testing.md) - Testing philosophy and patterns
59
- - [AI Agent Guidelines](./docs/concepts/ai-agents.md) - Instructions for AI coding assistants
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
60
65
 
61
66
  ### Toolchain
62
67
 
63
- - [TypeScript](./docs/toolchain/typescript.md) - Strict TypeScript configuration
64
- - [Biome](./docs/toolchain/biome.md) - Linting and formatting
65
- - [Vitest](./docs/toolchain/vitest.md) - Unit and integration testing
66
- - [Playwright](./docs/toolchain/playwright.md) - End-to-end testing
67
- - [Commitlint](./docs/toolchain/commitlint.md) - Commit message validation
68
- - [Markdownlint](./docs/toolchain/markdownlint.md) - Markdown quality
69
- - [Husky](./docs/toolchain/husky.md) - Git hooks
70
- - [Release Workflow](./docs/toolchain/release-workflow.md) - GitLab-flow-based versioning and releases
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
71
76
 
72
77
  ## Portability
73
78
 
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.18.3",
4
+ "version": "1.19.0",
5
5
  "private": false,
6
6
  "description": "Regardio developer tooling for testing, linting, and build workflows",
7
7
  "keywords": [
@@ -93,7 +93,7 @@
93
93
  "typecheck": "tsc --noEmit"
94
94
  },
95
95
  "dependencies": {
96
- "@biomejs/biome": "2.4.9",
96
+ "@biomejs/biome": "2.4.10",
97
97
  "@commitlint/cli": "20.5.0",
98
98
  "@commitlint/config-conventional": "20.5.0",
99
99
  "@playwright/test": "1.58.2",
@@ -101,19 +101,19 @@
101
101
  "@testing-library/react": "16.3.2",
102
102
  "@total-typescript/ts-reset": "0.6.1",
103
103
  "@types/node": "25.5.0",
104
- "@vitest/coverage-v8": "4.1.1",
105
- "@vitest/ui": "4.1.1",
104
+ "@vitest/coverage-v8": "4.1.2",
105
+ "@vitest/ui": "4.1.2",
106
106
  "husky": "9.1.7",
107
107
  "jsdom": "29.0.1",
108
108
  "markdownlint-cli2": "0.22.0",
109
109
  "npm-run-all": "4.1.5",
110
110
  "postcss": "8.5.8",
111
111
  "rimraf": "6.1.3",
112
- "rollup": "4.60.0",
112
+ "rollup": "4.60.1",
113
113
  "sort-package-json": "3.6.1",
114
114
  "typescript": "6.0.2",
115
- "vite": "8.0.2",
116
- "vitest": "4.1.1"
115
+ "vite": "8.0.3",
116
+ "vitest": "4.1.2"
117
117
  },
118
118
  "devDependencies": {
119
119
  "tsx": "4.21.0"