@reliverse/dler 2.0.8 → 2.0.11
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/LICENSE +21 -0
- package/README.md +72 -0
- package/package.json +13 -12
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Nazar Kornienko (blefnk), Bleverse, Reliverse
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# 🧬 Dler
|
|
2
|
+
|
|
3
|
+
> **@reliverse/dler** is an open-source CLI & framework which helps developers build TypeScript/JavaScript libraries and CLI tools easily. It provides ready-to-use primitives, so you don't have to write them from scratch.
|
|
4
|
+
|
|
5
|
+
[Sponsor](https://github.com/sponsors/blefnk) — [Discord](https://discord.gg/Pb8uKbwpsJ) — [GitHub](https://github.com/reliverse/dler) — [NPM](https://npmjs.com/@reliverse/dler) — [Introduction](https://blefnk.reliverse.org/blog/articles/package-managers)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# install as a dev dep:
|
|
11
|
+
bun add -D @reliverse/dler
|
|
12
|
+
# or, install globally:
|
|
13
|
+
bun i -g @reliverse/dler
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
# when installed as a dev dep:
|
|
20
|
+
bun dler [command] [options]
|
|
21
|
+
# when installed globally:
|
|
22
|
+
dler [command] [options]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## v2 Docs
|
|
26
|
+
|
|
27
|
+
Docs for v2 will be available soon. For now, you can read the v1 docs, or check alpha docs in [relidocs](./relidocs) directory in the root of the project. For example, you can [learn Dler CLI defaults](./relidocs/DEFAULTS.md) there.
|
|
28
|
+
|
|
29
|
+
## v1 Docs
|
|
30
|
+
|
|
31
|
+
Visit [docs.reliverse.org/libraries/dler](https://docs.reliverse.org/libraries/dler) to learn how to install and use `@reliverse/dler` library.
|
|
32
|
+
|
|
33
|
+
## Contributing
|
|
34
|
+
|
|
35
|
+
A Bun monorepo created with the monorepo bootstrapper.
|
|
36
|
+
|
|
37
|
+
## Getting Started
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
bun install
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Workspaces
|
|
44
|
+
|
|
45
|
+
This monorepo was generated by dler init. It uses bun workspaces to manage multiple packages.
|
|
46
|
+
|
|
47
|
+
### Scripts
|
|
48
|
+
|
|
49
|
+
Run scripts across all workspaces:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
bun --filter '*' <script>
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Run scripts for specific packages:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
bun --filter <package-name> <script>
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## Stand With Ukraine
|
|
62
|
+
|
|
63
|
+
- 💙 Please help fund drones, medkits, and victory. [Donate now](https://u24.gov.ua), please, it matters.
|
|
64
|
+
- 💛 Every dollar helps stop [russia's war crimes](https://war.ukraine.ua/russia-war-crimes) and saves lives.
|
|
65
|
+
|
|
66
|
+
## Stand With Reliverse
|
|
67
|
+
|
|
68
|
+
[Star the project repo](https://github.com/reliverse/dler) to help Reliverse community grow; Follow this project's author, [Nazar Kornienko](https://github.com/blefnk) & [Reliverse](https://github.com/reliverse), to get updates about new projects; [Become a sponsor](https://github.com/sponsors/blefnk) and power the next wave of tools that _just feel right_.
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
Licensed under [MIT](LICENSE) © 2025 [Nazar Kornienko (blefnk)](https://github.com/blefnk), [Bleverse](https://bleverse.com), [Reliverse](https://github.com/reliverse)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@reliverse/dler",
|
|
3
3
|
"description": "@reliverse/dler is a framework which helps TypeScript and JavaScript developers create their libraries and CLI tools. It provides ready-to-use primitives, so you don't have to write them from scratch.",
|
|
4
4
|
"author": "reliverse",
|
|
5
|
-
"version": "2.0.
|
|
5
|
+
"version": "2.0.11",
|
|
6
6
|
"private": false,
|
|
7
7
|
"type": "module",
|
|
8
8
|
"bin": {
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"c12": "^3.3.0",
|
|
13
13
|
"clipboardy": "^5.0.0",
|
|
14
|
-
"@reliverse/dler-publish": "2.0.
|
|
15
|
-
"@reliverse/dler-bump": "2.0.
|
|
16
|
-
"@reliverse/dler-build": "2.0.
|
|
17
|
-
"@reliverse/dler-logger": "2.0.
|
|
18
|
-
"@reliverse/dler-matcher": "2.0.
|
|
19
|
-
"@reliverse/dler-launcher": "2.0.
|
|
20
|
-
"@reliverse/dler-prompt": "2.0.
|
|
21
|
-
"@reliverse/dler-helpers": "2.0.
|
|
22
|
-
"@reliverse/dler-pkg-tsc": "2.0.
|
|
23
|
-
"@reliverse/dler-mapper": "2.0.
|
|
14
|
+
"@reliverse/dler-publish": "2.0.11",
|
|
15
|
+
"@reliverse/dler-bump": "2.0.11",
|
|
16
|
+
"@reliverse/dler-build": "2.0.11",
|
|
17
|
+
"@reliverse/dler-logger": "2.0.11",
|
|
18
|
+
"@reliverse/dler-matcher": "2.0.11",
|
|
19
|
+
"@reliverse/dler-launcher": "2.0.11",
|
|
20
|
+
"@reliverse/dler-prompt": "2.0.11",
|
|
21
|
+
"@reliverse/dler-helpers": "2.0.11",
|
|
22
|
+
"@reliverse/dler-pkg-tsc": "2.0.11",
|
|
23
|
+
"@reliverse/dler-mapper": "2.0.11"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
26
|
"dler",
|
|
@@ -32,5 +32,6 @@
|
|
|
32
32
|
"files": [
|
|
33
33
|
"dist",
|
|
34
34
|
"package.json"
|
|
35
|
-
]
|
|
35
|
+
],
|
|
36
|
+
"license": "MIT"
|
|
36
37
|
}
|