Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issues with loading CSS and translations in older bundlers #16751

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .circleci/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,12 @@ jobs:
name: Check if packages are ready to be released
command:
yarn run release:prepare-packages --compile-only --verbose
- run:
name: Lint generated packages
command:
yarn run release:lint-packages

# Commented out due to a limitation of publint: https://github.com/bluwy/publint/issues/105
# - run:
# name: Lint generated packages
# command:
# yarn run release:lint-packages

notify_ci_failure:
machine: true
Expand Down
7 changes: 2 additions & 5 deletions scripts/release/utils/getckeditor5packagejson.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,8 @@ module.exports = function getCKEditor5PackageJson() {
'types': './dist/types/index.d.ts',
'import': './dist/ckeditor5.js'
},
'./translations/*.js': {
'types': './dist/translations/*.d.ts',
'import': './dist/translations/*.js'
},
'./*.css': './dist/*.css',
'./*': './dist/*',
'./browser/*': null,
'./build/*': './build/*',
'./src/*': './src/*',
'./package.json': './package.json'
Expand Down