@isograph/compiler 0.0.0-main-86e63615 → 0.0.0-main-6d6ea6df
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.
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/cli.js
CHANGED
|
@@ -7,13 +7,6 @@ var spawn = require('child_process').spawn;
|
|
|
7
7
|
var input = process.argv.slice(2);
|
|
8
8
|
|
|
9
9
|
if (bin != null) {
|
|
10
|
-
try {
|
|
11
|
-
// Force 755 (rwxr-xr-x)
|
|
12
|
-
//
|
|
13
|
-
// If Isograph is installed with Bun, the binary isn't always executable.
|
|
14
|
-
chmodSync(bin, 0o755);
|
|
15
|
-
} catch {}
|
|
16
|
-
|
|
17
10
|
spawn(bin, input, { stdio: 'inherit' }).on('exit', process.exit);
|
|
18
11
|
} else {
|
|
19
12
|
throw new Error(
|
package/package.json
CHANGED