diff options
| author | Shun Sakai <sorairolake@protonmail.ch> | 2023-07-27 14:31:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-27 14:31:52 +0900 |
| commit | c2370a1be631355e709c47d3b5e9469906116b84 (patch) | |
| tree | 75071c994f444f3ceea6ad0225e09b9374ca02ca /scripts | |
| parent | chore: update pnpm to 8.6.10 (diff) | |
| download | sharkey-c2370a1be631355e709c47d3b5e9469906116b84.tar.gz sharkey-c2370a1be631355e709c47d3b5e9469906116b84.tar.bz2 sharkey-c2370a1be631355e709c47d3b5e9469906116b84.zip | |
chore: 著作権とライセンスについての情報を各ファイルに追加する (#11348)
* chore: Add the SPDX information to each file
Add copyright and licensing information as defined in version 3.0 of
the REUSE Specification.
* tweak format
---------
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/build-pre.js | 5 | ||||
| -rw-r--r-- | scripts/clean-all.js | 5 | ||||
| -rw-r--r-- | scripts/clean.js | 5 | ||||
| -rw-r--r-- | scripts/dev.mjs | 5 |
4 files changed, 20 insertions, 0 deletions
diff --git a/scripts/build-pre.js b/scripts/build-pre.js index e34a97738e..bf3e355b5b 100644 --- a/scripts/build-pre.js +++ b/scripts/build-pre.js @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + const fs = require('fs'); const meta = require('../package.json'); diff --git a/scripts/clean-all.js b/scripts/clean-all.js index 2d7fe99ae4..4735eed760 100644 --- a/scripts/clean-all.js +++ b/scripts/clean-all.js @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + const { execSync } = require('child_process'); const fs = require('fs'); diff --git a/scripts/clean.js b/scripts/clean.js index d32586914b..812553e17b 100644 --- a/scripts/clean.js +++ b/scripts/clean.js @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + const fs = require('fs'); (async () => { diff --git a/scripts/dev.mjs b/scripts/dev.mjs index 0b07ae80cb..5240a5c4a8 100644 --- a/scripts/dev.mjs +++ b/scripts/dev.mjs @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + import fs from 'node:fs'; import { dirname } from 'node:path'; import { fileURLToPath } from 'node:url'; |