skyltmax_config 1.0.0 → 2.0.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.
- checksums.yaml +4 -4
- data/.devcontainer/boot.sh +55 -16
- data/.devcontainer/devcontainer.json +7 -1
- data/.devcontainer/docker-compose.yml +1 -1
- data/.gitignore +2 -0
- data/CHANGELOG.md +17 -0
- data/Gemfile.lock +18 -18
- data/README.md +12 -21
- data/eslint.js +17 -1
- data/fixture/package.json +4 -22
- data/fixture/pnpm-lock.yaml +844 -1040
- data/fixture/pnpm-workspace.yaml +6 -0
- data/lib/skyltmax_config/version.rb +1 -1
- data/package.json +23 -25
- data/pnpm-lock.yaml +1108 -1456
- data/pnpm-workspace.yaml +10 -0
- data/prettier.js +3 -1
- data/skyltmax_config.gemspec +3 -1
- data/tests/configs.test.js +47 -0
- metadata +5 -9
- data/AGENTS.md +0 -677
- data/scripts/peer-deps/audit.js +0 -132
- data/scripts/peer-deps/install.js +0 -206
- data/tests/check-peers.test.js +0 -76
- data/tests/fixtures/manifest-no-peers.json +0 -3
- data/tests/fixtures/manifest-with-peers.json +0 -6
- data/tests/install-peers.test.js +0 -115
data/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signmax/config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,15 +32,11 @@
|
|
|
32
32
|
"./reset.d.ts": "./reset.d.ts",
|
|
33
33
|
"./eslint": "./eslint.js"
|
|
34
34
|
},
|
|
35
|
-
"bin": {
|
|
36
|
-
"skyltmax-config-peers": "./scripts/peer-deps/install.js"
|
|
37
|
-
},
|
|
38
35
|
"files": [
|
|
39
36
|
"*.js",
|
|
40
37
|
"*.json",
|
|
41
38
|
"*.d.ts",
|
|
42
39
|
"*.yml",
|
|
43
|
-
"scripts/**",
|
|
44
40
|
"lib/**",
|
|
45
41
|
"README.md",
|
|
46
42
|
"LICENSE"
|
|
@@ -48,6 +44,7 @@
|
|
|
48
44
|
"engines": {
|
|
49
45
|
"node": ">=24.0.0"
|
|
50
46
|
},
|
|
47
|
+
"packageManager": "pnpm@11.21.0",
|
|
51
48
|
"scripts": {
|
|
52
49
|
"format": "prettier . --write",
|
|
53
50
|
"lint": "eslint .",
|
|
@@ -56,35 +53,36 @@
|
|
|
56
53
|
"test": "vitest run",
|
|
57
54
|
"bump": "npx npm-check-updates --dep prod,dev,peer,optional --target latest -i"
|
|
58
55
|
},
|
|
59
|
-
"
|
|
56
|
+
"dependencies": {
|
|
60
57
|
"@eslint/js": "10.0.1",
|
|
61
58
|
"@total-typescript/ts-reset": "0.6.1",
|
|
62
|
-
"@
|
|
63
|
-
"@typescript-eslint/parser": "8.58.0",
|
|
64
|
-
"@typescript-eslint/utils": "8.58.0",
|
|
65
|
-
"@vitest/eslint-plugin": "1.6.14",
|
|
66
|
-
"eslint": "10.1.0",
|
|
59
|
+
"@vitest/eslint-plugin": "1.6.27",
|
|
67
60
|
"eslint-config-prettier": "10.1.8",
|
|
68
|
-
"eslint-plugin-import-x": "4.
|
|
69
|
-
"eslint-plugin-jest-dom": "5.
|
|
61
|
+
"eslint-plugin-import-x": "4.17.1",
|
|
62
|
+
"eslint-plugin-jest-dom": "5.10.1",
|
|
70
63
|
"eslint-plugin-jsx-a11y": "6.10.2",
|
|
71
|
-
"eslint-plugin-prettier": "5.5.
|
|
64
|
+
"eslint-plugin-prettier": "5.5.6",
|
|
72
65
|
"eslint-plugin-react": "7.37.5",
|
|
73
|
-
"eslint-plugin-react-hooks": "7.
|
|
66
|
+
"eslint-plugin-react-hooks": "7.1.1",
|
|
74
67
|
"eslint-plugin-testing-library": "7.16.2",
|
|
75
|
-
"globals": "17.
|
|
76
|
-
"prettier": "3.8.1",
|
|
68
|
+
"globals": "17.9.0",
|
|
77
69
|
"prettier-plugin-ignored": "1.0.0",
|
|
78
|
-
"prettier-plugin-tailwindcss": "0.
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
|
|
70
|
+
"prettier-plugin-tailwindcss": "0.8.1",
|
|
71
|
+
"typescript-eslint": "8.66.0"
|
|
72
|
+
},
|
|
73
|
+
"peerDependencies": {
|
|
74
|
+
"eslint": "^9.30.0 || ^10.0.0",
|
|
75
|
+
"prettier": "^3.6.0",
|
|
76
|
+
"typescript": ">=5.9 <6.1"
|
|
82
77
|
},
|
|
83
78
|
"devDependencies": {
|
|
84
|
-
"@types/react": "
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
79
|
+
"@types/react": "18.3.31",
|
|
80
|
+
"eslint": "10.8.1",
|
|
81
|
+
"npm-run-all2": "9.0.3",
|
|
82
|
+
"prettier": "3.9.6",
|
|
83
|
+
"react": "18.3.1",
|
|
84
|
+
"typescript": "6.0.3",
|
|
85
|
+
"vitest": "4.1.10"
|
|
88
86
|
},
|
|
89
87
|
"prettier": "./prettier.js"
|
|
90
88
|
}
|