@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.
@@ -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
@@ -228,7 +228,6 @@ declare const config: {
228
228
  "node/no-top-level-await": ["error", {
229
229
  ignoreBin: true;
230
230
  }];
231
- "one-var": "off";
232
231
  "oxc/no-async-endpoint-handlers": "off";
233
232
  "perfectionist/sort-imports": "off";
234
233
  "perfectionist/sort-named-imports": "off";
@@ -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
@@ -442,7 +442,7 @@ const PRESERVE_FILES = ["node_modules"];
442
442
 
443
443
  //#endregion
444
444
  //#region package.json
445
- var version = "3.1.0-next-6060801";
445
+ var version = "3.1.0";
446
446
 
447
447
  //#endregion
448
448
  //#region src/commands/create.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "3.1.0-next-6060801",
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": "^1.0.0",
55
- "@changesets/cli": "^3.0.1",
56
- "@commitlint/cli": "^21.2.2",
57
- "@commitlint/config-conventional": "^21.2.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.64.0",
62
- "oxlint": "^1.79.0",
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.11",
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@8488615a623b1b9c987934bb89eae8af6a946ac1 # v2.1.1
37
+ uses: changesets/action@v1
38
38
  with:
39
- commit-message: "chore: release package(s)"
40
- github-token: ${{ secrets.GITHUB_TOKEN }}
41
- pr-title: "chore: release package(s)"
42
- publish-script: pnpm release:publish
43
- version-script: pnpm release:version
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@8488615a623b1b9c987934bb89eae8af6a946ac1 # v2.1.1
37
+ uses: changesets/action@v1
38
38
  with:
39
- commit-message: "chore: release package(s)"
40
- github-token: ${{ secrets.GITHUB_TOKEN }}
41
- pr-title: "chore: release package(s)"
42
- publish-script: pnpm release:publish
43
- version-script: pnpm release:version
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 }}