aurasu 0.1.9 → 0.1.10
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/aura.package-integrity.json +5 -5
- package/aura.package-integrity.sig +1 -1
- package/bin/play.js +4 -1
- package/package.json +1 -1
|
@@ -207,8 +207,8 @@
|
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"path": "bin/play.js",
|
|
210
|
-
"sha256": "
|
|
211
|
-
"size":
|
|
210
|
+
"sha256": "a4ddc9f262e39ccf1594af45fe16e08fdbdadc1e01584133cd7952c00826f61a",
|
|
211
|
+
"size": 42486
|
|
212
212
|
},
|
|
213
213
|
{
|
|
214
214
|
"path": "config/gameplay/game.config.js",
|
|
@@ -222,8 +222,8 @@
|
|
|
222
222
|
},
|
|
223
223
|
{
|
|
224
224
|
"path": "package.json",
|
|
225
|
-
"sha256": "
|
|
226
|
-
"size":
|
|
225
|
+
"sha256": "ef55948f640acdfa98b527dc498ace98853715365f6a0b071b013d12b4a3af59",
|
|
226
|
+
"size": 569
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"path": "prefabs/playfield.prefab.js",
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
"description": "A hit-circle rhythm game built with AuraJS.",
|
|
315
315
|
"name": "aurasu",
|
|
316
316
|
"type": "module",
|
|
317
|
-
"version": "0.1.
|
|
317
|
+
"version": "0.1.10"
|
|
318
318
|
},
|
|
319
319
|
"publishedMetadata": {
|
|
320
320
|
"authored": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
mThGzdagwd7PxEyBe/ztbTrkBVpTKNRUQdp9WHWGOMHjkrhsCEXELiEdq6NKgNm3ZOaYRVtnH1eYZDfV7pqRAA==
|
package/bin/play.js
CHANGED
|
@@ -67,7 +67,10 @@ function resolveNpmBinary() {
|
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
function isAuraMaxxInstalled() {
|
|
70
|
-
|
|
70
|
+
if (process.env.AURAMAXX_CLI_AVAILABLE === '1') {
|
|
71
|
+
return true;
|
|
72
|
+
}
|
|
73
|
+
const probe = spawnSync(resolveAuraMaxxBinary(), ['--help'], {
|
|
71
74
|
stdio: 'ignore',
|
|
72
75
|
env: process.env,
|
|
73
76
|
});
|