@storm-software/eslint 0.146.7 → 0.147.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.
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -26,20 +26,21 @@ var getFileBanner = /* @__PURE__ */ __name((repositoryName = "") => {
|
|
|
26
26
|
return word.charAt(0).toUpperCase() + word.slice(1);
|
|
27
27
|
}).join(" ");
|
|
28
28
|
}
|
|
29
|
+
const license = (process.env.STORM_LICENSE ?? "Apache-2.0")?.toLowerCase()?.replace("license", "")?.trim();
|
|
29
30
|
return ` -------------------------------------------------------------------
|
|
30
31
|
|
|
31
32
|
${padding}\u26A1 Storm Software ${titleName ? `- ${titleName}` : ""}
|
|
32
33
|
|
|
33
34
|
This code was released as part of ${titleName ? `the ${titleName}` : "a Storm Software"} project. ${titleName ? titleName : "The project"}
|
|
34
|
-
is maintained by Storm Software under the ${
|
|
35
|
+
is maintained by Storm Software under the ${license} license, and is
|
|
35
36
|
free for commercial and private use. For more information, please visit
|
|
36
|
-
our licensing page.
|
|
37
|
+
our licensing page at ${process.env.STORM_LICENSING ? process.env.STORM_LICENSING : `https://stormsoftware.com/${repositoryName ? `projects/${repositoryName}/` : ""}license`}.
|
|
37
38
|
|
|
38
|
-
Website:
|
|
39
|
-
Repository:
|
|
40
|
-
Documentation:
|
|
41
|
-
Contact:
|
|
42
|
-
License:
|
|
39
|
+
Website: ${process.env.STORM_HOMEPAGE ?? "https://stormsoftware.com"}
|
|
40
|
+
Repository: ${process.env.STORM_REPOSITORY ?? `https://github.com/storm-software${repositoryName ? `/${repositoryName}` : ""}`}
|
|
41
|
+
Documentation: ${process.env.STORM_DOCS ? process.env.STORM_DOCS : `https://stormsoftware.com/${repositoryName ? `projects/${repositoryName}/` : ""}docs`}
|
|
42
|
+
Contact: ${process.env.STORM_HOMEPAGE ? process.env.STORM_HOMEPAGE.endsWith("/") ? process.env.STORM_HOMEPAGE.slice(-1) : process.env.STORM_HOMEPAGE : "https://stormsoftware.com"}/contact
|
|
43
|
+
SPDX-License-Identifier: ${license}
|
|
43
44
|
|
|
44
45
|
------------------------------------------------------------------- `;
|
|
45
46
|
}, "getFileBanner");
|
package/dist/preset.js
CHANGED
|
@@ -11,8 +11,8 @@ import {
|
|
|
11
11
|
} from "./chunk-D3EN5HD2.js";
|
|
12
12
|
import {
|
|
13
13
|
banner_plugin_default
|
|
14
|
-
} from "./chunk-
|
|
15
|
-
import "./chunk-
|
|
14
|
+
} from "./chunk-YNODBJNX.js";
|
|
15
|
+
import "./chunk-QAXC3XSW.js";
|
|
16
16
|
import {
|
|
17
17
|
GLOB_ASTRO,
|
|
18
18
|
GLOB_ASTRO_TS,
|
|
@@ -3405,7 +3405,7 @@ async function pnpm(options = {}) {
|
|
|
3405
3405
|
],
|
|
3406
3406
|
defaultCatalog: "default",
|
|
3407
3407
|
reuseExistingCatalog: true,
|
|
3408
|
-
conflicts: "
|
|
3408
|
+
conflicts: "overrides",
|
|
3409
3409
|
fields: [
|
|
3410
3410
|
"dependencies",
|
|
3411
3411
|
"devDependencies"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.147.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -40,10 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"license": "Apache-2.0",
|
|
42
42
|
"private": false,
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
"pnpm": ">=10.3.0"
|
|
46
|
-
},
|
|
43
|
+
"packageManager": "pnpm@10.3.0",
|
|
44
|
+
"engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
|
|
47
45
|
"main": "./dist/index.js",
|
|
48
46
|
"exports": {
|
|
49
47
|
"./package.json": "./package.json",
|
|
@@ -90,18 +88,12 @@
|
|
|
90
88
|
}
|
|
91
89
|
},
|
|
92
90
|
"./types": {
|
|
93
|
-
"import": {
|
|
94
|
-
"types": "./dist/types.d.ts",
|
|
95
|
-
"default": "./dist/types.js"
|
|
96
|
-
},
|
|
91
|
+
"import": { "types": "./dist/types.d.ts", "default": "./dist/types.js" },
|
|
97
92
|
"require": {
|
|
98
93
|
"types": "./dist/types.d.cts",
|
|
99
94
|
"default": "./dist/types.cjs"
|
|
100
95
|
},
|
|
101
|
-
"default": {
|
|
102
|
-
"types": "./dist/types.d.ts",
|
|
103
|
-
"default": "./dist/types.js"
|
|
104
|
-
}
|
|
96
|
+
"default": { "types": "./dist/types.d.ts", "default": "./dist/types.js" }
|
|
105
97
|
},
|
|
106
98
|
"./rules/*": {
|
|
107
99
|
"import": {
|
|
@@ -133,9 +125,7 @@
|
|
|
133
125
|
}
|
|
134
126
|
},
|
|
135
127
|
"types": "./dist/index.d.ts",
|
|
136
|
-
"files": [
|
|
137
|
-
"dist/**/*"
|
|
138
|
-
],
|
|
128
|
+
"files": ["dist/**/*"],
|
|
139
129
|
"keywords": [
|
|
140
130
|
"eslint",
|
|
141
131
|
"eslint-config",
|
|
@@ -241,10 +231,8 @@
|
|
|
241
231
|
"prettier-plugin-astro": "^0.14.1",
|
|
242
232
|
"tsup": "8.4.0",
|
|
243
233
|
"tsx": "^4.19.2",
|
|
244
|
-
"typescript": "^5.
|
|
245
|
-
},
|
|
246
|
-
"publishConfig": {
|
|
247
|
-
"access": "public"
|
|
234
|
+
"typescript": "^5.8.3"
|
|
248
235
|
},
|
|
236
|
+
"publishConfig": { "access": "public" },
|
|
249
237
|
"sideEffects": false
|
|
250
|
-
}
|
|
238
|
+
}
|