Skip to content

Commit 7ecc8a7

Browse files
authored
TinyMCE library package added (#395)
1 parent 43c45b4 commit 7ecc8a7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"clean": "echo \"cleaning...\" && npx shx --yes rm -rf ./dist/** ./node_modules",
1616
"lint": "echo \"linting...\" && npx eslint \"src/**\"",
1717
"lint-errors-only": "npx eslint \"src/**\" --quiet",
18-
1918
"_comment_DXCB_commands": "The following are public commands to run the integrated DX Component Builder",
2019
"authenticate": "dx-component-builder-sdk authenticate",
2120
"buildAllComponents": "dx-component-builder-sdk buildAllComponents",
@@ -34,21 +33,17 @@
3433
"rename": "dx-component-builder-sdk rename",
3534
"scanAndFix": "dx-component-builder-sdk scanAndFix",
3635
"startStorybook": "start-storybook --port 6040 --quiet",
37-
3836
"_comment_SDK_public_SDK_test_commands": "The following are public commands used for testing the SDK",
3937
"test": "node ./scripts/playwright-message.js && playwright test --project=chromium MediaCo/portal MediaCo/embedded",
4038
"test:headed": "playwright test --headed --project=chromium MediaCo/portal MediaCo/embedded",
4139
"test-report": "playwright show-report tests/playwright-report",
42-
4340
"_comment_internal_SDK_scripts": "The following commands are for internal use and are intended to be called only from public scripts above",
4441
"_internal-build-dev-only": "echo \"building...\" && webpack --mode=development && npm run _internal-copy-index",
4542
"_internal-build-prod-only": "echo \"building...\" && webpack --mode=production && npm run _internal-copy-index",
4643
"_internal-check-node-version": "node scripts/check-node-version",
4744
"_internal-copy-index": "shx cp dist/index.html dist/simpleportal.html && shx cp dist/index.html dist/portal.html && shx cp dist/index.html dist/fullportal.html && shx cp dist/index.html dist/embedded.html",
4845
"_internal-install-sdk": "echo \"installing...\" && npm install --loglevel notice",
4946
"_internal-test-functional": "npm run test:functional:local --prefix node_modules/@pega/dx-component-builder-sdk"
50-
51-
5247
},
5348
"dependencies": {
5449
"@date-io/dayjs": "^1.3.13",
@@ -131,6 +126,7 @@
131126
"shx": "^0.3.4",
132127
"style-loader": "^2.0.0",
133128
"stylelint": "^14.16.0",
129+
"tinymce": "^6.7.2",
134130
"trim-newlines": "^3.0.1",
135131
"ts-jest": "^29.0.3",
136132
"ts-loader": "^8.4.0",

webpack.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ module.exports = (env, argv) => {
5656
from: './assets/css/*',
5757
to: './'
5858
},
59+
{
60+
from: './node_modules/tinymce',
61+
to: './tinymce'
62+
},
5963
{
6064
from: './node_modules/@pega/constellationjs/dist/bootstrap-shell.js',
6165
to: './constellation'

0 commit comments

Comments
 (0)