@champpaba/gslide 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/bin/gslide.mjs CHANGED
@@ -12,7 +12,7 @@ const gslideExe = join(venvBin, "gslide");
12
12
 
13
13
  if (!existsSync(gslideExe)) {
14
14
  console.error("gslide Python package not installed.");
15
- console.error("Run: npm rebuild @ChampPABA/gslide");
15
+ console.error("Run: npm rebuild @champpaba/gslide");
16
16
  process.exit(1);
17
17
  }
18
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@champpaba/gslide",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
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.0"
3
+ version = "0.1.1"
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.0"
3
+ __version__ = "0.1.1"
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"],
27
27
  capture_output=True,
28
28
  text=True,
29
29
  timeout=15,
@@ -45,7 +45,7 @@ def update() -> None:
45
45
  click.echo("Updating...")
46
46
 
47
47
  proc = subprocess.run(
48
- ["npm", "update", "-g", "@ChampPABA/gslide"],
48
+ ["npm", "update", "-g", "@champpaba/gslide"],
49
49
  timeout=120,
50
50
  )
51
51
  if proc.returncode == 0: