@champpaba/gslide 0.1.1 → 0.1.2

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": "@champpaba/gslide",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "CLI tool for automating Google Slides 'Help me visualize' feature via browser automation",
5
5
  "bin": {
6
6
  "gslide": "./bin/gslide.mjs"
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "gslide"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "CLI tool for automating Google Slides 'Help me visualize' feature via browser automation"
5
5
  requires-python = ">=3.10"
6
6
  dependencies = [
@@ -1,3 +1,3 @@
1
1
  """gslide — CLI for automating Google Slides 'Help me visualize' feature."""
2
2
 
3
- __version__ = "0.1.1"
3
+ __version__ = "0.1.2"
package/src/gslide/cli.py CHANGED
@@ -23,7 +23,7 @@ def update() -> None:
23
23
 
24
24
  try:
25
25
  result = subprocess.run(
26
- ["npm", "view", "@champpaba/gslide", "version"],
26
+ ["npm", "view", "@champpaba/gslide", "version", "--registry", "https://registry.npmjs.org"],
27
27
  capture_output=True,
28
28
  text=True,
29
29
  timeout=15,