Skip to content

Commit 47921c1

Browse files
committed
more changes
1 parent 9498f66 commit 47921c1

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

modules/ROOT/pages/vite-es6-npm.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
= Bundling an NPM version of TinyMCE with ES6 and Vite
2-
:navtitle: ES6 and npm
1+
= Bundling TinyMCE from NPM with ES6 and Vite
2+
:navtitle: ES6 and NPM
33
:description_short: Bundling an NPM version of TinyMCE in a project using ES6 and Vite
44
:description: Bundling an NPM version of TinyMCE in a project using ES6 and Vite
55
:keywords: vite, es6, es2015, npm, modules, tinymce
6-
:installtype: a npm
6+
:installtype: a NPM
77
:bundler: https://vitejs.dev[Vite]
88
:syntax: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules[ES6+ syntax]
99

@@ -13,19 +13,19 @@ include::partial$module-loading/bundling-procedure-intro.adoc[]
1313

1414
This guide requires the following:
1515

16-
* Node.js and npm.
16+
* Node.js and NPM.
1717
* Basic knowledge of how to use https://vitejs.dev[Vite].
18-
* For self-hosted deployments: A valid license key starting with `T8LK:` from your link:{accountpageurl}/[{accountpage}]
18+
// * For self-hosted deployments: A valid license key starting with `T8LK:` from your link:{accountpageurl}/[{accountpage}]
1919
* (Optional: For premium features) The latest premium .zip bundle of TinyMCE that includes premium plugins.
2020

21-
[IMPORTANT]
22-
====
23-
When self-hosting TinyMCE 8:
21+
// [IMPORTANT]
22+
// ====
23+
// When self-hosting TinyMCE 8:
2424

25-
* A license key is required for commercial deployments
26-
* Keys must start with the `T8LK:` prefix
27-
* For hybrid deployments that need both cloud features and local fallback, you can use both `license_key` and `api_key`
28-
====
25+
// * A license key is required for commercial deployments
26+
// * Keys must start with the `T8LK:` prefix
27+
// * For hybrid deployments that need both cloud features and local fallback, you can use both `license_key` and `api_key`
28+
// ====
2929

3030
== Procedures
3131

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,8 @@
4242
"http-server": "^0.12.3",
4343
"nodemon": "^3.1.10",
4444
"npm-run-all": "^4.1.5"
45+
},
46+
"dependencies": {
47+
"tinymce-premium": "^8.3.0"
4548
}
4649
}

yarn.lock

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1874,6 +1874,11 @@ timers-ext@^0.1.7:
18741874
es5-ext "~0.10.46"
18751875
next-tick "1"
18761876

1877+
tinymce-premium@^8.3.0:
1878+
version "8.3.0"
1879+
resolved "https://registry.yarnpkg.com/tinymce-premium/-/tinymce-premium-8.3.0.tgz#d837062bfba4fd6ca79fdad4310be6f9bcc78a3c"
1880+
integrity sha512-h76r8ynq2Y3pSqxJosp5qeDqFgz07jk6/GG1jCKUKg0Dc+HG0kfNpRuhl9au0v/QEcuDLp3495f512B/YfchYQ==
1881+
18771882
to-regex-range@^5.0.1:
18781883
version "5.0.1"
18791884
resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"

0 commit comments

Comments
 (0)