@jterrazz/typescript 2.0.4 → 2.0.6

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/bin/ts-compile.sh +1 -1
  2. package/package.json +22 -18
package/bin/ts-compile.sh CHANGED
@@ -55,7 +55,7 @@ echo "✅ ESM compilation completed"
55
55
 
56
56
  # Create javascript CJS files
57
57
  echo "🔄 Creating CommonJS bundle..."
58
- if ! npx rollup "$OUT_PATH/index.js" --format cjs --file "$OUT_PATH/index.cjs"; then
58
+ if ! npx rollup "$OUT_PATH/index.js" --format cjs --file "$OUT_PATH/index.cjs" --silent; then
59
59
  echo "❌ Rollup bundling failed"
60
60
  exit 1
61
61
  fi
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jterrazz/typescript",
3
3
  "author": "Jean-Baptiste Terrazzoni <contact@jterrazz.com>",
4
- "version": "2.0.4",
4
+ "version": "2.0.6",
5
5
  "files": [
6
6
  "tsconfig",
7
7
  "bin"
@@ -11,30 +11,34 @@
11
11
  "ts-compile": "bin/ts-compile.sh",
12
12
  "ts-watch": "bin/ts-watch.sh"
13
13
  },
14
- "scripts": {},
14
+ "scripts": {
15
+ "lint": "prettier --check .",
16
+ "test": "echo 'no tests yet'",
17
+ "build": "echo 'no build yet'"
18
+ },
15
19
  "devDependencies": {
16
- "@jterrazz/quality": "^2.0.3"
20
+ "@jterrazz/quality": "^2.2.0"
17
21
  },
18
22
  "dependencies": {
19
- "@swc/cli": "^0.6.0",
20
- "@swc/core": "1.11.13",
21
- "@types/node": "22.13.10",
23
+ "@swc/cli": "^0.7.3",
24
+ "@swc/core": "1.11.21",
25
+ "@types/node": "22.14.1",
22
26
  "nodemon": "3.1.9",
23
- "rollup": "4.35.0",
27
+ "rollup": "4.40.0",
24
28
  "tsconfig-to-swcconfig": "2.8.1",
25
- "typescript": "5.8.2"
29
+ "typescript": "5.8.3"
26
30
  },
27
31
  "optionalDependencies": {
28
- "@swc/core-linux-x64-gnu": "1.11.13",
29
- "@swc/core-linux-x64-musl": "1.11.13",
30
- "@swc/core-darwin-x64": "1.11.13",
31
- "@swc/core-darwin-arm64": "1.11.13",
32
- "@swc/core-win32-x64-msvc": "1.11.13",
33
- "@rollup/rollup-linux-x64-gnu": "4.35.0",
34
- "@rollup/rollup-linux-x64-musl": "4.35.0",
35
- "@rollup/rollup-darwin-x64": "4.35.0",
36
- "@rollup/rollup-darwin-arm64": "4.35.0",
37
- "@rollup/rollup-win32-x64-msvc": "4.35.0"
32
+ "@swc/core-linux-x64-gnu": "1.11.21",
33
+ "@swc/core-linux-x64-musl": "1.11.21",
34
+ "@swc/core-darwin-x64": "1.11.21",
35
+ "@swc/core-darwin-arm64": "1.11.21",
36
+ "@swc/core-win32-x64-msvc": "1.11.21",
37
+ "@rollup/rollup-linux-x64-gnu": "4.40.0",
38
+ "@rollup/rollup-linux-x64-musl": "4.40.0",
39
+ "@rollup/rollup-darwin-x64": "4.40.0",
40
+ "@rollup/rollup-darwin-arm64": "4.40.0",
41
+ "@rollup/rollup-win32-x64-msvc": "4.40.0"
38
42
  },
39
43
  "publishConfig": {
40
44
  "registry": "https://registry.npmjs.org/"