@mrshmllw/campfire 2.2.0 → 2.2.9
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.
|
@@ -1,32 +1,3 @@
|
|
|
1
1
|
export default config;
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
languageOptions: {
|
|
5
|
-
parser: typeof tsParser;
|
|
6
|
-
};
|
|
7
|
-
plugins: {
|
|
8
|
-
'@typescript-eslint': {
|
|
9
|
-
configs: Record<string, import("@typescript-eslint/utils/ts-eslint").ClassicConfig.Config>;
|
|
10
|
-
meta: import("@typescript-eslint/utils/ts-eslint").FlatConfig.PluginMeta;
|
|
11
|
-
rules: typeof import("@typescript-eslint/eslint-plugin/use-at-your-own-risk/rules");
|
|
12
|
-
};
|
|
13
|
-
campfire: {
|
|
14
|
-
rules: {
|
|
15
|
-
'no-color-prop': import("@typescript-eslint/utils/ts-eslint").RuleModule<"noColorProp", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
|
|
16
|
-
'no-theme-colors': import("@typescript-eslint/utils/ts-eslint").RuleModule<"noThemeColors", [], unknown, import("@typescript-eslint/utils/ts-eslint").RuleListener>;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
rules: {
|
|
21
|
-
'@typescript-eslint/no-explicit-any': string;
|
|
22
|
-
'@typescript-eslint/explicit-function-return-type': string;
|
|
23
|
-
'@typescript-eslint/no-unused-vars': (string | {
|
|
24
|
-
argsIgnorePattern: string;
|
|
25
|
-
})[];
|
|
26
|
-
'no-console': string;
|
|
27
|
-
strict: string[];
|
|
28
|
-
'campfire/no-color-prop': string;
|
|
29
|
-
'campfire/no-theme-colors': string;
|
|
30
|
-
};
|
|
31
|
-
})[];
|
|
32
|
-
import tsParser from '@typescript-eslint/parser';
|
|
2
|
+
/** @type {import('eslint').Linter.Config[]} */
|
|
3
|
+
declare const config: import("eslint").Linter.Config[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrshmllw/campfire",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.9",
|
|
4
4
|
"description": "Collection of toasty utils and configs used by Marshmallow Technology",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -34,23 +34,21 @@
|
|
|
34
34
|
"dist"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@commitlint/types": "^
|
|
38
|
-
"@semantic-release/changelog": "^6.0.
|
|
39
|
-
"@semantic-release/git": "^10.0.
|
|
40
|
-
"@semantic-release/github": "^
|
|
41
|
-
"@
|
|
42
|
-
"@typescript-eslint/
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"eslint-plugin-prettier": "^5.0.0"
|
|
37
|
+
"@commitlint/types": "^20.0.0",
|
|
38
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
39
|
+
"@semantic-release/git": "^10.0.1",
|
|
40
|
+
"@semantic-release/github": "^12.0.2",
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
42
|
+
"@typescript-eslint/parser": "^8.47.0",
|
|
43
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
44
|
+
"eslint-plugin-prettier": "^5.5.4"
|
|
46
45
|
},
|
|
47
46
|
"peerDependencies": {
|
|
48
|
-
"@commitlint/cli": "^
|
|
47
|
+
"@commitlint/cli": "^20",
|
|
49
48
|
"eslint": "^9.0.0",
|
|
50
49
|
"husky": "^9.0.0",
|
|
51
50
|
"lint-staged": "^15.0.0 || ^16.0.0",
|
|
52
|
-
"prettier": "^3.0.0"
|
|
53
|
-
"semantic-release": "^24.0.0"
|
|
51
|
+
"prettier": "^3.0.0"
|
|
54
52
|
},
|
|
55
53
|
"peerDependenciesMeta": {
|
|
56
54
|
"@commitlint/cli": {
|
|
@@ -67,32 +65,29 @@
|
|
|
67
65
|
},
|
|
68
66
|
"lint-staged": {
|
|
69
67
|
"optional": true
|
|
70
|
-
},
|
|
71
|
-
"semantic-release": {
|
|
72
|
-
"optional": true
|
|
73
68
|
}
|
|
74
69
|
},
|
|
75
70
|
"devDependencies": {
|
|
76
|
-
"@commitlint/cli": "^
|
|
77
|
-
"@commitlint/types": "^
|
|
71
|
+
"@commitlint/cli": "^20.1.0",
|
|
72
|
+
"@commitlint/types": "^20.0.0",
|
|
78
73
|
"@semantic-release/changelog": "^6.0.3",
|
|
79
74
|
"@semantic-release/git": "^10.0.1",
|
|
80
|
-
"@semantic-release/github": "^
|
|
81
|
-
"@semantic-release/npm": "^
|
|
82
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
83
|
-
"@typescript-eslint/parser": "^8.
|
|
84
|
-
"@typescript-eslint/rule-tester": "^8.
|
|
85
|
-
"conventional-changelog-conventionalcommits": "^9.
|
|
86
|
-
"eslint": "^9.
|
|
87
|
-
"eslint-config-prettier": "^10.1.
|
|
88
|
-
"eslint-plugin-prettier": "^5.4
|
|
75
|
+
"@semantic-release/github": "^12.0.2",
|
|
76
|
+
"@semantic-release/npm": "^13.1.2",
|
|
77
|
+
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
78
|
+
"@typescript-eslint/parser": "^8.47.0",
|
|
79
|
+
"@typescript-eslint/rule-tester": "^8.47.0",
|
|
80
|
+
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
81
|
+
"eslint": "^9.39.1",
|
|
82
|
+
"eslint-config-prettier": "^10.1.8",
|
|
83
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
89
84
|
"husky": "^9.1.7",
|
|
90
|
-
"lint-staged": "^16.
|
|
91
|
-
"prettier": "^3.
|
|
92
|
-
"rimraf": "^6.0
|
|
93
|
-
"semantic-release": "^
|
|
94
|
-
"typescript": "^5.
|
|
95
|
-
"vitest": "^
|
|
85
|
+
"lint-staged": "^16.2.6",
|
|
86
|
+
"prettier": "^3.6.2",
|
|
87
|
+
"rimraf": "^6.1.0",
|
|
88
|
+
"semantic-release": "^25.0.2",
|
|
89
|
+
"typescript": "^5.9.3",
|
|
90
|
+
"vitest": "^4.0.10"
|
|
96
91
|
},
|
|
97
92
|
"repository": {
|
|
98
93
|
"type": "git",
|