@jterrazz/typescript 1.9.2 → 1.9.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.
@@ -8,13 +8,20 @@ if [ $? -ne 0 ]; then
8
8
  echo "$0: Can't create temporary .swcrc file"
9
9
  exit 1
10
10
  fi
11
- tsconfig-to-swcconfig --output="$TMP_SWCRC"
11
+ npx tsconfig-to-swcconfig --output="$TMP_SWCRC"
12
12
 
13
13
  # Create typescript declaration files
14
- tsc --declaration --emitDeclarationOnly --outDir "$OUT_PATH"
14
+ npx tsc --rootDir "$IN_PATH" --declaration --emitDeclarationOnly --outDir "$OUT_PATH"
15
15
 
16
- # Create javascript ESM files
17
- npx swc "$IN_PATH" --source-maps --copy-files --config-file "$TMP_SWCRC" --out-dir "$OUT_PATH" --strip-leading-paths "$@"
16
+ # Create javascript ESM files with improved source maps
17
+ npx swc "$IN_PATH" \
18
+ --source-maps \
19
+ --copy-files \
20
+ --config-file "$TMP_SWCRC" \
21
+ --out-dir "$OUT_PATH" \
22
+ --strip-leading-paths \
23
+ --log-watch-compilation \
24
+ "$@"
18
25
 
19
26
  # Create javascript CJS files
20
- rollup $OUT_PATH/index.js --format cjs --name --file $OUT_PATH/index.cjs
27
+ npx rollup "$OUT_PATH/index.js" --format cjs --file "$OUT_PATH/index.cjs"
package/bin/swc-watch.sh CHANGED
@@ -8,7 +8,16 @@ if [ $? -ne 0 ]; then
8
8
  echo "$0: Can't create temporary .swcrc file"
9
9
  exit 1
10
10
  fi
11
- tsconfig-to-swcconfig --output="$TMP_SWCRC"
11
+ npx tsconfig-to-swcconfig --output="$TMP_SWCRC"
12
12
 
13
13
  # Watch for changes in the src directory, compile and run
14
- nodemon --quiet --watch src --ext '*' --exec "npx swc $IN_PATH --source-maps --quiet --copy-files --config-file $TMP_SWCRC --out-dir $OUT_PATH --strip-leading-paths && node --enable-source-maps $OUT_PATH/index.js"
14
+ npx nodemon --quiet \
15
+ --watch src \
16
+ --ext '*' \
17
+ --exec "npx swc $IN_PATH \
18
+ --source-maps \
19
+ --copy-files \
20
+ --config-file $TMP_SWCRC \
21
+ --out-dir $OUT_PATH \
22
+ --strip-leading-paths \
23
+ && node --enable-source-maps $OUT_PATH/index.js"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jterrazz/typescript",
3
3
  "author": "Jean-Baptiste Terrazzoni <jterrazzoni@gmail.com>",
4
- "version": "1.9.2",
4
+ "version": "1.9.3",
5
5
  "files": [
6
6
  "tsconfig",
7
7
  "bin"
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "scripts": {},
15
15
  "devDependencies": {
16
- "@jterrazz/quality": "^1.6.0"
16
+ "@jterrazz/quality": "^1.6.1"
17
17
  },
18
18
  "dependencies": {
19
19
  "@swc/cli": "0.6.0",
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "display": "Expo",
3
+ "include": ["./src/"],
3
4
 
4
5
  "compilerOptions": {
5
6
  "allowJs": true,
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "display": "ESM",
3
+ "include": ["./src/"],
3
4
 
4
5
  "compilerOptions": {
5
6
  "moduleResolution": "bundler",