We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e88c0d commit 0b14fdeCopy full SHA for 0b14fde
2 files changed
transpile.sh
@@ -33,4 +33,7 @@ find . -type d \( \
33
f -name "*.ts" \
34
-print \
35
| node gitignore.js "${IGNORE_FILE}" \
36
-| /bin/bash ts.sh transpile.ts "$@" | node transpile_pipe.ts
+| /bin/bash ts.sh transpile.ts "$@" | node transpile_pipe.ts
37
+
38
39
+# | /bin/bash ts.sh transpile.ts "$@"
transpile.ts
@@ -34,9 +34,15 @@ if (entryPoints.length === 0) {
process.exit(0);
}
-log(`
- ${entryPoints.join("\n ")}
-`);
+const buff = [...entryPoints];
+buff.unshift('');
+const files = buff.join("\ntranspiled ");
40
41
+console.log(`
42
43
+${files}
44
45
+`)
46
47
const options: esbuild.BuildOptions = {
48
entryPoints,
0 commit comments