Skip to content

Commit

Permalink
Merge pull request #13314 from ckeditor/ck/13005-ts-ckbox
Browse files Browse the repository at this point in the history
Other (ckbox): Rewrite ckeditor5-ckbox to TypeScript. Closes #13005.
Other (cloud-services): Rewrite ckeditor5-cloud-services to TypeScript. Closes #13007.
  • Loading branch information
arkflpc committed Feb 1, 2023
2 parents 68deef2 + f8f59e3 commit 37dee87
Show file tree
Hide file tree
Showing 38 changed files with 2,871 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -32,7 +32,9 @@ packages/ckeditor5-autoformat/src/**/*.js
packages/ckeditor5-autosave/src/**/*.js
packages/ckeditor5-basic-styles/src/**/*.js
packages/ckeditor5-block-quote/src/**/*.js
packages/ckeditor5-ckbox/src/**/*.js
packages/ckeditor5-clipboard/src/**/*.js
packages/ckeditor5-cloud-services/src/**/*.js
packages/ckeditor5-code-block/src/**/*.js
packages/ckeditor5-core/src/**/*.js
packages/ckeditor5-editor-balloon/src/**/*.js
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 7 additions & 3 deletions packages/ckeditor5-ckbox/package.json
Expand Up @@ -10,7 +10,7 @@
"ckeditor5-plugin",
"ckeditor5-dll"
],
"main": "src/index.js",
"main": "src/index.ts",
"dependencies": {
"ckeditor5": "^36.0.0"
},
Expand All @@ -29,6 +29,7 @@
"@ckeditor/ckeditor5-ui": "^36.0.0",
"@ckeditor/ckeditor5-upload": "^36.0.0",
"@ckeditor/ckeditor5-utils": "^36.0.0",
"typescript": "^4.8.4",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
},
Expand All @@ -47,13 +48,16 @@
},
"files": [
"lang",
"src",
"src/**/*.js",
"src/**/*.d.ts",
"theme",
"build",
"ckeditor5-metadata.json",
"CHANGELOG.md"
],
"scripts": {
"dll:build": "webpack"
"dll:build": "webpack",
"build": "tsc -p ./tsconfig.release.json",
"postversion": "npm run build"
}
}

0 comments on commit 37dee87

Please sign in to comment.