ultimate-jekyll-manager 0.0.107 → 0.0.109
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/commands/migrate.js
CHANGED
|
@@ -19,6 +19,7 @@ module.exports = async function () {
|
|
|
19
19
|
await migrateAssets();
|
|
20
20
|
await fixPostsLayout();
|
|
21
21
|
await fixPostFilenames();
|
|
22
|
+
await cleanupOldDirectories();
|
|
22
23
|
|
|
23
24
|
// Log completion
|
|
24
25
|
logger.log(logger.format.green('✓ Migration complete!'));
|
|
@@ -329,3 +330,42 @@ async function fixPostFilenames() {
|
|
|
329
330
|
logger.log('All post filenames are already clean');
|
|
330
331
|
}
|
|
331
332
|
}
|
|
333
|
+
|
|
334
|
+
async function cleanupOldDirectories() {
|
|
335
|
+
const directoriesToCheck = [
|
|
336
|
+
{ path: path.join(process.cwd(), 'assets'), name: 'assets' },
|
|
337
|
+
{ path: path.join(process.cwd(), '_posts'), name: '_posts' },
|
|
338
|
+
];
|
|
339
|
+
|
|
340
|
+
logger.log('Checking for empty old directories to clean up...');
|
|
341
|
+
|
|
342
|
+
let deletedCount = 0;
|
|
343
|
+
|
|
344
|
+
directoriesToCheck.forEach(({ path: dirPath, name }) => {
|
|
345
|
+
// Check if directory exists
|
|
346
|
+
const exists = jetpack.exists(dirPath);
|
|
347
|
+
|
|
348
|
+
if (!exists) {
|
|
349
|
+
return;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
// Check if directory is empty
|
|
353
|
+
const contents = jetpack.list(dirPath) || [];
|
|
354
|
+
|
|
355
|
+
if (contents.length === 0) {
|
|
356
|
+
// Directory is empty, delete it
|
|
357
|
+
jetpack.remove(dirPath);
|
|
358
|
+
logger.log(` ✓ Deleted empty ${name} directory`);
|
|
359
|
+
deletedCount++;
|
|
360
|
+
} else {
|
|
361
|
+
logger.warn(` ⚠ ${name} directory still exists and is not empty (${contents.length} item(s))`);
|
|
362
|
+
logger.warn(` Please manually review: ${dirPath}`);
|
|
363
|
+
}
|
|
364
|
+
});
|
|
365
|
+
|
|
366
|
+
if (deletedCount > 0) {
|
|
367
|
+
logger.log(logger.format.green(`✓ Cleaned up ${deletedCount} empty director${deletedCount === 1 ? 'y' : 'ies'}`));
|
|
368
|
+
} else {
|
|
369
|
+
logger.log('No empty directories to clean up');
|
|
370
|
+
}
|
|
371
|
+
}
|
|
@@ -14,6 +14,9 @@ concurrency:
|
|
|
14
14
|
group: ${{ github.ref }}
|
|
15
15
|
cancel-in-progress: true
|
|
16
16
|
|
|
17
|
+
# permissions:
|
|
18
|
+
# contents: write
|
|
19
|
+
|
|
17
20
|
env:
|
|
18
21
|
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
19
22
|
BACKEND_MANAGER_KEY: ${{ secrets.BACKEND_MANAGER_KEY }}
|
|
@@ -35,6 +38,9 @@ jobs:
|
|
|
35
38
|
git config --global user.name "$GITHUB_ACTOR"
|
|
36
39
|
- name: Checkout main branch
|
|
37
40
|
uses: actions/checkout@v4
|
|
41
|
+
with:
|
|
42
|
+
token: ${{ secrets.GH_TOKEN }}
|
|
43
|
+
fetch-depth: 0
|
|
38
44
|
- name: Setup ruby
|
|
39
45
|
uses: ruby/setup-ruby@v1
|
|
40
46
|
with:
|
package/firebase-debug.log
CHANGED
|
@@ -82,3 +82,119 @@
|
|
|
82
82
|
[debug] [2025-10-27T02:44:28.625Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
83
83
|
[debug] [2025-10-27T02:44:28.625Z] > 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"]
|
|
84
84
|
[debug] [2025-10-27T02:44:28.625Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
85
|
+
[debug] [2025-10-27T13:47:55.830Z] > 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"]
|
|
86
|
+
[debug] [2025-10-27T13:47:55.836Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
87
|
+
[debug] [2025-10-27T13:47:55.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"]
|
|
88
|
+
[debug] [2025-10-27T13:47:55.921Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
89
|
+
[debug] [2025-10-27T13:49:33.302Z] > 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"]
|
|
90
|
+
[debug] [2025-10-27T13:49:33.307Z] > 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"]
|
|
91
|
+
[debug] [2025-10-27T13:49:33.305Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
92
|
+
[debug] [2025-10-27T13:49:33.306Z] > 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"]
|
|
93
|
+
[debug] [2025-10-27T13:49:33.306Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
94
|
+
[debug] [2025-10-27T13:49:33.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"]
|
|
95
|
+
[debug] [2025-10-27T13:49:33.325Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
96
|
+
[debug] [2025-10-27T13:49:33.310Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
97
|
+
[debug] [2025-10-27T13:49:33.310Z] > 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"]
|
|
98
|
+
[debug] [2025-10-27T13:49:33.310Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
99
|
+
[debug] [2025-10-27T13:49:33.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"]
|
|
100
|
+
[debug] [2025-10-27T13:49:33.326Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
101
|
+
[debug] [2025-10-27T13:49:33.464Z] > 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"]
|
|
102
|
+
[debug] [2025-10-27T13:49:33.464Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
103
|
+
[debug] [2025-10-27T13:49:33.465Z] > 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"]
|
|
104
|
+
[debug] [2025-10-27T13:49:33.465Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
105
|
+
[debug] [2025-10-27T13:49:33.466Z] > 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"]
|
|
106
|
+
[debug] [2025-10-27T13:49:33.466Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
107
|
+
[debug] [2025-10-27T13:49:33.467Z] > 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"]
|
|
108
|
+
[debug] [2025-10-27T13:49:33.467Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
109
|
+
[debug] [2025-10-27T13:49:33.468Z] > 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"]
|
|
110
|
+
[debug] [2025-10-27T13:49:33.468Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
111
|
+
[debug] [2025-10-27T13:49:33.469Z] > 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"]
|
|
112
|
+
[debug] [2025-10-27T13:49:33.469Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
113
|
+
[debug] [2025-10-27T13:49:33.470Z] > 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"]
|
|
114
|
+
[debug] [2025-10-27T13:49:33.470Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
115
|
+
[debug] [2025-10-27T13:49:33.470Z] > 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"]
|
|
116
|
+
[debug] [2025-10-27T13:49:33.470Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
117
|
+
[debug] [2025-10-27T13:52:34.629Z] > 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"]
|
|
118
|
+
[debug] [2025-10-27T13:52:34.632Z] > 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"]
|
|
119
|
+
[debug] [2025-10-27T13:52:34.631Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
120
|
+
[debug] [2025-10-27T13:52:34.631Z] > 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"]
|
|
121
|
+
[debug] [2025-10-27T13:52:34.631Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
122
|
+
[debug] [2025-10-27T13:52:34.642Z] > 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"]
|
|
123
|
+
[debug] [2025-10-27T13:52:34.642Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
124
|
+
[debug] [2025-10-27T13:52:34.635Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
125
|
+
[debug] [2025-10-27T13:52:34.635Z] > 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"]
|
|
126
|
+
[debug] [2025-10-27T13:52:34.635Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
127
|
+
[debug] [2025-10-27T13:52:34.647Z] > 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"]
|
|
128
|
+
[debug] [2025-10-27T13:52:34.647Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
129
|
+
[debug] [2025-10-27T13:52:34.783Z] > 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"]
|
|
130
|
+
[debug] [2025-10-27T13:52:34.783Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
131
|
+
[debug] [2025-10-27T13:52:34.784Z] > 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"]
|
|
132
|
+
[debug] [2025-10-27T13:52:34.784Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
133
|
+
[debug] [2025-10-27T13:52:34.786Z] > 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"]
|
|
134
|
+
[debug] [2025-10-27T13:52:34.786Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
135
|
+
[debug] [2025-10-27T13:52:34.786Z] > 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"]
|
|
136
|
+
[debug] [2025-10-27T13:52:34.786Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
137
|
+
[debug] [2025-10-27T13:52:34.788Z] > 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"]
|
|
138
|
+
[debug] [2025-10-27T13:52:34.788Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
139
|
+
[debug] [2025-10-27T13:52:34.789Z] > 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"]
|
|
140
|
+
[debug] [2025-10-27T13:52:34.789Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
141
|
+
[debug] [2025-10-27T13:52:34.790Z] > 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"]
|
|
142
|
+
[debug] [2025-10-27T13:52:34.790Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
143
|
+
[debug] [2025-10-27T13:52:34.791Z] > 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"]
|
|
144
|
+
[debug] [2025-10-27T13:52:34.791Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
145
|
+
[debug] [2025-10-27T13:52:57.461Z] > 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"]
|
|
146
|
+
[debug] [2025-10-27T13:52:57.461Z] > 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"]
|
|
147
|
+
[debug] [2025-10-27T13:52:57.463Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
148
|
+
[debug] [2025-10-27T13:52:57.463Z] > 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"]
|
|
149
|
+
[debug] [2025-10-27T13:52:57.463Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
150
|
+
[debug] [2025-10-27T13:52:57.476Z] > 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"]
|
|
151
|
+
[debug] [2025-10-27T13:52:57.476Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
152
|
+
[debug] [2025-10-27T13:52:57.463Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
153
|
+
[debug] [2025-10-27T13:52:57.463Z] > 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"]
|
|
154
|
+
[debug] [2025-10-27T13:52:57.463Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
155
|
+
[debug] [2025-10-27T13:52:57.478Z] > 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"]
|
|
156
|
+
[debug] [2025-10-27T13:52:57.479Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
157
|
+
[debug] [2025-10-27T13:52:57.615Z] > 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"]
|
|
158
|
+
[debug] [2025-10-27T13:52:57.616Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
159
|
+
[debug] [2025-10-27T13:52:57.617Z] > 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"]
|
|
160
|
+
[debug] [2025-10-27T13:52:57.617Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
161
|
+
[debug] [2025-10-27T13:52:57.618Z] > 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"]
|
|
162
|
+
[debug] [2025-10-27T13:52:57.618Z] > 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"]
|
|
163
|
+
[debug] [2025-10-27T13:52:57.618Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
164
|
+
[debug] [2025-10-27T13:52:57.619Z] > 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"]
|
|
165
|
+
[debug] [2025-10-27T13:52:57.619Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
166
|
+
[debug] [2025-10-27T13:52:57.618Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
167
|
+
[debug] [2025-10-27T13:52:57.619Z] > 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"]
|
|
168
|
+
[debug] [2025-10-27T13:52:57.619Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
169
|
+
[debug] [2025-10-27T13:52:57.621Z] > 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"]
|
|
170
|
+
[debug] [2025-10-27T13:52:57.621Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
171
|
+
[debug] [2025-10-27T13:52:57.621Z] > 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"]
|
|
172
|
+
[debug] [2025-10-27T13:52:57.621Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
173
|
+
[debug] [2025-10-27T23:48:17.769Z] > 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"]
|
|
174
|
+
[debug] [2025-10-27T23:48:17.773Z] > 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"]
|
|
175
|
+
[debug] [2025-10-27T23:48:17.772Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
176
|
+
[debug] [2025-10-27T23:48:17.772Z] > 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"]
|
|
177
|
+
[debug] [2025-10-27T23:48:17.772Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
178
|
+
[debug] [2025-10-27T23:48:17.786Z] > 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"]
|
|
179
|
+
[debug] [2025-10-27T23:48:17.786Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
180
|
+
[debug] [2025-10-27T23:48:17.775Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
181
|
+
[debug] [2025-10-27T23:48:17.776Z] > 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"]
|
|
182
|
+
[debug] [2025-10-27T23:48:17.776Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
183
|
+
[debug] [2025-10-27T23:48:17.790Z] > 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"]
|
|
184
|
+
[debug] [2025-10-27T23:48:17.790Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
185
|
+
[debug] [2025-10-27T23:48:17.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"]
|
|
186
|
+
[debug] [2025-10-27T23:48:17.914Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
187
|
+
[debug] [2025-10-27T23:48:17.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"]
|
|
188
|
+
[debug] [2025-10-27T23:48:17.915Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
189
|
+
[debug] [2025-10-27T23:48:17.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"]
|
|
190
|
+
[debug] [2025-10-27T23:48:17.917Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
191
|
+
[debug] [2025-10-27T23:48:17.918Z] > 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"]
|
|
192
|
+
[debug] [2025-10-27T23:48:17.918Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
193
|
+
[debug] [2025-10-27T23:48:17.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"]
|
|
194
|
+
[debug] [2025-10-27T23:48:17.924Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
195
|
+
[debug] [2025-10-27T23:48:17.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"]
|
|
196
|
+
[debug] [2025-10-27T23:48:17.925Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
197
|
+
[debug] [2025-10-27T23:48:17.927Z] > 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"]
|
|
198
|
+
[debug] [2025-10-27T23:48:17.927Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
199
|
+
[debug] [2025-10-27T23:48:17.927Z] > 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"]
|
|
200
|
+
[debug] [2025-10-27T23:48:17.927Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|