@tricoteuses/senat 2.22.14 → 2.22.16
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.
|
@@ -358,7 +358,7 @@ async function retrieveCommissionCRs(options = {}) {
|
|
|
358
358
|
}
|
|
359
359
|
}
|
|
360
360
|
}
|
|
361
|
-
const debatsDir = path.join(dataDir, COMMISSION_FOLDER
|
|
361
|
+
const debatsDir = path.join(dataDir, COMMISSION_FOLDER);
|
|
362
362
|
commitAndPushGit(debatsDir, options);
|
|
363
363
|
}
|
|
364
364
|
async function main() {
|
|
@@ -205,7 +205,7 @@ export async function retrieveCriXmlDump(dataDir, options = {}) {
|
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
}
|
|
208
|
-
const debatsDir = path.join(dataDir, COMPTES_RENDUS_FOLDER
|
|
208
|
+
const debatsDir = path.join(dataDir, COMPTES_RENDUS_FOLDER);
|
|
209
209
|
commitAndPushGit(debatsDir, options);
|
|
210
210
|
}
|
|
211
211
|
function commitAndPushGit(datasetDir, options) {
|
|
@@ -5,7 +5,7 @@ import fs from "fs-extra";
|
|
|
5
5
|
import fsp from "fs/promises";
|
|
6
6
|
import path from "path";
|
|
7
7
|
import * as git from "../git.js";
|
|
8
|
-
import { AGENDA_FOLDER,
|
|
8
|
+
import { AGENDA_FOLDER, iterLoadSenatAgendas } from "../loaders";
|
|
9
9
|
import { getSessionsFromStart } from "../types/sessions";
|
|
10
10
|
import { commonOptions } from "./shared/cli_helpers";
|
|
11
11
|
import { getAgendaSegmentTimecodes, buildSenatVodMasterM3u8FromNvs } from "../utils/nvs-parsing";
|
|
@@ -169,7 +169,7 @@ async function processAll(dataDir, sessions) {
|
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
-
const debatsDir = path.join(dataDir, AGENDA_FOLDER
|
|
172
|
+
const debatsDir = path.join(dataDir, AGENDA_FOLDER);
|
|
173
173
|
commitAndPushGit(debatsDir, options);
|
|
174
174
|
}
|
|
175
175
|
function commitAndPushGit(datasetDir, options) {
|