summaryrefslogtreecommitdiff
path: root/scripts/changelog-checker/src
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2024-03-17 10:34:15 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2024-03-17 10:34:15 +0900
commit282cfae1b2b55857df0f3689bdaa634522248e4e (patch)
tree18e482de3d7fdc2b7a6b7354afbf15c5e9ff577d /scripts/changelog-checker/src
parentrefactor(backend): refactor chart engine (diff)
parentfix(general): `flash/create`でPlayの公開範囲を指定できない問題... (diff)
downloadsharkey-282cfae1b2b55857df0f3689bdaa634522248e4e.tar.gz
sharkey-282cfae1b2b55857df0f3689bdaa634522248e4e.tar.bz2
sharkey-282cfae1b2b55857df0f3689bdaa634522248e4e.zip
Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
Diffstat (limited to 'scripts/changelog-checker/src')
-rw-r--r--scripts/changelog-checker/src/checker.ts5
-rw-r--r--scripts/changelog-checker/src/index.ts5
-rw-r--r--scripts/changelog-checker/src/parser.ts5
3 files changed, 15 insertions, 0 deletions
diff --git a/scripts/changelog-checker/src/checker.ts b/scripts/changelog-checker/src/checker.ts
index bbd5b2270a..8fd6ff5629 100644
--- a/scripts/changelog-checker/src/checker.ts
+++ b/scripts/changelog-checker/src/checker.ts
@@ -1,3 +1,8 @@
+/*
+ * SPDX-FileCopyrightText: syuilo and misskey-project
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+
import { Release } from './parser.js';
export class Result {
diff --git a/scripts/changelog-checker/src/index.ts b/scripts/changelog-checker/src/index.ts
index 8cbeb297d9..0e2c5ce057 100644
--- a/scripts/changelog-checker/src/index.ts
+++ b/scripts/changelog-checker/src/index.ts
@@ -1,3 +1,8 @@
+/*
+ * SPDX-FileCopyrightText: syuilo and misskey-project
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+
import * as process from 'process';
import * as fs from 'fs';
import { parseChangeLog } from './parser.js';
diff --git a/scripts/changelog-checker/src/parser.ts b/scripts/changelog-checker/src/parser.ts
index d6a9ddeda8..894d60d6af 100644
--- a/scripts/changelog-checker/src/parser.ts
+++ b/scripts/changelog-checker/src/parser.ts
@@ -1,3 +1,8 @@
+/*
+ * SPDX-FileCopyrightText: syuilo and misskey-project
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+
import * as fs from 'node:fs';
import { unified } from 'unified';
import remarkParse from 'remark-parse';