Skip to content

Commit 7b6410e

Browse files
authored
Feat/esbuild (#31)
* feat: migrate to esbuild * chore: update readme * chore: add changeset
1 parent 4aeace3 commit 7b6410e

File tree

6 files changed

+589
-4036
lines changed

6 files changed

+589
-4036
lines changed

.changeset/shy-turkeys-count.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@heymp/scratchpad": minor
3+
---
4+
5+
Migrate from tsc to esbuild for TS compilation

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ log(function hello() { return 'world' });
6767
## Typescript
6868

6969
Scratchpad also has out of the box support for Typescript. Any file that ends with `.ts` will
70-
be first transpiled by the `tsc -w` command. While you can execute typescript files using the
70+
be first transpiled by `esbuild` command. While you can execute typescript files using the
7171
`npx @heymp/scratchpad` command, it is reccommended to install the package locally so you can
7272
import the library typings.
7373

7474
Example:
7575

7676
```bash
77-
npm install @heymp/scratchpad typescript
77+
npm install @heymp/scratchpad
7878
```
7979

8080
Recommended `tsconfig.json` settings. NOTE: your local `tsconfig.json` file is only used to
@@ -104,7 +104,6 @@ in your `.ts` files:
104104
```bash
105105
npm install
106106
```
107-
test
108107

109108
```bash
110109
./bin/cli.js -h

bin/cli.js

+25-34
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env node
22

33
import fs from 'node:fs';
4-
import { spawn } from 'node:child_process';
54
import { join, dirname } from 'node:path';
65
import { fileURLToPath } from 'node:url';
76
import { Command } from 'commander';
87
import { browser } from '../src/browser.js';
8+
import * as esbuild from 'esbuild';
99

1010
// Get pkg info
1111
const __filename = fileURLToPath(import.meta.url);
@@ -29,14 +29,7 @@ class Processor extends EventTarget {
2929
this.url = opts['url'];
3030
this.headless = opts['headless'];
3131
this._func = '';
32-
33-
if (file.endsWith('.ts')) {
34-
this.startTsWatcher();
35-
}
36-
else {
37-
this.startFileWatcher();
38-
}
39-
32+
this.watcher();
4033
browser(this);
4134
}
4235

@@ -49,37 +42,35 @@ class Processor extends EventTarget {
4942
this.dispatchEvent(new Event('change'));
5043
}
5144

52-
startTsWatcher() {
53-
// start a watcher
54-
const tscCommand = spawn('npx', [
55-
'tsc', file,
56-
'-w',
57-
'--outFile',
58-
'/dev/stdout',
59-
'--target',
60-
'esnext',
61-
], { cwd: process.cwd() });
62-
tscCommand.stdout.on('data', data => {
63-
const output = data.toString();
64-
if (output.includes('Starting') || output.includes('Watching for file changes')) {
65-
return;
66-
};
67-
this.func = output;
68-
})
69-
tscCommand.stderr.on('data', data => {
70-
console.error('error', data.toString());
45+
watcher() {
46+
if (!fs.existsSync(file)) {
47+
throw new Error(`${file} file not found.`);
48+
}
49+
// execute it immediately then start watcher
50+
this.build();
51+
fs.watchFile(file, { interval: 100 }, () => {
52+
this.build();
7153
});
7254
}
7355

74-
startFileWatcher() {
75-
fs.watchFile(file, { interval: 100 }, () => {
76-
if (fs.existsSync(file)) {
77-
this.func = fs.readFileSync(file, 'utf8');
56+
async build() {
57+
console.log('build')
58+
try {
59+
if (file.endsWith('.ts')) {
60+
const { outputFiles: [stdout]} = await esbuild.build({
61+
entryPoints: [file],
62+
format: 'esm',
63+
bundle: true,
64+
write: false
65+
});
66+
this.func = new TextDecoder().decode(stdout.contents);
7867
}
7968
else {
80-
console.error(`${file} file not found.`)
69+
this.func = fs.readFileSync(file, 'utf8');
8170
}
82-
});
71+
} catch (e) {
72+
console.error(e);
73+
}
8374
}
8475

8576
start() {

0 commit comments

Comments
 (0)