@opendirectory.dev/skills 0.1.24 → 0.1.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendirectory.dev/skills",
3
- "version": "0.1.24",
3
+ "version": "0.1.25",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "bin": {
@@ -4,6 +4,9 @@ import urllib.request
4
4
  import json
5
5
  import ssl
6
6
 
7
+ # Set UTF-8 encoding for standard output to support emojis
8
+ sys.stdout.reconfigure(encoding='utf-8')
9
+
7
10
  def check_domain(domain):
8
11
  print(f"Checking {domain}...")
9
12