@absolutejs/absolute 0.19.0-beta.120 → 0.19.0-beta.122
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/.absolutejs/cert.pem +11 -0
- package/.absolutejs/key.pem +5 -0
- package/.absolutejs/prettier.cache.json +45 -27
- package/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/.claude/projects/-home-alexkahn-abs-absolutejs/memory/feedback_http2_naming.md +10 -0
- package/.claude/settings.local.json +6 -1
- package/dist/build.js +9 -2
- package/dist/build.js.map +7 -7
- package/dist/cli/index.js +3 -7
- package/dist/dev/client/reactRefreshSetup.ts +2 -3
- package/dist/index.js +261 -45
- package/dist/index.js.map +14 -13
- package/dist/react/index.js.map +2 -2
- package/dist/src/core/prepare.d.ts +2 -16
- package/dist/src/dev/http2Bridge.d.ts +3 -0
- package/dist/src/plugins/hmr.d.ts +2 -16
- package/package.json +1 -1
- package/scripts/use-combined-bun.sh +27 -0
- package/scripts/use-http2-bun.sh +26 -0
- package/types/globals.d.ts +6 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: HTTP/2 naming convention
|
|
3
|
+
description: Always use "http2" (not "h2") in file names, function names, and variable names
|
|
4
|
+
type: feedback
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
Always use `http2` instead of `h2` in file names, function names, and variable names. "h2" is confusing.
|
|
8
|
+
|
|
9
|
+
**Why:** User finds "h2" abbreviation unclear — prefer the full protocol name.
|
|
10
|
+
**How to apply:** When naming anything related to HTTP/2 (files, functions, variables, comments), use `http2` as the prefix/identifier.
|
|
@@ -235,7 +235,12 @@
|
|
|
235
235
|
"Read(//home/alexkahn/alex/bun-transpiler-patch/build/release/**)",
|
|
236
236
|
"Bash(~/alex/bun-transpiler-patch/build/release/bun --version)",
|
|
237
237
|
"Bash(lsof -ti:3000)",
|
|
238
|
-
"Bash(sort -t' ' -k2 -h -r)"
|
|
238
|
+
"Bash(sort -t' ' -k2 -h -r)",
|
|
239
|
+
"Bash(kill 293854)",
|
|
240
|
+
"Bash(find /home/alexkahn/abs/absolutejs -name *.d.ts -path */node_modules/@types/node/*http2*)",
|
|
241
|
+
"Bash(fuser -k 3001/tcp)",
|
|
242
|
+
"WebFetch(domain:groups.google.com)",
|
|
243
|
+
"WebFetch(domain:developer.chrome.com)"
|
|
239
244
|
]
|
|
240
245
|
}
|
|
241
246
|
}
|
package/dist/build.js
CHANGED
|
@@ -1090,7 +1090,14 @@ var colors, MONTHS, formatTimestamp = () => {
|
|
|
1090
1090
|
hours = hours % HOURS_IN_HALF_DAY || HOURS_IN_HALF_DAY;
|
|
1091
1091
|
return `${month} ${day} ${hours}:${minutes}:${seconds} ${ampm}`;
|
|
1092
1092
|
}, startupBanner = (options) => {
|
|
1093
|
-
const {
|
|
1093
|
+
const {
|
|
1094
|
+
version,
|
|
1095
|
+
duration,
|
|
1096
|
+
port,
|
|
1097
|
+
host,
|
|
1098
|
+
networkUrl,
|
|
1099
|
+
protocol = "http"
|
|
1100
|
+
} = options;
|
|
1094
1101
|
const name = `${colors.cyan}${colors.bold}ABSOLUTEJS${colors.reset}`;
|
|
1095
1102
|
const ver = `${colors.dim}v${version}${colors.reset}`;
|
|
1096
1103
|
const time = `${colors.dim}ready in${colors.reset} ${colors.bold}${getDurationString(duration)}${colors.reset}`;
|
|
@@ -204931,5 +204938,5 @@ export {
|
|
|
204931
204938
|
build
|
|
204932
204939
|
};
|
|
204933
204940
|
|
|
204934
|
-
//# debugId=
|
|
204941
|
+
//# debugId=64632B059519A68864756E2164756E21
|
|
204935
204942
|
//# sourceMappingURL=build.js.map
|