@cedarjs/web-server 2.0.1-next.23 → 2.0.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.
package/dist/bin.js CHANGED
@@ -35,7 +35,7 @@ async function serveWeb(options = {}) {
35
35
  );
36
36
  if (!distIndexExists) {
37
37
  throw new Error(
38
- "no built files to serve; run `yarn cedar build web` before serving the web side"
38
+ "no built files to serve; run `yarn rw build web` before serving the web side"
39
39
  );
40
40
  }
41
41
  if (process.env.REDWOOD_WEB_PORT) {
package/dist/webServer.js CHANGED
@@ -45,7 +45,7 @@ async function serveWeb(options = {}) {
45
45
  );
46
46
  if (!distIndexExists) {
47
47
  throw new Error(
48
- "no built files to serve; run `yarn cedar build web` before serving the web side"
48
+ "no built files to serve; run `yarn rw build web` before serving the web side"
49
49
  );
50
50
  }
51
51
  if (process.env.REDWOOD_WEB_PORT) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/web-server",
3
- "version": "2.0.1-next.23+ee9637a66",
3
+ "version": "2.0.1",
4
4
  "description": "CedarJS's server for the Web side",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,8 +25,8 @@
25
25
  "prepublishOnly": "NODE_ENV=production yarn build"
26
26
  },
27
27
  "dependencies": {
28
- "@cedarjs/fastify-web": "2.0.1-next.23+ee9637a66",
29
- "@cedarjs/project-config": "2.0.1-next.23+ee9637a66",
28
+ "@cedarjs/fastify-web": "2.0.1",
29
+ "@cedarjs/project-config": "2.0.1",
30
30
  "ansis": "4.1.0",
31
31
  "dotenv-defaults": "5.0.2",
32
32
  "fastify": "5.4.0",
@@ -34,12 +34,12 @@
34
34
  "yargs": "17.7.2"
35
35
  },
36
36
  "devDependencies": {
37
- "@cedarjs/framework-tools": "2.0.1-next.23",
37
+ "@cedarjs/framework-tools": "2.0.1",
38
38
  "tsx": "4.20.5",
39
- "typescript": "5.9.3"
39
+ "typescript": "5.9.2"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "ee9637a6646277cf451b4bc1f84718a97f336889"
44
+ "gitHead": "857071cda8373db8db3248e3a58560e3fdef0240"
45
45
  }