task-pipeliner 0.1.0 → 0.1.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.ko.md +3 -1
- package/README.md +12 -7
- package/package.json +9 -1
package/README.ko.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> 조건 기반 작업 파이프라인 실행기로 아름다운 CLI 출력을 제공합니다
|
|
4
4
|
|
|
5
|
-
**버전:** 0.1.
|
|
5
|
+
**버전:** 0.1.1
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
@@ -27,6 +27,8 @@
|
|
|
27
27
|
|
|
28
28
|
- 📚 **[문서](https://task-pipeliner.racgoo.com/)** - 완전한 DSL 참조 및 가이드
|
|
29
29
|
- 🎨 **[시각적 생성기](https://task-pipeliner-generator.racgoo.com/)** - 브라우저에서 시각적으로 워크플로우 생성
|
|
30
|
+
- 💻 **[GitHub](https://github.com/racgoo/task-pipeliner)** - 소스 코드 및 이슈 추적
|
|
31
|
+
- 📦 **[npm](https://www.npmjs.com/package/task-pipeliner)** - npm 레지스트리 패키지
|
|
30
32
|
> **CLI 명령어**:
|
|
31
33
|
```bash
|
|
32
34
|
tp open generator # 시각적 생성기 열기
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> A powerful, condition-based task pipeline runner with beautiful CLI output
|
|
4
4
|
|
|
5
|
-
**Version:** 0.1.
|
|
5
|
+
**Version:** 0.1.1
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
@@ -13,17 +13,22 @@
|
|
|
13
13
|
|
|
14
14
|
## ✨ Features
|
|
15
15
|
|
|
16
|
-
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
|
|
16
|
+
- **Condition-based execution** - Run steps based on file existence, user choices, environment variables, and more
|
|
17
|
+
|
|
18
|
+
- **Parallel execution** - Run multiple tasks simultaneously
|
|
19
|
+
|
|
20
|
+
- **Interactive prompts** - Ask users for input and choices during execution
|
|
21
|
+
|
|
22
|
+
- **YAML & JSON support** - Declarative pipelining in YAML & JSON formats
|
|
23
|
+
|
|
24
|
+
- **Variable substitution** - Use `{{variables}}` throughout your workflows
|
|
22
25
|
|
|
23
26
|
## 🔗 Resources
|
|
24
27
|
|
|
25
28
|
- 📚 **[Documentation](https://task-pipeliner.racgoo.com/)** - Complete DSL reference and guides
|
|
26
29
|
- 🎨 **[Visual Generator](https://task-pipeliner-generator.racgoo.com/)** - Create workflows visually in your browser
|
|
30
|
+
- 💻 **[GitHub](https://github.com/racgoo/task-pipeliner)** - Source code and issue tracking
|
|
31
|
+
- 📦 **[npm](https://www.npmjs.com/package/task-pipeliner)** - Package on npm registry
|
|
27
32
|
- 💻 **CLI Commands**:
|
|
28
33
|
```bash
|
|
29
34
|
tp open generator # Open visual generator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "task-pipeliner",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A task pipeline runner with condition-based workflow execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
],
|
|
18
18
|
"author": "",
|
|
19
19
|
"license": "MIT",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/racgoo/task-pipeliner.git"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/racgoo/task-pipeliner#readme",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/racgoo/task-pipeliner/issues"
|
|
27
|
+
},
|
|
20
28
|
"dependencies": {
|
|
21
29
|
"@eslint/js": "^9.39.2",
|
|
22
30
|
"boxen": "^8.0.1",
|