@champpaba/gslide 0.1.0 → 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/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 @
|
|
15
|
+
console.error("Run: npm rebuild @champpaba/gslide");
|
|
16
16
|
process.exit(1);
|
|
17
17
|
}
|
|
18
18
|
|
package/package.json
CHANGED
package/pyproject.toml
CHANGED
package/src/gslide/__init__.py
CHANGED
|
Binary file
|
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", "@
|
|
26
|
+
["npm", "view", "@champpaba/gslide", "version", "--registry", "https://registry.npmjs.org"],
|
|
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", "@
|
|
48
|
+
["npm", "update", "-g", "@champpaba/gslide"],
|
|
49
49
|
timeout=120,
|
|
50
50
|
)
|
|
51
51
|
if proc.returncode == 0:
|