1
1
#!/usr/bin/env node
2
2
3
3
import fs from 'node:fs' ;
4
- import { spawn } from 'node:child_process' ;
5
4
import { join , dirname } from 'node:path' ;
6
5
import { fileURLToPath } from 'node:url' ;
7
6
import { Command } from 'commander' ;
8
7
import { browser } from '../src/browser.js' ;
8
+ import * as esbuild from 'esbuild' ;
9
9
10
10
// Get pkg info
11
11
const __filename = fileURLToPath ( import . meta. url ) ;
@@ -29,14 +29,7 @@ class Processor extends EventTarget {
29
29
this . url = opts [ 'url' ] ;
30
30
this . headless = opts [ 'headless' ] ;
31
31
this . _func = '' ;
32
-
33
- if ( file . endsWith ( '.ts' ) ) {
34
- this . startTsWatcher ( ) ;
35
- }
36
- else {
37
- this . startFileWatcher ( ) ;
38
- }
39
-
32
+ this . watcher ( ) ;
40
33
browser ( this ) ;
41
34
}
42
35
@@ -49,37 +42,35 @@ class Processor extends EventTarget {
49
42
this . dispatchEvent ( new Event ( 'change' ) ) ;
50
43
}
51
44
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 ( ) ;
71
53
} ) ;
72
54
}
73
55
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 ) ;
78
67
}
79
68
else {
80
- console . error ( ` ${ file } file not found.` )
69
+ this . func = fs . readFileSync ( file , 'utf8' ) ;
81
70
}
82
- } ) ;
71
+ } catch ( e ) {
72
+ console . error ( e ) ;
73
+ }
83
74
}
84
75
85
76
start ( ) {
0 commit comments