@playcademy/vite-plugin 0.0.1-beta.5 → 0.0.1-beta.7

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -118775,7 +118775,7 @@ var SelectShopListingSchema = createSelectSchema(shopListings);
118775
118775
  var UpdateShopListingSchema = InsertShopListingSchema.partial().extend({});
118776
118776
 
118777
118777
  class DatabasePathManager {
118778
- static DEFAULT_DB_SUBPATH = join2("@playcademy", "vite-plugin", ".playcademy", "sandbox.db");
118778
+ static DEFAULT_DB_SUBPATH = join2("@playcademy", "vite-plugin", "node_modules", ".playcademy", "sandbox.db");
118779
118779
  static findNodeModulesPath() {
118780
118780
  let currentDir = process.cwd();
118781
118781
  while (currentDir !== dirname(currentDir)) {
@@ -118885,7 +118885,7 @@ async function seedCurrentProjectGame(db, project) {
118885
118885
  }
118886
118886
  var package_default = {
118887
118887
  name: "@playcademy/sandbox",
118888
- version: "0.1.0-beta.1",
118888
+ version: "0.1.0-beta.2",
118889
118889
  description: "Local development server for Playcademy game development",
118890
118890
  type: "module",
118891
118891
  exports: {
@@ -118914,8 +118914,6 @@ var package_default = {
118914
118914
  dependencies: {
118915
118915
  "@electric-sql/pglite": "^0.3.2",
118916
118916
  "@hono/node-server": "^1.14.2",
118917
- "@playcademy/api-core": "workspace:*",
118918
- "@playcademy/data": "workspace:*",
118919
118917
  commander: "^12.1.0",
118920
118918
  "drizzle-kit": "^0.31.0",
118921
118919
  "drizzle-orm": "^0.42.0",
@@ -118924,6 +118922,8 @@ var package_default = {
118924
118922
  picocolors: "^1.1.1"
118925
118923
  },
118926
118924
  devDependencies: {
118925
+ "@playcademy/api-core": "workspace:*",
118926
+ "@playcademy/data": "workspace:*",
118927
118927
  "@types/bun": "latest"
118928
118928
  },
118929
118929
  peerDependencies: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@playcademy/vite-plugin",
3
3
  "type": "module",
4
- "version": "0.0.1-beta.5",
4
+ "version": "0.0.1-beta.7",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
7
7
  "exports": {
@@ -15,12 +15,12 @@
15
15
  ],
16
16
  "scripts": {
17
17
  "build": "rm -rf dist && bun build.ts",
18
- "bump": "bunx bumpp --no-tag --no-push -c \"chore(@playcademy/vite-plugin): release v%s\"",
19
- "pub": "bun run build && bun run bump && bun publish --access public"
18
+ "pub": "bun run build && bun run bump && bun publish --access public",
19
+ "bump": "bunx bumpp --no-tag --no-push -c \"chore(@playcademy/vite-plugin): release v%s\""
20
20
  },
21
21
  "devDependencies": {
22
- "@playcademy/sandbox": "0.1.0-beta.2",
23
22
  "@playcademy/types": "latest",
23
+ "@playcademy/sandbox": "0.1.0-beta.3",
24
24
  "@types/archiver": "^6.0.3",
25
25
  "@types/bun": "latest"
26
26
  },