Skip to content

Commit

Permalink
Remove premium-features from legacy templates (external and package.j…
Browse files Browse the repository at this point in the history
…son).
  • Loading branch information
pszczesniak committed May 16, 2024
1 parent 9b8ea72 commit e46cb45
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"@ckeditor/ckeditor5-theme-lark": ">=<%= packageVersions.ckeditor5 %>",
"@ckeditor/ckeditor5-upload": ">=<%= packageVersions.ckeditor5 %>",
"ckeditor5": ">=<%= packageVersions.ckeditor5 %>",
"ckeditor5-premium-features": ">=<%= packageVersions.ckeditor5 %>",
"eslint": "^7.32.0",
"eslint-config-ckeditor5": ">=<%= packageVersions.eslintConfigCkeditor5 %>",
"http-server": "^14.1.0",
Expand All @@ -58,8 +57,7 @@
"stylelint-config-ckeditor5": ">=<%= packageVersions.stylelintConfigCkeditor5 %>"
},
"peerDependencies": {
"ckeditor5": ">=<%= packageVersions.ckeditor5 %>",
"ckeditor5-premium-features": ">=<%= packageVersions.ckeditor5 %>"
"ckeditor5": ">=<%= packageVersions.ckeditor5 %>"
},
"scripts": {
"build:dist": "node ./scripts/build-dist.mjs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ function dist( path ) {
output: dist( './index.js' ),
external: [
'ckeditor5',
'ckeditor5-premium-features',
...Object.keys( {
...pkg.dependencies,
...pkg.peerDependencies
Expand All @@ -54,8 +53,7 @@ function dist( path ) {
browser: true,
name: '<%= formattedNames.plugin.lowerCaseMerged %>',
external: [
'ckeditor5',
'ckeditor5-premium-features'
'ckeditor5'
]
} );
} )();
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
"@typescript-eslint/eslint-plugin": "~5.43.0",
"@typescript-eslint/parser": "^5.18.0",
"ckeditor5": ">=<%= packageVersions.ckeditor5 %>",
"ckeditor5-premium-features": ">=<%= packageVersions.ckeditor5 %>",
"eslint": "^7.32.0",
"eslint-config-ckeditor5": ">=<%= packageVersions.eslintConfigCkeditor5 %>",
"http-server": "^14.1.0",
Expand All @@ -65,8 +64,7 @@
"typescript": "5.0.4"
},
"peerDependencies": {
"ckeditor5": ">=<%= packageVersions.ckeditor5 %>",
"ckeditor5-premium-features": ">=<%= packageVersions.ckeditor5 %>"
"ckeditor5": ">=<%= packageVersions.ckeditor5 %>"
},
"scripts": {
"build:dist": "node ./scripts/build-dist.mjs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ function dist( path ) {
tsconfig: 'tsconfig.dist.json',
external: [
'ckeditor5',
'ckeditor5-premium-features',
...Object.keys( {
...pkg.dependencies,
...pkg.peerDependencies
Expand All @@ -58,8 +57,7 @@ function dist( path ) {
browser: true,
name: '<%= formattedNames.plugin.lowerCaseMerged %>',
external: [
'ckeditor5',
'ckeditor5-premium-features'
'ckeditor5'
]
} );
} )();
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ module.exports = function getDependenciesVersions( logger, dev ) {

return {
ckeditor5: getPackageVersion( 'ckeditor5' ),
ckeditor5PremiumFeatures: getPackageVersion( 'ckeditor5-premium-features' ),
ckeditor5Inspector: getPackageVersion( '@ckeditor/ckeditor5-inspector' ),
ckeditor5DevBuildTools: getPackageVersion( '@ckeditor/ckeditor5-dev-build-tools' ),
eslintConfigCkeditor5: getPackageVersion( 'eslint-config-ckeditor5' ),
Expand Down

0 comments on commit e46cb45

Please sign in to comment.