@10stars/config 15.5.3 → 15.5.4

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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. package/src/index.ts +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@10stars/config",
3
- "version": "15.5.3",
3
+ "version": "15.5.4",
4
4
  "private": false,
5
5
  "bin": {
6
6
  "config": "./src/index.ts"
@@ -23,14 +23,14 @@
23
23
  "@10stars/oxlint-plugin-react-hooks": "^1.0.5",
24
24
  "@oxc-node/core": "0.1.0",
25
25
  "@types/bun": "^1.3.14",
26
- "@types/node": "^24.0.0",
27
- "@types/react": "^19.2.14",
26
+ "@types/node": "^25.9.1",
27
+ "@types/react": "^19.2.16",
28
28
  "husky": "^9.1.7",
29
- "oxfmt": "^0.51.0",
30
- "oxlint": "^1.66.0",
29
+ "oxfmt": "^0.53.0",
30
+ "oxlint": "^1.68.0",
31
31
  "oxlint-tsgolint": "^0.23.0",
32
- "tsx": "^4.22.3",
33
- "type-fest": "^5.6.0",
32
+ "tsx": "^4.22.4",
33
+ "type-fest": "^5.7.0",
34
34
  "typescript": "~6.0.3"
35
35
  }
36
36
  }
package/src/index.ts CHANGED
@@ -15,10 +15,11 @@ interface Config {
15
15
  }
16
16
 
17
17
  const exec = (cmd: string) => {
18
- console.info(`Executing: ${cmd}`)
18
+ const fullCmd = `bunx ${cmd}`
19
+ console.info(`Executing: ${fullCmd}`)
19
20
  try {
20
21
  // bunx is optimized for running scripts
21
- execSync(`bunx ${cmd}`, { cwd, stdio: `inherit` }) // make execSync process to use the parent's: "stdin", "stdout", "stderr" streams
22
+ execSync(fullCmd, { cwd, stdio: `inherit` }) // make execSync process to use the parent's: "stdin", "stdout", "stderr" streams
22
23
  } catch {
23
24
  process.exit(1)
24
25
  }