Johannes Skuterud
Johannes Skuterud
### Current Behavior If I have an existing project folder or repository, I first run `npx tsdx create foo`, then copy the contents of `foo` to the root of my...
See [this issue](https://github.com/jaredpalmer/tsdx/issues/1146).
TSDX uses typescript version 3. Many new features are available in version 4. Please update to the latest version.
It says in the example docs that after calling `archive.finalize()` `'close', 'end' or 'finish' may be fired right after calling this method so register to them beforehand ` ---- Ok,...
**Documentation request** I would very much like to see an example of how to properly save as buffer. Say i have to 4 strings: ``` const fileNameA = "file-a.txt" const...
It is confusing as to why you would need a login token when accessing a public package. Shouldn't the pointer in the local .npmrc file be enough? I.e `@:registry=https://npm.pkg.github.com`. This...
Can I run CRA programmatically using a js API like vite: https://vitejs.dev/guide/api-javascript.html#createserver? ``` import {CRA} from 'create-react-app'; CRA.runServer(3000); ```
Hi, I have a feature request! > Evaluate code during build using a prebuild evaluation function from esbuild I would love a feature where I could import a special function...
I would like to implement a typescript function called `iterateAllOfJsonSchema`. ```ts const iterateAllOfJsonSchema = (schema: GenericSchema) => { Object.entries(schema).reduce((acc, cur) => { if (cur.type === 'string') { //
How do i get the build result when using: ```js import * as esbuild from 'esbuild' let ctx = await esbuild.context({ entryPoints: ['app.js'], outfile: 'out.js', bundle: true, }) await ctx.watch()...