@cedarjs/web 1.0.0-canary.13002 → 1.0.0-canary.13004

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.
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cfw.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cfw.d.ts","sourceRoot":"","sources":["../../src/bins/cfw.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cfw.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cfw.d.ts","sourceRoot":"","sources":["../../../src/bins/cfw.ts"],"names":[],"mappings":""}
@@ -29,7 +29,7 @@ const cliPackageJsonFileUrl = (0, import_node_url.pathToFileURL)(
29
29
  );
30
30
  const requireFromCli = (0, import_node_module.createRequire)(cliPackageJsonFileUrl);
31
31
  const bins = requireFromCli("./package.json")["bin"];
32
- const cliEntryPointUrl = new URL(bins["rwfw"], cliPackageJsonFileUrl);
32
+ const cliEntryPointUrl = new URL(bins["cfw"], cliPackageJsonFileUrl);
33
33
  if (process.env.PROJECT_CWD) {
34
34
  process.chdir(process.env.PROJECT_CWD);
35
35
  }
@@ -94,7 +94,7 @@ function StackEntry({
94
94
  const fileReference = !lines.length ? "[System]" : shortestPath(fileShort);
95
95
  const rootClasses = [
96
96
  "stack-entry",
97
- !fileReference.includes("node_modules") && "rwfw",
97
+ !fileReference.includes("node_modules") && "cfw",
98
98
  i === 0 && " first",
99
99
  lines.length && "clickable"
100
100
  ].filter(Boolean);
@@ -270,7 +270,7 @@ main.error-page nav svg:hover {
270
270
  margin-left: 2.5em;
271
271
  }
272
272
 
273
- .panic-overlay .stack-entry.rwfw {
273
+ .panic-overlay .stack-entry.cfw {
274
274
  font-weight: bold;
275
275
  }
276
276
 
@@ -61,7 +61,7 @@ function StackEntry({
61
61
  const fileReference = !lines.length ? "[System]" : shortestPath(fileShort);
62
62
  const rootClasses = [
63
63
  "stack-entry",
64
- !fileReference.includes("node_modules") && "rwfw",
64
+ !fileReference.includes("node_modules") && "cfw",
65
65
  i === 0 && " first",
66
66
  lines.length && "clickable"
67
67
  ].filter(Boolean);
@@ -237,7 +237,7 @@ main.error-page nav svg:hover {
237
237
  margin-left: 2.5em;
238
238
  }
239
239
 
240
- .panic-overlay .stack-entry.rwfw {
240
+ .panic-overlay .stack-entry.cfw {
241
241
  font-weight: bold;
242
242
  }
243
243
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/web",
3
- "version": "1.0.0-canary.13002+f213ad7ba",
3
+ "version": "1.0.0-canary.13004+66daa5ace",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/cedarjs/cedar.git",
@@ -116,11 +116,11 @@
116
116
  "bin": {
117
117
  "cedar": "./dist/cjs/bins/cedar.js",
118
118
  "cedarjs": "./dist/cjs/bins/cedar.js",
119
+ "cfw": "./dist/cjs/bins/cfw.js",
119
120
  "cross-env": "./dist/cjs/bins/cross-env.js",
120
121
  "msw": "./dist/cjs/bins/msw.js",
121
122
  "redwood": "./dist/cjs/bins/redwood.js",
122
123
  "rw": "./dist/cjs/bins/redwood.js",
123
- "rwfw": "./dist/cjs/bins/rwfw.js",
124
124
  "storybook": "./dist/cjs/bins/storybook.js",
125
125
  "tsc": "./dist/cjs/bins/tsc.js"
126
126
  },
@@ -145,8 +145,8 @@
145
145
  "dependencies": {
146
146
  "@apollo/client": "3.13.9",
147
147
  "@babel/runtime-corejs3": "7.28.4",
148
- "@cedarjs/auth": "1.0.0-canary.13002",
149
- "@cedarjs/server-store": "1.0.0-canary.13002",
148
+ "@cedarjs/auth": "1.0.0-canary.13004",
149
+ "@cedarjs/server-store": "1.0.0-canary.13004",
150
150
  "@dr.pogodin/react-helmet": "2.0.4",
151
151
  "@whatwg-node/fetch": "0.10.13",
152
152
  "apollo-upload-client": "18.0.1",
@@ -166,8 +166,8 @@
166
166
  "@babel/core": "^7.26.10",
167
167
  "@babel/plugin-transform-runtime": "7.28.5",
168
168
  "@babel/runtime": "7.28.4",
169
- "@cedarjs/framework-tools": "1.0.0-canary.13002",
170
- "@cedarjs/internal": "1.0.0-canary.13002",
169
+ "@cedarjs/framework-tools": "1.0.0-canary.13004",
170
+ "@cedarjs/internal": "1.0.0-canary.13004",
171
171
  "@rollup/plugin-babel": "6.1.0",
172
172
  "@testing-library/jest-dom": "6.5.0",
173
173
  "@testing-library/react": "14.3.1",
@@ -191,5 +191,5 @@
191
191
  "publishConfig": {
192
192
  "access": "public"
193
193
  },
194
- "gitHead": "f213ad7ba7ebb4768e41e24b4129bd0bc04df9b5"
194
+ "gitHead": "66daa5ace3dd7b03200d5e6dd977a6759da9725f"
195
195
  }
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- export {};
3
- //# sourceMappingURL=rwfw.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"rwfw.d.ts","sourceRoot":"","sources":["../../src/bins/rwfw.ts"],"names":[],"mappings":""}
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- export {};
3
- //# sourceMappingURL=rwfw.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"rwfw.d.ts","sourceRoot":"","sources":["../../../src/bins/rwfw.ts"],"names":[],"mappings":""}