@cedarjs/api-server 4.0.0-canary.13842 → 4.0.0-canary.13843

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/bin.js CHANGED
@@ -949,7 +949,7 @@ if (!process.env.CEDAR_ENV_FILES_LOADED) {
949
949
  process.env.CEDAR_ENV_FILES_LOADED = "true";
950
950
  }
951
951
  process.env.NODE_ENV ??= "production";
952
- yargs(hideBin(process.argv)).scriptName("rw-server").strict().alias("h", "help").alias("v", "version").command(
952
+ yargs(hideBin(process.argv)).scriptName("cedar-server").strict().alias("h", "help").alias("v", "version").command(
953
953
  "$0",
954
954
  description2,
955
955
  // @ts-expect-error The yargs types seem wrong; it's ok for builder to be a function
package/dist/cjs/bin.js CHANGED
@@ -972,7 +972,7 @@ if (!process.env.CEDAR_ENV_FILES_LOADED) {
972
972
  process.env.CEDAR_ENV_FILES_LOADED = "true";
973
973
  }
974
974
  process.env.NODE_ENV ??= "production";
975
- (0, import_yargs.default)((0, import_helpers4.hideBin)(process.argv)).scriptName("rw-server").strict().alias("h", "help").alias("v", "version").command(
975
+ (0, import_yargs.default)((0, import_helpers4.hideBin)(process.argv)).scriptName("cedar-server").strict().alias("h", "help").alias("v", "version").command(
976
976
  "$0",
977
977
  description2,
978
978
  // @ts-expect-error The yargs types seem wrong; it's ok for builder to be a function
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/api-server",
3
- "version": "4.0.0-canary.13842+a7e0294feb",
3
+ "version": "4.0.0-canary.13843+afbae49f91",
4
4
  "description": "CedarJS's HTTP server for Serverless Functions",
5
5
  "repository": {
6
6
  "type": "git",
@@ -87,10 +87,12 @@
87
87
  "main": "./dist/createServer.js",
88
88
  "types": "./dist/createServer.d.ts",
89
89
  "bin": {
90
+ "cedar-api-server-watch": "./dist/cjs/watch.js",
91
+ "cedar-log-formatter": "./dist/cjs/logFormatter/bin.js",
92
+ "cedar-server": "./dist/cjs/bin.js",
90
93
  "cedarjs-api-server-watch": "./dist/watch.js",
91
94
  "cedarjs-log-formatter": "./dist/logFormatter/bin.js",
92
95
  "cedarjs-server": "./dist/bin.js",
93
- "rw-api-server-watch": "./dist/cjs/watch.js",
94
96
  "rw-log-formatter": "./dist/cjs/logFormatter/bin.js",
95
97
  "rw-server": "./dist/cjs/bin.js"
96
98
  },
@@ -111,11 +113,11 @@
111
113
  "test:watch": "vitest watch"
112
114
  },
113
115
  "dependencies": {
114
- "@cedarjs/context": "4.0.0-canary.13842",
115
- "@cedarjs/fastify-web": "4.0.0-canary.13842",
116
- "@cedarjs/internal": "4.0.0-canary.13842",
117
- "@cedarjs/project-config": "4.0.0-canary.13842",
118
- "@cedarjs/web-server": "4.0.0-canary.13842",
116
+ "@cedarjs/context": "4.0.0-canary.13843",
117
+ "@cedarjs/fastify-web": "4.0.0-canary.13843",
118
+ "@cedarjs/internal": "4.0.0-canary.13843",
119
+ "@cedarjs/project-config": "4.0.0-canary.13843",
120
+ "@cedarjs/web-server": "4.0.0-canary.13843",
119
121
  "@fastify/multipart": "9.4.0",
120
122
  "@fastify/url-data": "6.0.3",
121
123
  "ansis": "4.2.0",
@@ -132,7 +134,7 @@
132
134
  "yargs": "17.7.2"
133
135
  },
134
136
  "devDependencies": {
135
- "@cedarjs/framework-tools": "4.0.0-canary.13842",
137
+ "@cedarjs/framework-tools": "4.0.0-canary.13843",
136
138
  "@types/aws-lambda": "8.10.161",
137
139
  "@types/dotenv-defaults": "^5.0.0",
138
140
  "@types/split2": "4.2.3",
@@ -145,7 +147,7 @@
145
147
  "vitest": "3.2.4"
146
148
  },
147
149
  "peerDependencies": {
148
- "@cedarjs/graphql-server": "4.0.0-canary.13842"
150
+ "@cedarjs/graphql-server": "4.0.0-canary.13843"
149
151
  },
150
152
  "peerDependenciesMeta": {
151
153
  "@cedarjs/graphql-server": {
@@ -155,5 +157,5 @@
155
157
  "publishConfig": {
156
158
  "access": "public"
157
159
  },
158
- "gitHead": "a7e0294feb8121a688b70c7e716bf150c6d2efb1"
160
+ "gitHead": "afbae49f91d6bc328a80ca4361509370e02bc50b"
159
161
  }