Skip to content

Commit

Permalink
The DLL reference should be backward compatible.
Browse files Browse the repository at this point in the history
  • Loading branch information
niegowski committed Oct 27, 2022
1 parent de7c4fd commit d92a5f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ module.exports = function getDllPluginWebpackConfig( options ) {
new webpack.DllReferencePlugin( {
manifest: require( options.manifestPath ),
scope: 'ckeditor5/src',
extensions: [ '.ts' ],
name: 'CKEditor5.dll'
} )
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ describe( 'builds/getDllPluginWebpackConfig()', () => {
expect( dllReferencePlugin.options.manifest ).to.deep.equal( manifest );
expect( dllReferencePlugin.options.scope ).to.equal( 'ckeditor5/src' );
expect( dllReferencePlugin.options.name ).to.equal( 'CKEditor5.dll' );
expect( dllReferencePlugin.options.extensions ).to.deep.equal( [ '.ts' ] );
expect( dllReferencePlugin.options.extensions ).to.be.undefined;
} );

it( 'loads the CKEditorWebpackPlugin plugin when lang dir exists', () => {
Expand Down

0 comments on commit d92a5f1

Please sign in to comment.