@jterrazz/typescript 2.0.2 → 2.0.3

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/ts-compile.sh CHANGED
@@ -40,7 +40,7 @@ echo "✅ TypeScript declaration files generated"
40
40
 
41
41
  # Create javascript ESM files with improved source maps
42
42
  echo "⚙️ Compiling TypeScript to ESM with source maps..."
43
- if ! npx @swc/cli "$IN_PATH" \
43
+ if ! "$PROJECT_ROOT/node_modules/.bin/swc" "$IN_PATH" \
44
44
  --source-maps \
45
45
  --copy-files \
46
46
  --config-file "$TMP_SWCRC" \
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.2",
4
+ "version": "2.0.3",
5
5
  "files": [
6
6
  "tsconfig",
7
7
  "bin"