@adbayb/stack 2.40.0-next-14160b1 → 2.40.0-next-a52f45f
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/configs/oxlint/index.ts +1 -1
- package/dist/configs/oxlint.d.ts +1 -3
- package/dist/configs/oxlint.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -6
- package/templates/multi-projects/.github/workflows/continuous_delivery.yml +2 -2
- package/templates/multi-projects/.github/workflows/dependency_changelog.yml +1 -1
- package/templates/multi-projects/.github/workflows/workflow.yml +2 -2
- package/templates/single-project/.github/workflows/continuous_delivery.yml +2 -2
- package/templates/single-project/.github/workflows/dependency_changelog.yml +1 -1
- package/templates/single-project/.github/workflows/workflow.yml +2 -2
package/configs/oxlint/index.ts
CHANGED
|
@@ -272,12 +272,12 @@ const config = defineConfig({
|
|
|
272
272
|
"react/jsx-no-literals": "off",
|
|
273
273
|
"react/jsx-props-no-spreading": "off",
|
|
274
274
|
"react/no-multi-comp": "off",
|
|
275
|
-
"react/only-export-components": ["error", { allowConstantExport: true }],
|
|
276
275
|
"react/prefer-function-component": [
|
|
277
276
|
"error",
|
|
278
277
|
{ allowErrorBoundary: true, allowJsxUtilityClass: true },
|
|
279
278
|
],
|
|
280
279
|
"react/react-in-jsx-scope": "off",
|
|
280
|
+
"require-await": "off", // Already better covered by "typescript/require-await"
|
|
281
281
|
"sort-imports": "off", // Already supported by ESLint Perfectionist
|
|
282
282
|
"sort-keys": "off", // Already supported by ESLint Perfectionist
|
|
283
283
|
"sort-vars": "off", // Already supported by ESLint Perfectionist
|
package/dist/configs/oxlint.d.ts
CHANGED
|
@@ -227,14 +227,12 @@ declare const config: {
|
|
|
227
227
|
"react/jsx-no-literals": "off";
|
|
228
228
|
"react/jsx-props-no-spreading": "off";
|
|
229
229
|
"react/no-multi-comp": "off";
|
|
230
|
-
"react/only-export-components": ["error", {
|
|
231
|
-
allowConstantExport: true;
|
|
232
|
-
}];
|
|
233
230
|
"react/prefer-function-component": ["error", {
|
|
234
231
|
allowErrorBoundary: true;
|
|
235
232
|
allowJsxUtilityClass: true;
|
|
236
233
|
}];
|
|
237
234
|
"react/react-in-jsx-scope": "off";
|
|
235
|
+
"require-await": "off";
|
|
238
236
|
"sort-imports": "off";
|
|
239
237
|
"sort-keys": "off";
|
|
240
238
|
"sort-vars": "off";
|
package/dist/configs/oxlint.js
CHANGED
|
@@ -280,12 +280,12 @@ const config = defineConfig({
|
|
|
280
280
|
"react/jsx-no-literals": "off",
|
|
281
281
|
"react/jsx-props-no-spreading": "off",
|
|
282
282
|
"react/no-multi-comp": "off",
|
|
283
|
-
"react/only-export-components": ["error", { allowConstantExport: true }],
|
|
284
283
|
"react/prefer-function-component": ["error", {
|
|
285
284
|
allowErrorBoundary: true,
|
|
286
285
|
allowJsxUtilityClass: true
|
|
287
286
|
}],
|
|
288
287
|
"react/react-in-jsx-scope": "off",
|
|
288
|
+
"require-await": "off",
|
|
289
289
|
"sort-imports": "off",
|
|
290
290
|
"sort-keys": "off",
|
|
291
291
|
"sort-vars": "off",
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adbayb/stack",
|
|
3
|
-
"version": "2.40.0-next-
|
|
3
|
+
"version": "2.40.0-next-a52f45f",
|
|
4
4
|
"description": "My opinionated JavaScript-based toolchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"development",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"@changesets/cli": "^2.31.1",
|
|
56
56
|
"@commitlint/cli": "^21.2.1",
|
|
57
57
|
"@commitlint/config-conventional": "^21.2.0",
|
|
58
|
-
"@e18e/eslint-plugin": "^0.
|
|
58
|
+
"@e18e/eslint-plugin": "^0.6.0",
|
|
59
59
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
60
60
|
"eslint-plugin-perfectionist": "^5.10.0",
|
|
61
|
-
"oxfmt": "^0.
|
|
62
|
-
"oxlint": "^1.
|
|
63
|
-
"oxlint-tsgolint": "^0.
|
|
61
|
+
"oxfmt": "^0.60.0",
|
|
62
|
+
"oxlint": "^1.75.0",
|
|
63
|
+
"oxlint-tsgolint": "^7.0.2001",
|
|
64
64
|
"termost": "^1.9.1",
|
|
65
|
-
"turbo": "^2.10.
|
|
65
|
+
"turbo": "^2.10.6",
|
|
66
66
|
"typescript": "^6.0.3"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
@@ -19,9 +19,9 @@ jobs:
|
|
|
19
19
|
id-token: write
|
|
20
20
|
pull-requests: write
|
|
21
21
|
steps:
|
|
22
|
-
- uses: actions/checkout@
|
|
22
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
23
23
|
- uses: pnpm/action-setup@v6
|
|
24
|
-
- uses: actions/setup-node@
|
|
24
|
+
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
25
25
|
with:
|
|
26
26
|
cache: pnpm
|
|
27
27
|
node-version-file: ".nvmrc"
|
|
@@ -9,9 +9,9 @@ jobs:
|
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
steps:
|
|
11
11
|
- name: Checkout the code
|
|
12
|
-
uses: actions/checkout@
|
|
12
|
+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
13
13
|
- uses: pnpm/action-setup@v6
|
|
14
|
-
- uses: actions/setup-node@
|
|
14
|
+
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
15
15
|
with:
|
|
16
16
|
cache: pnpm
|
|
17
17
|
node-version-file: ".nvmrc"
|
|
@@ -19,9 +19,9 @@ jobs:
|
|
|
19
19
|
id-token: write
|
|
20
20
|
pull-requests: write
|
|
21
21
|
steps:
|
|
22
|
-
- uses: actions/checkout@
|
|
22
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
23
23
|
- uses: pnpm/action-setup@v6
|
|
24
|
-
- uses: actions/setup-node@
|
|
24
|
+
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
25
25
|
with:
|
|
26
26
|
cache: pnpm
|
|
27
27
|
node-version-file: ".nvmrc"
|
|
@@ -9,9 +9,9 @@ jobs:
|
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
steps:
|
|
11
11
|
- name: Checkout the code
|
|
12
|
-
uses: actions/checkout@
|
|
12
|
+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
13
13
|
- uses: pnpm/action-setup@v6
|
|
14
|
-
- uses: actions/setup-node@
|
|
14
|
+
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
|
|
15
15
|
with:
|
|
16
16
|
cache: pnpm
|
|
17
17
|
node-version-file: ".nvmrc"
|