@putout/printer 8.8.0 → 8.8.1
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/ChangeLog +5 -0
- package/README.md +2 -5
- package/package.json +1 -1
package/ChangeLog
CHANGED
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Supports:
|
|
|
23
23
|
|
|
24
24
|
- ✅ **ES2023**;
|
|
25
25
|
- ✅ **JSX**;
|
|
26
|
-
- ✅ **TypeScript
|
|
26
|
+
- ✅ [**TypeScript**](https://www.typescriptlang.org/);
|
|
27
27
|
- ✅ [**JSON**](https://github.com/coderaiser/putout/tree/master/packages/processor-json#readme);
|
|
28
28
|
|
|
29
29
|
## Install
|
|
@@ -183,10 +183,7 @@ When you want to improve support of existing visitor or extend **Printer** with
|
|
|
183
183
|
When you need to override behavior of existing visitor use:
|
|
184
184
|
|
|
185
185
|
```js
|
|
186
|
-
import {
|
|
187
|
-
print,
|
|
188
|
-
visitors as v,
|
|
189
|
-
} from '@putout/printer';
|
|
186
|
+
import {print, visitors as v} from '@putout/printer';
|
|
190
187
|
|
|
191
188
|
print(ast, {
|
|
192
189
|
visitors: {
|
package/package.json
CHANGED