@paroicms/generator-site 0.11.3 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +18 -0
- package/package.json +7 -7
- package/site-schema.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @paroicms/generator-site@0.
|
|
2
|
+
> @paroicms/generator-site@0.12.0 build
|
|
3
3
|
> npm run scss
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @paroicms/generator-site@0.
|
|
6
|
+
> @paroicms/generator-site@0.12.0 scss
|
|
7
7
|
> npm run _scss -- --no-source-map --style=compressed
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @paroicms/generator-site@0.
|
|
10
|
+
> @paroicms/generator-site@0.12.0 _scss
|
|
11
11
|
> sass theme/assets/scss/index.scss theme/assets/css/index.css --no-source-map --style=compressed
|
|
12
12
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @paroicms/generator-site
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 73d8250: Implemented Tiptap plugin.
|
|
8
|
+
|
|
9
|
+
The Quill plugin is still supported, but now the Tiptap plugin is recommended. Here is how to migrate your website from Quill to Tiptap:
|
|
10
|
+
|
|
11
|
+
1. Update your database `npx @paroicms/converter --database /path/to/main.sqlite --quill-to-tiptap --backup`
|
|
12
|
+
2. In your `site-schema.json` and `package.json`, replace `@paroicms/quill-editor-plugin` with `@paroicms/tiptap-editor-plugin`.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [73d8250]
|
|
17
|
+
- @paroicms/tiptap-editor-plugin@1.0.0
|
|
18
|
+
- @paroicms/site-generator-plugin@0.27.0
|
|
19
|
+
- @paroicms/script-lib@0.3.3
|
|
20
|
+
|
|
3
21
|
## 0.11.3
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paroicms/generator-site",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "ParoiCMS generator website",
|
|
5
5
|
"author": "Paroi Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"_pino-pretty": "pino-pretty -U false -x 'stats:25' -X 'stats:grey' -t 'yyyy-mm-dd HH:MM:ss.l' -i 'hostname,pid,fqdn'"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@paroicms/script-lib": "0.3.
|
|
28
|
-
"@paroicms/site-generator-plugin": "0.
|
|
29
|
-
"@paroicms/
|
|
27
|
+
"@paroicms/script-lib": "0.3.3",
|
|
28
|
+
"@paroicms/site-generator-plugin": "0.27.0",
|
|
29
|
+
"@paroicms/tiptap-editor-plugin": "1.0.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"concurrently": "~9.1
|
|
32
|
+
"concurrently": "~9.2.1",
|
|
33
33
|
"nodemon": "~3.1.10",
|
|
34
|
-
"pino-pretty": "~13.
|
|
34
|
+
"pino-pretty": "~13.1.2",
|
|
35
35
|
"rimraf": "~6.0.1",
|
|
36
|
-
"sass": "~1.
|
|
36
|
+
"sass": "~1.93.2"
|
|
37
37
|
}
|
|
38
38
|
}
|
package/site-schema.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ParoiCMSSiteSchemaFormatVersion": "10",
|
|
3
3
|
"languages": ["en"],
|
|
4
|
-
"plugins": ["@paroicms/site-generator-plugin", "@paroicms/
|
|
4
|
+
"plugins": ["@paroicms/site-generator-plugin", "@paroicms/tiptap-editor-plugin"],
|
|
5
5
|
"nodeTypes": [
|
|
6
6
|
{
|
|
7
7
|
"kind": "site",
|
|
8
|
-
"fields": ["logo", "footerMention[@paroicms/
|
|
8
|
+
"fields": ["logo", "footerMention[@paroicms/tiptap-editor-plugin]"]
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
11
|
"typeName": "home",
|
|
12
12
|
"kind": "document",
|
|
13
13
|
"documentKind": "routing",
|
|
14
14
|
"withFeaturedImage": false,
|
|
15
|
-
"fields": ["introduction[@paroicms/
|
|
15
|
+
"fields": ["introduction[@paroicms/tiptap-editor-plugin]"],
|
|
16
16
|
"adminUi": {
|
|
17
17
|
"defaultTab": "edit"
|
|
18
18
|
},
|