@regardio/dev 1.20.0 → 1.20.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/README.md CHANGED
@@ -67,6 +67,7 @@ Detailed documentation is organized by topic:
67
67
 
68
68
  - [Biome](./docs/en/toolchain/biome.md) - Linting and formatting
69
69
  - [Commitlint](./docs/en/toolchain/commitlint.md) - Commit message validation
70
+ - [Dependencies](./docs/en/toolchain/dependencies.md) - Safe dependency updates and supply-chain controls
70
71
  - [Husky](./docs/en/toolchain/husky.md) - Git hooks
71
72
  - [Markdownlint](./docs/en/toolchain/markdownlint.md) - Markdown quality
72
73
  - [Playwright](./docs/en/toolchain/playwright.md) - End-to-end testing
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.1",
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.0",
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
  }