@adbayb/stack 2.40.0-next-3d4724f → 2.40.0-next-12e6e2d
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 +3 -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
|
@@ -262,6 +262,7 @@ const config = defineConfig({
|
|
|
262
262
|
"no-warning-comments": "off",
|
|
263
263
|
"node/no-process-env": "off",
|
|
264
264
|
"node/no-sync": "off",
|
|
265
|
+
"node/no-top-level-await": ["error", { ignoreBin: true }],
|
|
265
266
|
"oxc/no-async-endpoint-handlers": "off",
|
|
266
267
|
"perfectionist/sort-imports": "off", // Already supported by Oxfmt
|
|
267
268
|
"perfectionist/sort-named-imports": "off", // Already supported by eslint/sort-imports
|
|
@@ -272,7 +273,6 @@ const config = defineConfig({
|
|
|
272
273
|
"react/jsx-no-literals": "off",
|
|
273
274
|
"react/jsx-props-no-spreading": "off",
|
|
274
275
|
"react/no-multi-comp": "off",
|
|
275
|
-
"react/only-export-components": ["error", { allowConstantExport: true }],
|
|
276
276
|
"react/prefer-function-component": [
|
|
277
277
|
"error",
|
|
278
278
|
{ allowErrorBoundary: true, allowJsxUtilityClass: true },
|
package/dist/configs/oxlint.d.ts
CHANGED
|
@@ -215,6 +215,9 @@ declare const config: {
|
|
|
215
215
|
"no-warning-comments": "off";
|
|
216
216
|
"node/no-process-env": "off";
|
|
217
217
|
"node/no-sync": "off";
|
|
218
|
+
"node/no-top-level-await": ["error", {
|
|
219
|
+
ignoreBin: true;
|
|
220
|
+
}];
|
|
218
221
|
"oxc/no-async-endpoint-handlers": "off";
|
|
219
222
|
"perfectionist/sort-imports": "off";
|
|
220
223
|
"perfectionist/sort-named-imports": "off";
|
|
@@ -227,9 +230,6 @@ declare const config: {
|
|
|
227
230
|
"react/jsx-no-literals": "off";
|
|
228
231
|
"react/jsx-props-no-spreading": "off";
|
|
229
232
|
"react/no-multi-comp": "off";
|
|
230
|
-
"react/only-export-components": ["error", {
|
|
231
|
-
allowConstantExport: true;
|
|
232
|
-
}];
|
|
233
233
|
"react/prefer-function-component": ["error", {
|
|
234
234
|
allowErrorBoundary: true;
|
|
235
235
|
allowJsxUtilityClass: true;
|
package/dist/configs/oxlint.js
CHANGED
|
@@ -270,6 +270,7 @@ const config = defineConfig({
|
|
|
270
270
|
"no-warning-comments": "off",
|
|
271
271
|
"node/no-process-env": "off",
|
|
272
272
|
"node/no-sync": "off",
|
|
273
|
+
"node/no-top-level-await": ["error", { ignoreBin: true }],
|
|
273
274
|
"oxc/no-async-endpoint-handlers": "off",
|
|
274
275
|
"perfectionist/sort-imports": "off",
|
|
275
276
|
"perfectionist/sort-named-imports": "off",
|
|
@@ -280,7 +281,6 @@ const config = defineConfig({
|
|
|
280
281
|
"react/jsx-no-literals": "off",
|
|
281
282
|
"react/jsx-props-no-spreading": "off",
|
|
282
283
|
"react/no-multi-comp": "off",
|
|
283
|
-
"react/only-export-components": ["error", { allowConstantExport: true }],
|
|
284
284
|
"react/prefer-function-component": ["error", {
|
|
285
285
|
allowErrorBoundary: true,
|
|
286
286
|
allowJsxUtilityClass: true
|
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-12e6e2d",
|
|
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"
|