diff --git a/.circleci/template.yml b/.circleci/template.yml index 4b425240b30..3847944505a 100644 --- a/.circleci/template.yml +++ b/.circleci/template.yml @@ -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 diff --git a/scripts/release/utils/getckeditor5packagejson.js b/scripts/release/utils/getckeditor5packagejson.js index fdfc66e9056..2126dda3c38 100644 --- a/scripts/release/utils/getckeditor5packagejson.js +++ b/scripts/release/utils/getckeditor5packagejson.js @@ -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'