api-emulator 0.5.0 → 0.5.1

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 +2 -2
  2. package/package.json +14 -14
package/dist/index.js CHANGED
@@ -647,7 +647,7 @@ function createServiceRuntime(options) {
647
647
  }
648
648
 
649
649
  // src/commands/start.ts
650
- var pkg = { version: "0.5.0" };
650
+ var pkg = { version: "0.5.1" };
651
651
  function loadSeedConfig(seedPath) {
652
652
  if (seedPath) {
653
653
  const fullPath = resolve2(seedPath);
@@ -858,7 +858,7 @@ async function listCommand(options = {}) {
858
858
  }
859
859
 
860
860
  // src/index.ts
861
- var pkg2 = { version: "0.5.0" };
861
+ var pkg2 = { version: "0.5.1" };
862
862
  var defaultPort = process.env.API_EMULATOR_PORT ?? process.env.EMULATE_PORT ?? process.env.PORT ?? "4000";
863
863
  var program = new Command();
864
864
  program.name("api-emulator").description("Local API emulators you can run, share, and extend with plugins").version(pkg2.version);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "api-emulator",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Local API emulators you can run, share, and extend with plugins",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -56,19 +56,19 @@
56
56
  "commander": "^14",
57
57
  "picocolors": "^1.1.1",
58
58
  "yaml": "^2",
59
- "@emulators/core": "workspace:*",
60
- "@emulators/github": "workspace:*",
61
- "@emulators/apple": "workspace:*",
62
- "@emulators/microsoft": "workspace:*",
63
- "@emulators/okta": "workspace:*",
64
- "@emulators/aws": "workspace:*",
65
- "@emulators/google": "workspace:*",
66
- "@emulators/mongoatlas": "workspace:*",
67
- "@emulators/slack": "workspace:*",
68
- "@emulators/vercel": "workspace:*",
69
- "@emulators/resend": "workspace:*",
70
- "@emulators/stripe": "workspace:*",
71
- "@emulators/clerk": "workspace:*"
59
+ "@emulators/core": "0.5.0",
60
+ "@emulators/github": "0.5.0",
61
+ "@emulators/apple": "0.5.0",
62
+ "@emulators/microsoft": "0.5.0",
63
+ "@emulators/okta": "0.5.0",
64
+ "@emulators/aws": "0.5.0",
65
+ "@emulators/google": "0.5.0",
66
+ "@emulators/mongoatlas": "0.5.0",
67
+ "@emulators/slack": "0.5.0",
68
+ "@emulators/vercel": "0.5.0",
69
+ "@emulators/resend": "0.5.0",
70
+ "@emulators/stripe": "0.5.0",
71
+ "@emulators/clerk": "0.5.0"
72
72
  },
73
73
  "devDependencies": {
74
74
  "tsup": "^8",