@reliverse/dler 1.3.0 → 1.3.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/README.md +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,6 +124,10 @@ feel free to create your own addons. addons can be implemented as built-in direc
|
|
|
124
124
|
|
|
125
125
|
if you run just `dler` — it will display a list of addons which you can launch interactively.
|
|
126
126
|
|
|
127
|
+
## **available addons**
|
|
128
|
+
|
|
129
|
+
[agg](#1-agg), [build](#2-build), [conv](#3-conv), [deps](#4-deps), [inject](#5-inject), [libs](#6-libs), [merge](#7-merge), [mono](#8-mono), [pub](#9-pub), [relifso](#10-relifso), [relinka](#11-relinka), [rempts](#12-rempts), [spell](#13-spell), [split](#14-split).
|
|
130
|
+
|
|
127
131
|
### 1. `agg`
|
|
128
132
|
|
|
129
133
|
generates aggregator file with content like `import { getsomething } from "./utils.js"`.
|
|
@@ -343,6 +347,14 @@ await dler.spell({ spells: ["rename-file"], files: [] });
|
|
|
343
347
|
|
|
344
348
|
p.s. [see how rse cli uses hooked=true](https://github.com/reliverse/rse/blob/main/src/postbuild.ts)
|
|
345
349
|
|
|
350
|
+
### 14. `split`
|
|
351
|
+
|
|
352
|
+
splits your code/text file into multiple files.
|
|
353
|
+
|
|
354
|
+
```bash
|
|
355
|
+
dler split ...
|
|
356
|
+
```
|
|
357
|
+
|
|
346
358
|
## api (for advanced users)
|
|
347
359
|
|
|
348
360
|
the sdk lets you build custom dler cli plugins or even extend your own cli tools.
|