@jterrazz/typescript 5.1.0 → 5.1.1

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/bin/typescript.sh CHANGED
@@ -63,11 +63,11 @@ run_tsdown() {
63
63
 
64
64
  case "$COMMAND" in
65
65
  build)
66
- run_tsdown "$SCRIPT_DIR/../presets/tsdown/build.ts" "Building application (ESM + types)"
66
+ run_tsdown "$SCRIPT_DIR/../presets/tsdown/build.js" "Building application (ESM + types)"
67
67
  ;;
68
68
 
69
69
  bundle)
70
- run_tsdown "$SCRIPT_DIR/../presets/tsdown/bundle.ts" "Bundling library (ESM + CJS + types)"
70
+ run_tsdown "$SCRIPT_DIR/../presets/tsdown/bundle.js" "Bundling library (ESM + CJS + types)"
71
71
  ;;
72
72
 
73
73
  start)
@@ -76,7 +76,7 @@ case "$COMMAND" in
76
76
  ;;
77
77
 
78
78
  dev)
79
- CONFIG_PATH="$SCRIPT_DIR/../presets/tsdown/build.ts"
79
+ CONFIG_PATH="$SCRIPT_DIR/../presets/tsdown/build.js"
80
80
 
81
81
  printf "${CYAN_BG}${BRIGHT_WHITE} TYPESCRIPT ${NC} Starting dev mode...\n\n"
82
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jterrazz/typescript",
3
- "version": "5.1.0",
3
+ "version": "5.1.1",
4
4
  "author": "Jean-Baptiste Terrazzoni <contact@jterrazz.com>",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,8 +18,8 @@
18
18
  "registry": "https://registry.npmjs.org/"
19
19
  },
20
20
  "scripts": {
21
- "lint": "oxfmt --check",
22
- "lint:fix": "oxfmt",
21
+ "lint": "codestyle check",
22
+ "lint:fix": "codestyle fix",
23
23
  "test": "vitest --run",
24
24
  "build": "# no build script"
25
25
  },
@@ -27,7 +27,7 @@
27
27
  "tsdown": "^0.21.5"
28
28
  },
29
29
  "devDependencies": {
30
- "@jterrazz/codestyle": "^1.2.6",
30
+ "@jterrazz/codestyle": "^2.1.0",
31
31
  "@types/node": "^25.5.0",
32
32
  "vitest": "^4.1.2"
33
33
  }
File without changes
File without changes