@adbayb/stack 3.1.0-next-6060801 → 3.1.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/configs/oxlint/index.ts +0 -1
- package/dist/configs/oxlint.d.ts +0 -1
- package/dist/configs/oxlint.js +0 -1
- package/dist/index.js +1 -1
- package/package.json +8 -8
- package/templates/multi-projects/.github/workflows/continuous_delivery.yml +7 -6
- package/templates/single-project/.github/workflows/continuous_delivery.yml +7 -6
package/configs/oxlint/index.ts
CHANGED
|
@@ -268,7 +268,6 @@ const config = defineConfig({
|
|
|
268
268
|
"node/no-process-env": "off",
|
|
269
269
|
"node/no-sync": "off",
|
|
270
270
|
"node/no-top-level-await": ["error", { ignoreBin: true }],
|
|
271
|
-
"one-var": "off",
|
|
272
271
|
"oxc/no-async-endpoint-handlers": "off",
|
|
273
272
|
"perfectionist/sort-imports": "off", // Already supported by Oxfmt
|
|
274
273
|
"perfectionist/sort-named-imports": "off", // Already supported by eslint/sort-imports
|
package/dist/configs/oxlint.d.ts
CHANGED
package/dist/configs/oxlint.js
CHANGED
|
@@ -276,7 +276,6 @@ const config = defineConfig({
|
|
|
276
276
|
"node/no-process-env": "off",
|
|
277
277
|
"node/no-sync": "off",
|
|
278
278
|
"node/no-top-level-await": ["error", { ignoreBin: true }],
|
|
279
|
-
"one-var": "off",
|
|
280
279
|
"oxc/no-async-endpoint-handlers": "off",
|
|
281
280
|
"perfectionist/sort-imports": "off",
|
|
282
281
|
"perfectionist/sort-named-imports": "off",
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adbayb/stack",
|
|
3
|
-
"version": "3.1.0
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"description": "My opinionated JavaScript-based toolchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"development",
|
|
@@ -51,18 +51,18 @@
|
|
|
51
51
|
"registry": "https://registry.npmjs.org"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@changesets/changelog-github": "^
|
|
55
|
-
"@changesets/cli": "^
|
|
56
|
-
"@commitlint/cli": "^21.2.
|
|
57
|
-
"@commitlint/config-conventional": "^21.2.
|
|
54
|
+
"@changesets/changelog-github": "^0.7.0",
|
|
55
|
+
"@changesets/cli": "^2.31.1",
|
|
56
|
+
"@commitlint/cli": "^21.2.1",
|
|
57
|
+
"@commitlint/config-conventional": "^21.2.0",
|
|
58
58
|
"@e18e/eslint-plugin": "^0.8.0",
|
|
59
59
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
60
60
|
"eslint-plugin-perfectionist": "^5.10.1",
|
|
61
|
-
"oxfmt": "^0.
|
|
62
|
-
"oxlint": "^1.
|
|
61
|
+
"oxfmt": "^0.62.0",
|
|
62
|
+
"oxlint": "^1.77.0",
|
|
63
63
|
"oxlint-tsgolint": "^7.0.2001",
|
|
64
64
|
"termost": "^1.9.2",
|
|
65
|
-
"turbo": "^2.10.
|
|
65
|
+
"turbo": "^2.10.9",
|
|
66
66
|
"typescript": "^6.0.3"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
@@ -34,10 +34,11 @@ jobs:
|
|
|
34
34
|
node -e "const fs=require('fs'),pkg=JSON.parse(fs.readFileSync('package.json'));pkg.version=pkg.version+'-next-${GITHUB_SHA::7}';fs.writeFileSync('package.json',JSON.stringify(pkg,null,2)+'\n');"
|
|
35
35
|
pnpm --filter="!." --filter="!./applications/*" --filter="!./examples/*" --filter="!./tools/*" --recursive exec pnpm publish --tag next --no-git-checks
|
|
36
36
|
- name: Publish stable version(s)
|
|
37
|
-
uses: changesets/action@
|
|
37
|
+
uses: changesets/action@v1
|
|
38
38
|
with:
|
|
39
|
-
commit
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
publish
|
|
43
|
-
|
|
39
|
+
commit: "chore: release package(s)"
|
|
40
|
+
title: "chore: release package(s)"
|
|
41
|
+
version: pnpm release:version
|
|
42
|
+
publish: pnpm release:publish
|
|
43
|
+
env:
|
|
44
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -34,10 +34,11 @@ jobs:
|
|
|
34
34
|
node -e "const fs=require('fs'),pkg=JSON.parse(fs.readFileSync('package.json'));pkg.version=pkg.version+'-next-${GITHUB_SHA::7}';fs.writeFileSync('package.json',JSON.stringify(pkg,null,2)+'\n');"
|
|
35
35
|
pnpm --filter="!." --filter="!./applications/*" --filter="!./examples/*" --filter="!./tools/*" --recursive exec pnpm publish --tag next --no-git-checks
|
|
36
36
|
- name: Publish stable version(s)
|
|
37
|
-
uses: changesets/action@
|
|
37
|
+
uses: changesets/action@v1
|
|
38
38
|
with:
|
|
39
|
-
commit
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
publish
|
|
43
|
-
|
|
39
|
+
commit: "chore: release package(s)"
|
|
40
|
+
title: "chore: release package(s)"
|
|
41
|
+
version: pnpm release:version
|
|
42
|
+
publish: pnpm release:publish
|
|
43
|
+
env:
|
|
44
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|