playcademy 0.14.18-alpha.1 → 0.14.18
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/dist/index.js +3 -4
- package/dist/utils.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7230,7 +7230,7 @@ import { join as join18 } from "path";
|
|
|
7230
7230
|
// package.json
|
|
7231
7231
|
var package_default2 = {
|
|
7232
7232
|
name: "playcademy",
|
|
7233
|
-
version: "0.14.
|
|
7233
|
+
version: "0.14.17",
|
|
7234
7234
|
type: "module",
|
|
7235
7235
|
exports: {
|
|
7236
7236
|
".": {
|
|
@@ -9517,10 +9517,9 @@ async function bundleStubWorker() {
|
|
|
9517
9517
|
|
|
9518
9518
|
// src/lib/deploy/utils.ts
|
|
9519
9519
|
init_src2();
|
|
9520
|
-
init_config2();
|
|
9521
9520
|
function getDeploymentId(gameSlug) {
|
|
9522
|
-
const
|
|
9523
|
-
return
|
|
9521
|
+
const isProduction2 = process.env.PLAYCADEMY_ENV === "production";
|
|
9522
|
+
return isProduction2 ? gameSlug : `${WORKER_NAMING.STAGING_PREFIX}${gameSlug}`;
|
|
9524
9523
|
}
|
|
9525
9524
|
|
|
9526
9525
|
// src/lib/deploy/steps.ts
|
package/dist/utils.js
CHANGED
package/dist/version.js
CHANGED