ugly-app 0.1.746 → 0.1.747
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/cli/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const CLI_VERSION = "0.1.
|
|
1
|
+
export declare const CLI_VERSION = "0.1.747";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/cli/version.js
CHANGED
|
@@ -793,19 +793,15 @@ ol:has(> .task-list-item) {
|
|
|
793
793
|
margin-bottom: 2px;
|
|
794
794
|
}
|
|
795
795
|
|
|
796
|
-
/* Comment anchors
|
|
796
|
+
/* Comment anchors — a subtle highlight marks where a comment is attached. The
|
|
797
|
+
anchor itself is a zero-width character; we widen its hit area a touch so it's
|
|
798
|
+
clickable without disturbing the prose. (The raw comment id is never shown —
|
|
799
|
+
it's metadata, surfaced in the gutter, not in the text.) */
|
|
797
800
|
.comment-anchor {
|
|
798
801
|
background: rgba(255, 220, 0, 0.3);
|
|
799
802
|
border-radius: 2px;
|
|
800
803
|
cursor: pointer;
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
.comment-anchor::after {
|
|
804
|
-
content: attr(data-comment-id);
|
|
805
|
-
font-size: 0.6em;
|
|
806
|
-
vertical-align: super;
|
|
807
|
-
color: #007acc;
|
|
808
|
-
margin-left: 1px;
|
|
804
|
+
padding: 0 1px;
|
|
809
805
|
}
|
|
810
806
|
|
|
811
807
|
/* Comment Gutter */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ugly-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.747",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"comment:files": "Allowlist what ships to npm. dist = runtime; src = sourcemap targets (dist/*.js.map reference ../../src/); templates = CLI scaffold. Everything else at repo root (.pgdata local Postgres, coverage, assets/icons sources, test/, test-results/) is excluded by omission. The !negations strip the scaffold's installed deps + cruft (templates/node_modules is 200MB+ and must never ship). package.json/README/LICENSE ship automatically.",
|
|
6
6
|
"files": [
|
package/src/cli/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Auto-generated by prebuild — do not edit manually
|
|
2
|
-
export const CLI_VERSION = "0.1.
|
|
2
|
+
export const CLI_VERSION = "0.1.747";
|
|
@@ -793,19 +793,15 @@ ol:has(> .task-list-item) {
|
|
|
793
793
|
margin-bottom: 2px;
|
|
794
794
|
}
|
|
795
795
|
|
|
796
|
-
/* Comment anchors
|
|
796
|
+
/* Comment anchors — a subtle highlight marks where a comment is attached. The
|
|
797
|
+
anchor itself is a zero-width character; we widen its hit area a touch so it's
|
|
798
|
+
clickable without disturbing the prose. (The raw comment id is never shown —
|
|
799
|
+
it's metadata, surfaced in the gutter, not in the text.) */
|
|
797
800
|
.comment-anchor {
|
|
798
801
|
background: rgba(255, 220, 0, 0.3);
|
|
799
802
|
border-radius: 2px;
|
|
800
803
|
cursor: pointer;
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
.comment-anchor::after {
|
|
804
|
-
content: attr(data-comment-id);
|
|
805
|
-
font-size: 0.6em;
|
|
806
|
-
vertical-align: super;
|
|
807
|
-
color: #007acc;
|
|
808
|
-
margin-left: 1px;
|
|
804
|
+
padding: 0 1px;
|
|
809
805
|
}
|
|
810
806
|
|
|
811
807
|
/* Comment Gutter */
|