-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #443 from ckeditor/ci/3772
Internal: Aligned to ckeditor5-dev ESM changes.
- Loading branch information
Showing
11 changed files
with
2,473 additions
and
2,503 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/usr/bin/env node | ||
|
||
/** | ||
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. | ||
* For licensing, see LICENSE.md. | ||
*/ | ||
|
||
/* eslint-env node */ | ||
|
||
/* | ||
Usage: | ||
node scripts/bump-year.mjs | ||
And after reviewing the changes: | ||
git commit -am "Internal: Bumped the year." && git push | ||
*/ | ||
|
||
import { bumpYear } from '@ckeditor/ckeditor5-dev-bump-year'; | ||
|
||
bumpYear( { | ||
cwd: process.cwd(), | ||
globPatterns: [ | ||
{ // LICENSE.md, .eslintrc.js, etc. | ||
pattern: '*', | ||
options: { | ||
dot: true | ||
} | ||
}, | ||
{ | ||
pattern: '.husky/*' | ||
}, | ||
{ | ||
pattern: '!(coverage|.nyc_output|dist)/**', | ||
options: { | ||
ignore: [ | ||
'**/build/**', | ||
'src/**' | ||
] | ||
} | ||
}, | ||
{ | ||
pattern: 'src/ckeditor/**' | ||
} | ||
] | ||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.