skyltmax_config 0.0.8 → 0.0.10

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d0b5e4005f25b7a15134752efae54631a8b91a41f35ebfa13d55f6696322b0b
4
- data.tar.gz: '0393d88c7e9a2ed3220041a0e3b3c92624851713ee50e70367dbddae84198a1c'
3
+ metadata.gz: e7cc4686644674c05d5fd80a4369312ae36dc0a78234e146ddc7b0c267b28253
4
+ data.tar.gz: 595978289a9ecb880df4d234c63dff3bef433d69ea95c1a1938b22b437544fb7
5
5
  SHA512:
6
- metadata.gz: f13d84be69e038732078a9aa5fd8b0f8f0e87f0a1d59b3af42a3593a06b8cc2d2b2ab18257da6db31144b65aff80e3e044820024c842d7f4df7c2300c571086c
7
- data.tar.gz: dffca3d7f02fc0a60cb3619612376e1aac7e71318f510fc81a27c525f9aadceca14efd03273106c8d268f7d3b03d29f2af8efd756d854ab0319cb4dc0840a703
6
+ metadata.gz: 6fc5a92fec0c50aa3d64de22ccd6800eb1f6046e23a96e54aaaeaa41b2c33beebe5dee123089ec84e50c175ed28ba47913ae05b94722c7f5b3d22c5c75f0c4a3
7
+ data.tar.gz: 7aa2dce4de1962fc8de57b3cdc402c2fec1d0fd49b38ec2f55a0811622b35a7b977ecfe82b42fab872eb9f47073f5fa879a1a05d364f3cf1ba825794dcc2969d
data/.prettierignore ADDED
@@ -0,0 +1 @@
1
+ fixture/
data/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  ### Unreleased
4
4
 
5
+ ### [0.0.10] - 2025-11-05
6
+
7
+ - fix: Handle symlinked execution in peer-deps scripts
8
+
9
+ ### [0.0.9] - 2025-11-05
10
+
11
+ - feat: Add helper CLI for syncing peer dependencies.
12
+ - chore: Warn consumers about missing or mismatched peer dependencies on postinstall.
13
+
5
14
  ### [0.0.8] - 2025-11-05
6
15
 
7
16
  - fix: Move dependencies to peer dependencies.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- skyltmax_config (0.0.8)
4
+ skyltmax_config (0.0.10)
5
5
  rubocop (>= 1.81.0, < 2)
6
6
  rubocop-performance (>= 1.26.0, < 2)
7
7
  rubocop-rails (>= 2.33.0, < 3)
data/README.md CHANGED
@@ -16,6 +16,20 @@ npm install --save-dev @signmax/config
16
16
  pnpm add -D @signmax/config
17
17
  ```
18
18
 
19
+ Once the package is in place, sync the tooling versions we pin:
20
+
21
+ ```bash
22
+ npx signmax-config-peers --dry-run # inspect the command (optional)
23
+ npx signmax-config-peers
24
+ ```
25
+
26
+ The helper installs the exact ESLint, Prettier, TypeScript, and plugin versions we dogfood with. It currently supports
27
+ `npm`, `pnpm`, and `bun`. If you prefer to manage things yourself, install each entry from
28
+ [`peerDependencies`](package.json) with the version locked there.
29
+
30
+ > After installation the package runs a lightweight audit and will warn if any peer is missing or pinned to a different
31
+ > version. When that happens, rerun `npx signmax-config-peers` to sync everything.
32
+
19
33
  ### Ruby
20
34
 
21
35
  Include the gem in your `Gemfile`:
data/eslint.config.js CHANGED
@@ -1 +1,12 @@
1
- export { default } from "./eslint.js"
1
+ import { config as baseConfig } from "./eslint.js"
2
+
3
+ const repoOnlyIgnores = [
4
+ {
5
+ ignores: ["fixture/**"],
6
+ },
7
+ ]
8
+
9
+ /** @type {import("eslint").Linter.Config[]} */
10
+ const config = [...repoOnlyIgnores, ...baseConfig]
11
+
12
+ export default config
@@ -0,0 +1 @@
1
+ pnpm-lock.yaml
@@ -0,0 +1,4 @@
1
+ import { config as signmaxConfig } from "@signmax/config/eslint"
2
+
3
+ /** @type {import("eslint").Linter.Config[]} */
4
+ export default [...signmaxConfig]
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@signmax/fake-library",
3
+ "version": "0.0.0",
4
+ "private": true,
5
+ "description": "Fixture project for exercising @signmax/config in CI.",
6
+ "type": "module",
7
+ "engines": {
8
+ "node": ">=20.0.0"
9
+ },
10
+ "scripts": {
11
+ "format": "prettier . --check",
12
+ "lint": "eslint src --max-warnings=0",
13
+ "typecheck": "tsc --noEmit"
14
+ },
15
+ "devDependencies": {
16
+ "@signmax/config": "file:.."
17
+ },
18
+ "prettier": "@signmax/config/prettier"
19
+ }