@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.
- package/bin/swc-compile.sh +12 -5
- package/bin/swc-watch.sh +11 -2
- package/package.json +2 -2
- package/tsconfig/expo.json +1 -0
- package/tsconfig/node-esm.json +1 -0
package/bin/swc-compile.sh
CHANGED
|
@@ -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"
|
|
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 --
|
|
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
|
-
|
|
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.
|
|
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.
|
|
16
|
+
"@jterrazz/quality": "^1.6.1"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@swc/cli": "0.6.0",
|
package/tsconfig/expo.json
CHANGED