@tsmodule/tsmodule 40.0.7 → 40.0.8
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
@@ -77,8 +77,8 @@ Ready out of the box:
|
|
77
77
|
|
78
78
|
Build in dev mode and watch for changes:
|
79
79
|
|
80
|
-
```
|
81
|
-
|
80
|
+
```
|
81
|
+
tsmodule dev
|
82
82
|
```
|
83
83
|
|
84
84
|
### Build to optimized ES modules
|
@@ -86,8 +86,8 @@ $ tsmodule dev
|
|
86
86
|
Production builds are minified ESM, with support for `my-package/a/b/c` path
|
87
87
|
resolution (see [Module configuration](#module-configuration) below).
|
88
88
|
|
89
|
-
```
|
90
|
-
|
89
|
+
```
|
90
|
+
tsmodule build [--bundle]
|
91
91
|
```
|
92
92
|
|
93
93
|
**All projects:**
|
@@ -116,8 +116,8 @@ is more appropriate.</sub>
|
|
116
116
|
|
117
117
|
### Run TypeScript directly
|
118
118
|
|
119
|
-
```
|
120
|
-
|
119
|
+
```
|
120
|
+
tsmodule file.ts
|
121
121
|
```
|
122
122
|
|
123
123
|
- Uses Node module loader to resolve TS at runtime
|