ultimate-jekyll-manager 0.0.132 → 0.0.134
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.
|
@@ -156,10 +156,11 @@ export class FormManager {
|
|
|
156
156
|
$autofocusField.focus();
|
|
157
157
|
|
|
158
158
|
// Move cursor to end of input if it has existing text
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
159
|
+
// Disabled because throws errors on some inputs (eg email)
|
|
160
|
+
// if (typeof $autofocusField.setSelectionRange === 'function') {
|
|
161
|
+
// const len = $autofocusField.value.length;
|
|
162
|
+
// $autofocusField.setSelectionRange(len, len);
|
|
163
|
+
// }
|
|
163
164
|
}
|
|
164
165
|
}
|
|
165
166
|
|
package/dist/commands/migrate.js
CHANGED
|
@@ -314,15 +314,16 @@ async function fixPostsLayout() {
|
|
|
314
314
|
}
|
|
315
315
|
|
|
316
316
|
// 4. Migrate post.author from old format to new format (first-last)
|
|
317
|
+
const alexAuthors = ['alex-raeburn', 'rare-ivy', 'christina-hill'];
|
|
317
318
|
const authorMigrations = {
|
|
318
|
-
'alex':
|
|
319
|
-
'ian': 'ian-wiedenman',
|
|
319
|
+
'alex': () => alexAuthors[Math.floor(Math.random() * alexAuthors.length)],
|
|
320
|
+
'ian': () => 'ian-wiedenman',
|
|
320
321
|
};
|
|
321
322
|
|
|
322
|
-
Object.entries(authorMigrations).forEach(([oldAuthor,
|
|
323
|
+
Object.entries(authorMigrations).forEach(([oldAuthor, getNewAuthor]) => {
|
|
323
324
|
const authorRegex = new RegExp(`^(\\s*author:\\s*)(['"]?)${oldAuthor}\\2\\s*$`, 'gm');
|
|
324
325
|
if (frontmatter.match(authorRegex)) {
|
|
325
|
-
frontmatter = frontmatter.replace(authorRegex, `$1${
|
|
326
|
+
frontmatter = frontmatter.replace(authorRegex, `$1${getNewAuthor()}`);
|
|
326
327
|
modified = true;
|
|
327
328
|
}
|
|
328
329
|
});
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
### ALL PAGES ###
|
|
3
|
+
layout: blueprint/team/member
|
|
4
|
+
sitemap:
|
|
5
|
+
include: true
|
|
6
|
+
|
|
7
|
+
### TEAM MEMBER PAGES ###
|
|
8
|
+
member:
|
|
9
|
+
id: christina-hill
|
|
10
|
+
name: "Christina Hill"
|
|
11
|
+
position: "Community Manager"
|
|
12
|
+
description: "Christina builds and nurtures our user community, fostering meaningful connections and conversations."
|
|
13
|
+
location: "Seattle, WA"
|
|
14
|
+
skills:
|
|
15
|
+
- "Community Building"
|
|
16
|
+
- "Content Writing"
|
|
17
|
+
- "Event Planning"
|
|
18
|
+
- "User Engagement"
|
|
19
|
+
hobbies:
|
|
20
|
+
- "Reading"
|
|
21
|
+
- "Hiking"
|
|
22
|
+
- "Board Games"
|
|
23
|
+
joined: 2021-08-15
|
|
24
|
+
links:
|
|
25
|
+
- id: "linkedin"
|
|
26
|
+
title: "LinkedIn"
|
|
27
|
+
url: "https://www.linkedin.com/in/christina-hill"
|
|
28
|
+
- id: "twitter"
|
|
29
|
+
title: "Twitter"
|
|
30
|
+
url: "https://twitter.com/christina-hill"
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
Hey there, I'm Christina!
|
|
34
|
+
|
|
35
|
+
I'm passionate about bringing people together and creating spaces where our users can connect, learn, and grow. There's nothing quite like seeing a community member help another one out - that's when you know you've built something special.
|
|
36
|
+
|
|
37
|
+
Before joining the team, I managed online communities for a gaming company and a nonprofit organization. Those experiences taught me that every community is unique, and the best ones are built on genuine relationships rather than metrics.
|
|
38
|
+
|
|
39
|
+
My role spans everything from moderating discussions and organizing virtual events to writing blog posts and gathering feedback from our users. I love being the bridge between our community and the rest of the team - making sure user voices are heard and celebrated.
|
|
40
|
+
|
|
41
|
+
When I'm not online engaging with our community, you'll find me curled up with a good book, exploring the Pacific Northwest trails, or hosting board game nights with friends. I firmly believe that the best ideas come from diverse perspectives coming together.
|
package/firebase-debug.log
CHANGED
|
@@ -2046,3 +2046,129 @@
|
|
|
2046
2046
|
[debug] [2025-12-04T02:40:01.647Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2047
2047
|
[debug] [2025-12-04T02:40:01.648Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2048
2048
|
[debug] [2025-12-04T02:40:01.648Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2049
|
+
[debug] [2025-12-04T02:47:21.858Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2050
|
+
[debug] [2025-12-04T02:47:21.859Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2051
|
+
[debug] [2025-12-04T02:47:21.861Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2052
|
+
[debug] [2025-12-04T02:47:21.861Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2053
|
+
[debug] [2025-12-04T02:47:21.861Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2054
|
+
[debug] [2025-12-04T02:47:21.869Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2055
|
+
[debug] [2025-12-04T02:47:21.870Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2056
|
+
[debug] [2025-12-04T02:47:21.860Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2057
|
+
[debug] [2025-12-04T02:47:21.861Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2058
|
+
[debug] [2025-12-04T02:47:21.861Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2059
|
+
[debug] [2025-12-04T02:47:21.870Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2060
|
+
[debug] [2025-12-04T02:47:21.870Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2061
|
+
[debug] [2025-12-04T02:47:21.914Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2062
|
+
[debug] [2025-12-04T02:47:21.915Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2063
|
+
[debug] [2025-12-04T02:47:21.915Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2064
|
+
[debug] [2025-12-04T02:47:21.915Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2065
|
+
[debug] [2025-12-04T02:47:21.917Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2066
|
+
[debug] [2025-12-04T02:47:21.917Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2067
|
+
[debug] [2025-12-04T02:47:21.917Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2068
|
+
[debug] [2025-12-04T02:47:21.917Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2069
|
+
[debug] [2025-12-04T02:47:21.921Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2070
|
+
[debug] [2025-12-04T02:47:21.921Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2071
|
+
[debug] [2025-12-04T02:47:21.922Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2072
|
+
[debug] [2025-12-04T02:47:21.922Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2073
|
+
[debug] [2025-12-04T02:47:21.924Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2074
|
+
[debug] [2025-12-04T02:47:21.924Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2075
|
+
[debug] [2025-12-04T02:47:21.925Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2076
|
+
[debug] [2025-12-04T02:47:21.925Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2077
|
+
[debug] [2025-12-04T02:49:05.538Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2078
|
+
[debug] [2025-12-04T02:49:05.539Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2079
|
+
[debug] [2025-12-04T02:49:05.541Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2080
|
+
[debug] [2025-12-04T02:49:05.541Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2081
|
+
[debug] [2025-12-04T02:49:05.541Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2082
|
+
[debug] [2025-12-04T02:49:05.551Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2083
|
+
[debug] [2025-12-04T02:49:05.551Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2084
|
+
[debug] [2025-12-04T02:49:05.541Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2085
|
+
[debug] [2025-12-04T02:49:05.541Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2086
|
+
[debug] [2025-12-04T02:49:05.541Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2087
|
+
[debug] [2025-12-04T02:49:05.551Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2088
|
+
[debug] [2025-12-04T02:49:05.551Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2089
|
+
[debug] [2025-12-04T02:49:05.600Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2090
|
+
[debug] [2025-12-04T02:49:05.602Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2091
|
+
[debug] [2025-12-04T02:49:05.600Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2092
|
+
[debug] [2025-12-04T02:49:05.601Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2093
|
+
[debug] [2025-12-04T02:49:05.601Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2094
|
+
[debug] [2025-12-04T02:49:05.602Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2095
|
+
[debug] [2025-12-04T02:49:05.602Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2096
|
+
[debug] [2025-12-04T02:49:05.603Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2097
|
+
[debug] [2025-12-04T02:49:05.603Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2098
|
+
[debug] [2025-12-04T02:49:05.603Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2099
|
+
[debug] [2025-12-04T02:49:05.603Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2100
|
+
[debug] [2025-12-04T02:49:05.604Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2101
|
+
[debug] [2025-12-04T02:49:05.605Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2102
|
+
[debug] [2025-12-04T02:49:05.605Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2103
|
+
[debug] [2025-12-04T02:49:05.606Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2104
|
+
[debug] [2025-12-04T02:49:05.606Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2105
|
+
[debug] [2025-12-04T02:50:55.956Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2106
|
+
[debug] [2025-12-04T02:50:55.957Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2107
|
+
[debug] [2025-12-04T02:50:55.959Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2108
|
+
[debug] [2025-12-04T02:50:55.959Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2109
|
+
[debug] [2025-12-04T02:50:55.959Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2110
|
+
[debug] [2025-12-04T02:50:55.967Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2111
|
+
[debug] [2025-12-04T02:50:55.968Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2112
|
+
[debug] [2025-12-04T02:50:55.959Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2113
|
+
[debug] [2025-12-04T02:50:55.959Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2114
|
+
[debug] [2025-12-04T02:50:55.959Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2115
|
+
[debug] [2025-12-04T02:50:55.968Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2116
|
+
[debug] [2025-12-04T02:50:55.969Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2117
|
+
[debug] [2025-12-04T02:50:56.016Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2118
|
+
[debug] [2025-12-04T02:50:56.016Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2119
|
+
[debug] [2025-12-04T02:50:56.017Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2120
|
+
[debug] [2025-12-04T02:50:56.017Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2121
|
+
[debug] [2025-12-04T02:50:56.019Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2122
|
+
[debug] [2025-12-04T02:50:56.019Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2123
|
+
[debug] [2025-12-04T02:50:56.019Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2124
|
+
[debug] [2025-12-04T02:50:56.019Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2125
|
+
[debug] [2025-12-04T02:50:56.021Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2126
|
+
[debug] [2025-12-04T02:50:56.021Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2127
|
+
[debug] [2025-12-04T02:50:56.022Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2128
|
+
[debug] [2025-12-04T02:50:56.023Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2129
|
+
[debug] [2025-12-04T02:50:56.024Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2130
|
+
[debug] [2025-12-04T02:50:56.024Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2131
|
+
[debug] [2025-12-04T02:50:56.025Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2132
|
+
[debug] [2025-12-04T02:50:56.025Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2133
|
+
[debug] [2025-12-04T02:50:59.229Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2134
|
+
[debug] [2025-12-04T02:50:59.232Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2135
|
+
[debug] [2025-12-04T02:50:59.232Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2136
|
+
[debug] [2025-12-04T02:50:59.232Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2137
|
+
[debug] [2025-12-04T02:50:59.240Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2138
|
+
[debug] [2025-12-04T02:50:59.241Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2139
|
+
[debug] [2025-12-04T02:50:59.293Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2140
|
+
[debug] [2025-12-04T02:50:59.293Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2141
|
+
[debug] [2025-12-04T02:50:59.294Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2142
|
+
[debug] [2025-12-04T02:50:59.294Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2143
|
+
[debug] [2025-12-04T02:50:59.295Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2144
|
+
[debug] [2025-12-04T02:50:59.295Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2145
|
+
[debug] [2025-12-04T02:50:59.296Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2146
|
+
[debug] [2025-12-04T02:50:59.296Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2147
|
+
[debug] [2025-12-04T03:58:41.251Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2148
|
+
[debug] [2025-12-04T03:58:41.251Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2149
|
+
[debug] [2025-12-04T03:58:41.253Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2150
|
+
[debug] [2025-12-04T03:58:41.253Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2151
|
+
[debug] [2025-12-04T03:58:41.253Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2152
|
+
[debug] [2025-12-04T03:58:41.264Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2153
|
+
[debug] [2025-12-04T03:58:41.265Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2154
|
+
[debug] [2025-12-04T03:58:41.254Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2155
|
+
[debug] [2025-12-04T03:58:41.254Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2156
|
+
[debug] [2025-12-04T03:58:41.254Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2157
|
+
[debug] [2025-12-04T03:58:41.264Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2158
|
+
[debug] [2025-12-04T03:58:41.265Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2159
|
+
[debug] [2025-12-04T03:58:41.317Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2160
|
+
[debug] [2025-12-04T03:58:41.322Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2161
|
+
[debug] [2025-12-04T03:58:41.317Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2162
|
+
[debug] [2025-12-04T03:58:41.319Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2163
|
+
[debug] [2025-12-04T03:58:41.319Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2164
|
+
[debug] [2025-12-04T03:58:41.322Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2165
|
+
[debug] [2025-12-04T03:58:41.322Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2166
|
+
[debug] [2025-12-04T03:58:41.322Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2167
|
+
[debug] [2025-12-04T03:58:41.322Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2168
|
+
[debug] [2025-12-04T03:58:41.322Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2169
|
+
[debug] [2025-12-04T03:58:41.323Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2170
|
+
[debug] [2025-12-04T03:58:41.323Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2171
|
+
[debug] [2025-12-04T03:58:41.325Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2172
|
+
[debug] [2025-12-04T03:58:41.325Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
2173
|
+
[debug] [2025-12-04T03:58:41.326Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
2174
|
+
[debug] [2025-12-04T03:58:41.326Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|