@paroicms/playground_demo2 0.66.0 → 0.68.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 +34 -0
- package/package.json +9 -9
- package/paroicms-site.d.ts +2 -0
- package/paroicms-site.js +4 -6
- package/site-schema.json +1 -2
- package/theme/templates/partials/header.liquid +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
> @paroicms/playground_demo2@0.
|
|
2
|
+
> @paroicms/playground_demo2@0.68.0 build
|
|
3
3
|
> npm run scss
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @paroicms/playground_demo2@0.
|
|
6
|
+
> @paroicms/playground_demo2@0.68.0 scss
|
|
7
7
|
> npm run _scss -- --no-source-map --style=compressed
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @paroicms/playground_demo2@0.
|
|
10
|
+
> @paroicms/playground_demo2@0.68.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,39 @@
|
|
|
1
1
|
# @paroicms/playground_seoul
|
|
2
2
|
|
|
3
|
+
## 0.68.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 88c306d: Extract AWS SES as a plugin; Add `platform` property to plugin configuration.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [88c306d]
|
|
12
|
+
- @paroicms/content-loading-plugin@0.26.0
|
|
13
|
+
- @paroicms/internal-link-plugin@0.21.0
|
|
14
|
+
- @paroicms/contact-form-plugin@0.32.0
|
|
15
|
+
- @paroicms/quill-editor-plugin@1.41.0
|
|
16
|
+
- @paroicms/public-menu-plugin@0.18.0
|
|
17
|
+
- @paroicms/list-field-plugin@0.25.0
|
|
18
|
+
- @paroicms/video-plugin@0.35.0
|
|
19
|
+
|
|
20
|
+
## 0.67.0
|
|
21
|
+
|
|
22
|
+
### Minor Changes
|
|
23
|
+
|
|
24
|
+
- 6e3c9fd: Better plugin structure; Vitest configuration; Improve synchronous hooks; Improve "normalizeTypography" option (refactoring)
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [6e3c9fd]
|
|
29
|
+
- @paroicms/content-loading-plugin@0.25.0
|
|
30
|
+
- @paroicms/internal-link-plugin@0.20.0
|
|
31
|
+
- @paroicms/contact-form-plugin@0.31.0
|
|
32
|
+
- @paroicms/quill-editor-plugin@1.40.0
|
|
33
|
+
- @paroicms/public-menu-plugin@0.17.0
|
|
34
|
+
- @paroicms/list-field-plugin@0.24.0
|
|
35
|
+
- @paroicms/video-plugin@0.34.0
|
|
36
|
+
|
|
3
37
|
## 0.66.0
|
|
4
38
|
|
|
5
39
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paroicms/playground_demo2",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.68.0",
|
|
4
4
|
"description": "Demonstration website for ParoiCMS",
|
|
5
5
|
"author": "Paroi Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"directory": "sites/demo2"
|
|
11
11
|
},
|
|
12
12
|
"type": "module",
|
|
13
|
+
"types": "paroicms-site.d.ts",
|
|
13
14
|
"main": "paroicms-site.js",
|
|
14
15
|
"scripts": {
|
|
15
16
|
"start": "paroicms | npm run _pino-pretty",
|
|
@@ -23,14 +24,13 @@
|
|
|
23
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'"
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
|
-
"@paroicms/contact-form-plugin": "0.
|
|
27
|
-
"@paroicms/content-loading-plugin": "0.
|
|
28
|
-
"@paroicms/
|
|
29
|
-
"@paroicms/
|
|
30
|
-
"@paroicms/
|
|
31
|
-
"@paroicms/
|
|
32
|
-
"@paroicms/
|
|
33
|
-
"@paroicms/video-plugin": "0.33.0"
|
|
27
|
+
"@paroicms/contact-form-plugin": "0.32.0",
|
|
28
|
+
"@paroicms/content-loading-plugin": "0.26.0",
|
|
29
|
+
"@paroicms/internal-link-plugin": "0.21.0",
|
|
30
|
+
"@paroicms/list-field-plugin": "0.25.0",
|
|
31
|
+
"@paroicms/public-menu-plugin": "0.18.0",
|
|
32
|
+
"@paroicms/quill-editor-plugin": "1.41.0",
|
|
33
|
+
"@paroicms/video-plugin": "0.35.0"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"concurrently": "~9.1.2",
|
package/paroicms-site.js
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { join } from "node:path";
|
|
3
|
-
import { resolveModuleDirectory } from "@paroicms/public-server-lib";
|
|
1
|
+
import { esmDirName, extractPackageNameAndVersionSync } from "@paroicms/script-lib";
|
|
4
2
|
|
|
5
|
-
const packageDir =
|
|
6
|
-
const
|
|
3
|
+
const packageDir = esmDirName(import.meta.url);
|
|
4
|
+
const { version } = extractPackageNameAndVersionSync(packageDir);
|
|
7
5
|
|
|
8
6
|
export const siteDir = packageDir;
|
|
9
|
-
export
|
|
7
|
+
export { version };
|
package/site-schema.json
CHANGED
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
},
|
|
13
13
|
"@paroicms/contact-form-plugin",
|
|
14
14
|
"@paroicms/content-loading-plugin",
|
|
15
|
-
"@paroicms/formatting-plugin",
|
|
16
15
|
"@paroicms/internal-link-plugin",
|
|
17
16
|
"@paroicms/list-field-plugin",
|
|
18
17
|
"@paroicms/public-menu-plugin",
|
|
@@ -276,7 +275,7 @@
|
|
|
276
275
|
"es": "contáctenos"
|
|
277
276
|
},
|
|
278
277
|
"withFeaturedImage": false,
|
|
279
|
-
"fields": ["
|
|
278
|
+
"fields": ["buttonLabel", "htmlContent"]
|
|
280
279
|
},
|
|
281
280
|
{
|
|
282
281
|
"typeName": "searchPage",
|