playcademy 0.14.4-alpha.1 → 0.14.4-alpha.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/dist/index.js CHANGED
@@ -5916,6 +5916,11 @@ function createEsbuildConfig(entryCode, paths, bundleConfig, customRoutesDir, op
5916
5916
  // │ install. We embed it in dist/ and alias imports to point there. │
5917
5917
  // └─────────────────────────────────────────────────────────────────┘
5918
5918
  "@playcademy/constants": constantsEntry,
5919
+ // ┌─ Workspace-only edge-play package ──────────────────────────────┐
5920
+ // │ @playcademy/edge-play is used in generated entry code for auth │
5921
+ // │ middleware. It's embedded in dist/ like constants. │
5922
+ // └─────────────────────────────────────────────────────────────────┘
5923
+ "@playcademy/edge-play": edgePlaySrc,
5919
5924
  // ┌─ User's custom routes ──────────────────────────────────────────┐
5920
5925
  // │ @game-api is a virtual module that maps to the user's API dir. │
5921
5926
  // │ Example: import * as route from '@game-api/hello.ts' │
package/dist/utils.js CHANGED
@@ -1652,6 +1652,11 @@ function createEsbuildConfig(entryCode, paths, bundleConfig, customRoutesDir, op
1652
1652
  // │ install. We embed it in dist/ and alias imports to point there. │
1653
1653
  // └─────────────────────────────────────────────────────────────────┘
1654
1654
  "@playcademy/constants": constantsEntry,
1655
+ // ┌─ Workspace-only edge-play package ──────────────────────────────┐
1656
+ // │ @playcademy/edge-play is used in generated entry code for auth │
1657
+ // │ middleware. It's embedded in dist/ like constants. │
1658
+ // └─────────────────────────────────────────────────────────────────┘
1659
+ "@playcademy/edge-play": edgePlaySrc,
1655
1660
  // ┌─ User's custom routes ──────────────────────────────────────────┐
1656
1661
  // │ @game-api is a virtual module that maps to the user's API dir. │
1657
1662
  // │ Example: import * as route from '@game-api/hello.ts' │
package/dist/version.js CHANGED
@@ -1,10 +1,8 @@
1
1
  // package.json
2
2
  var package_default = {
3
3
  name: "playcademy",
4
- version: "0.14.3",
4
+ version: "0.14.4",
5
5
  type: "module",
6
- module: "./dist/index.js",
7
- main: "./dist/index.js",
8
6
  exports: {
9
7
  ".": {
10
8
  types: "./dist/index.d.ts",
@@ -32,12 +30,14 @@ var package_default = {
32
30
  types: "./dist/version.d.ts"
33
31
  }
34
32
  },
35
- files: [
36
- "dist"
37
- ],
33
+ main: "./dist/index.js",
34
+ module: "./dist/index.js",
38
35
  bin: {
39
36
  playcademy: "./dist/index.js"
40
37
  },
38
+ files: [
39
+ "dist"
40
+ ],
41
41
  scripts: {
42
42
  build: "bun build.ts",
43
43
  dev: "PLAYCADEMY_BASE_URL=http://localhost:5174 bun src/index.ts",
package/package.json CHANGED
@@ -1,9 +1,7 @@
1
1
  {
2
2
  "name": "playcademy",
3
- "version": "0.14.4-alpha.1",
3
+ "version": "0.14.4-alpha.2",
4
4
  "type": "module",
5
- "module": "./dist/index.js",
6
- "main": "./dist/index.js",
7
5
  "exports": {
8
6
  ".": {
9
7
  "types": "./dist/index.d.ts",
@@ -31,12 +29,14 @@
31
29
  "types": "./dist/version.d.ts"
32
30
  }
33
31
  },
34
- "files": [
35
- "dist"
36
- ],
32
+ "main": "./dist/index.js",
33
+ "module": "./dist/index.js",
37
34
  "bin": {
38
35
  "playcademy": "./dist/index.js"
39
36
  },
37
+ "files": [
38
+ "dist"
39
+ ],
40
40
  "scripts": {
41
41
  "build": "bun build.ts",
42
42
  "dev": "PLAYCADEMY_BASE_URL=http://localhost:5174 bun src/index.ts",