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 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 import_node_path = __toESM(require("path"), 1);
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
- const packagePath = import_node_path.default.join(process.cwd(), "package.json");
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "colbrush",
3
- "version": "1.14.0",
3
+ "version": "1.16.0",
4
4
  "description": "A React theme switching library that makes it easy to apply color-blind accessible UI themes",
5
5
  "homepage": "https://colbrush.site",
6
6
  "repository": {