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

Improve module augmentation in table plugin #13568

Merged
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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@
"postinstall": "node ./scripts/postinstall.js",
"lint": "eslint --quiet \"**/*.{js,ts}\" --format ./scripts/eslint-formatter.js",
"stylelint": "stylelint --quiet --allow-empty-input \"packages/**/*.css\" \"docs/**/*.css\"",
"test": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/testautomated.js",
"manual": "node --max_old_space_size=8192 node_modules/@ckeditor/ckeditor5-dev-tests/bin/testmanual.js",
"test": "node --max_old_space_size=4096 node_modules/@ckeditor/ckeditor5-dev-tests/bin/testautomated.js --tsconfig ./tsconfig.test.json",
"manual": "node --max_old_space_size=8192 node_modules/@ckeditor/ckeditor5-dev-tests/bin/testmanual.js --tsconfig ./tsconfig.test.json",
"manual:verify": "node ./scripts/web-crawler/index.js --manual",
"bootstrap": "yarn install",
"clean": "npx rimraf package-lock.json yarn.lock ./**/node_modules",
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-adapter-ckfinder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
],
"scripts": {
"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"
}
}
13 changes: 8 additions & 5 deletions packages/ckeditor5-adapter-ckfinder/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
10 changes: 0 additions & 10 deletions packages/ckeditor5-adapter-ckfinder/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-alignment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
],
"scripts": {
"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"
}
}
13 changes: 8 additions & 5 deletions packages/ckeditor5-alignment/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
10 changes: 0 additions & 10 deletions packages/ckeditor5-alignment/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-autoformat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
],
"scripts": {
"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"
}
}
13 changes: 8 additions & 5 deletions packages/ckeditor5-autoformat/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
10 changes: 0 additions & 10 deletions packages/ckeditor5-autoformat/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-autosave/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
],
"scripts": {
"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"
}
}
13 changes: 8 additions & 5 deletions packages/ckeditor5-autosave/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
10 changes: 0 additions & 10 deletions packages/ckeditor5-autosave/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-basic-styles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
],
"scripts": {
"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"
}
}
13 changes: 8 additions & 5 deletions packages/ckeditor5-basic-styles/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
10 changes: 0 additions & 10 deletions packages/ckeditor5-basic-styles/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-block-quote/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
],
"scripts": {
"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"build": "tsc -p ./tsconfig.json",
"postversion": "npm run build"
}
}
13 changes: 8 additions & 5 deletions packages/ckeditor5-block-quote/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
10 changes: 0 additions & 10 deletions packages/ckeditor5-block-quote/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-build-balloon-block/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
},
"scripts": {
"build": "webpack --mode production",
"postbuild": "tsc -p ./tsconfig.release.json",
"postbuild": "tsc -p ./tsconfig.json",
"preversion": "npm run build"
}
}
3 changes: 1 addition & 2 deletions packages/ckeditor5-build-balloon-block/src/ckeditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ import MediaEmbed from '@ckeditor/ckeditor5-media-embed/src/mediaembed';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice';
import PictureEditing from '@ckeditor/ckeditor5-image/src/pictureediting';
import Table from '@ckeditor/ckeditor5-table/src/table';
import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
import { Table, TableToolbar } from '@ckeditor/ckeditor5-table';
import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation';
import CloudServices from '@ckeditor/ckeditor5-cloud-services/src/cloudservices';

Expand Down
18 changes: 13 additions & 5 deletions packages/ckeditor5-build-balloon-block/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "./build",
"stripInternal": true
},
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
15 changes: 0 additions & 15 deletions packages/ckeditor5-build-balloon-block/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-build-balloon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
},
"scripts": {
"build": "webpack --mode production",
"postbuild": "tsc -p ./tsconfig.release.json",
"postbuild": "tsc -p ./tsconfig.json",
"preversion": "npm run build"
}
}
3 changes: 1 addition & 2 deletions packages/ckeditor5-build-balloon/src/ckeditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ import MediaEmbed from '@ckeditor/ckeditor5-media-embed/src/mediaembed';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice';
import PictureEditing from '@ckeditor/ckeditor5-image/src/pictureediting';
import Table from '@ckeditor/ckeditor5-table/src/table';
import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
import { Table, TableToolbar } from '@ckeditor/ckeditor5-table';
import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation';
import CloudServices from '@ckeditor/ckeditor5-cloud-services/src/cloudservices';

Expand Down
17 changes: 12 additions & 5 deletions packages/ckeditor5-build-balloon/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "./build"
},
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
14 changes: 0 additions & 14 deletions packages/ckeditor5-build-balloon/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-build-classic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
},
"scripts": {
"build": "webpack --mode production",
"postbuild": "tsc -p ./tsconfig.release.json",
"postbuild": "tsc -p ./tsconfig.json",
"preversion": "npm run build"
}
}
3 changes: 1 addition & 2 deletions packages/ckeditor5-build-classic/src/ckeditor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ import MediaEmbed from '@ckeditor/ckeditor5-media-embed/src/mediaembed';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice';
import PictureEditing from '@ckeditor/ckeditor5-image/src/pictureediting';
import Table from '@ckeditor/ckeditor5-table/src/table';
import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
import { Table, TableToolbar } from '@ckeditor/ckeditor5-table';
import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation';
import CloudServices from '@ckeditor/ckeditor5-cloud-services/src/cloudservices';

Expand Down
17 changes: 12 additions & 5 deletions packages/ckeditor5-build-classic/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"extends": "ckeditor5/tsconfig.json",
"include": [
"src",
"../../typings"
]
"extends": "../../tsconfig.release.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"outDir": "./build"
},
"include": [
"src",
"../../typings"
],
"exclude": [
"tests"
]
}
14 changes: 0 additions & 14 deletions packages/ckeditor5-build-classic/tsconfig.release.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/ckeditor5-build-decoupled-document/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
},
"scripts": {
"build": "webpack --mode production",
"postbuild": "tsc -p ./tsconfig.release.json",
"postbuild": "tsc -p ./tsconfig.json",
"preversion": "npm run build"
}
}
Loading