Releases: jaredpalmer/tsdx
Releases · jaredpalmer/tsdx
v0.4.1
v0.4.0
- Finish upgrade to rollup 1.0 165d522
- Update README.md 21b255b
- Use safePackageName to name file (#39) 0ffac4f
- Bump deps to rollup 1.0 (#38) 7247692
- Use safePackageName to name file e0566a3
- Bump deps to rollup 1.0 7ba586b
- Add a description to pkg.json 0f3e33e
- Add metadata and update readme 242b8d6
- Revert "Add np to devDeps" 65b3103
- Add np to devDeps 12b9886
v0.3.3
- Improved logger for watch and build mode, quieter output.
- Fixed a bug where UMD builds were not inlining CommonJS modules
v0.3.0
- Fixed all commands! For realz.
- You no longer need to specify
source
inpackage.json
, TSDX will now default tosrc/index.tsx
orsrc/index.ts
(it will figure out the file ending). You can also alter the entry by passing the--entry <input>
flag. For example,tsdx watch --entry src/foo.ts
will work. - Fixed template so that proper
files
get included out of the box - Added a new
--format
flag so you can specify module output. For example,tsdx build --format cjs,es
is kosher. The default value for the format flag iscjs,es,umd
. - TSDX will now create a special entry file in the
dist
directory for the CommonJS on your behalf. This file will direct Node.js to the correct dev or prod build depending on NODE_ENV.
v0.2.5
- Fixed
tsdx test
- Cooler onboarding