colbrush 1.14.0 β 1.16.0
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 +13 -0
- package/dist/cli.cjs +2 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -213,6 +213,19 @@ For more details, visit the **[π Colbrush Official Website](https://www.colbr
|
|
|
213
213
|
| **μ€μνΈ** | **λ
Ένμ** | [**κΉμ°μ§**](https://github.com/yeonjin719) | [**μ€νμ±**](https://github.com/hyesngy) | [**μ΄μ€ν¬**](https://github.com/jjjuni) |
|
|
214
214
|
| PM | Designer | Frontend Β· Library Engineer | Frontend Β· Library Engineer | Frontend Β· Library Engineer |
|
|
215
215
|
|
|
216
|
+
## π€ Contributing
|
|
217
|
+
|
|
218
|
+
We welcome contributions from the community! Colbrush is an open-source project, and we'd love your help to make it better.
|
|
219
|
+
|
|
220
|
+
### How to Contribute
|
|
221
|
+
|
|
222
|
+
- π **Report bugs** - Found a bug? [Open an issue](https://github.com/2025-OSDC/colbrush/issues)
|
|
223
|
+
- β¨ **Suggest features** - Have an idea? [Share it with us](https://github.com/2025-OSDC/colbrush/issues)
|
|
224
|
+
- π **Improve documentation** - Help us make our docs better
|
|
225
|
+
- π» **Submit pull requests** - Fix bugs or add new features
|
|
226
|
+
|
|
227
|
+
Please read our [Contributing Guide](CONTRIBUTING.md) for detailed information on how to contribute.
|
|
228
|
+
|
|
216
229
|
## π License
|
|
217
230
|
|
|
218
231
|
MIT License
|
package/dist/cli.cjs
CHANGED
|
@@ -690,20 +690,14 @@ ${bold("LEARN MORE")}
|
|
|
690
690
|
|
|
691
691
|
// src/cli/index.ts
|
|
692
692
|
var import_node_fs3 = __toESM(require("fs"), 1);
|
|
693
|
-
var
|
|
693
|
+
var VERSION = "1.16.0";
|
|
694
694
|
async function main() {
|
|
695
695
|
const flags = parseFlags();
|
|
696
696
|
const progress = createCliProgress();
|
|
697
697
|
const startTime = Date.now();
|
|
698
698
|
try {
|
|
699
699
|
if (flags.version) {
|
|
700
|
-
|
|
701
|
-
if (import_node_fs3.default.existsSync(packagePath)) {
|
|
702
|
-
const packageJson = JSON.parse(import_node_fs3.default.readFileSync(packagePath, "utf8"));
|
|
703
|
-
console.log(`\u{1F3A8} Colbrush v${packageJson.version}`);
|
|
704
|
-
} else {
|
|
705
|
-
console.log("\u{1F3A8} Colbrush CLI");
|
|
706
|
-
}
|
|
700
|
+
console.log(`\u{1F3A8} Colbrush v${VERSION}`);
|
|
707
701
|
process.exit(0);
|
|
708
702
|
}
|
|
709
703
|
if (flags.help) {
|
package/package.json
CHANGED