@tsmodule/tsmodule 40.19.0 → 41.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/bin.js +20 -78
- package/dist/commands/build/index.js +16 -18
- package/dist/commands/convert/index.js +1 -48
- package/dist/commands/create/index.js +12 -45
- package/dist/commands/create/lib/templates.js +9 -9
- package/dist/commands/dev/index.js +12 -58
- package/dist/commands/execute/index.js +4 -4
- package/dist/commands/index.js +1 -63
- package/dist/commands/normalize/index.js +7 -9
- package/dist/index.js +1 -63
- package/dist/loader/index.js +6 -6
- package/dist/specification/externs.d.ts +2 -0
- package/dist/specification/externs.js +4 -0
- package/dist/specification/index.js +1 -1
- package/dist/types/index.js +1 -63
- package/dist/utils/cwd.js +4 -4
- package/dist/utils/programCatch.js +4 -42
- package/package.json +1 -2
package/README.md
CHANGED
@@ -132,7 +132,7 @@ Below are some example use cases of TS modules in practice.
|
|
132
132
|
|
133
133
|
The most common type of library will be a TS module with generic TypeScript
|
134
134
|
exports in `src/**/index.ts`, e.g.
|
135
|
-
[`
|
135
|
+
[`universal-shell`](https://github.com/ctjlewis/universal-shell), a Promise wrapper
|
136
136
|
around `child_process.spawn` that's used in tsmodule itself.
|
137
137
|
|
138
138
|
This library contains only one export, at `src/index.ts` (a function called
|