svelte-meta-tags 2.5.4 → 2.5.5
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/CHANGELOG.md +8 -2
- package/JsonLd.svelte +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
## [2.5.4](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.3...v2.5.4) (2022-05-06)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- obfuscate by concatenating script tag ([fa9d409](https://github.com/oekazuma/svelte-meta-tags/commit/fa9d40960afc8b06d4aadc6a958fc05b6b15a96c))
|
|
6
|
+
|
|
7
|
+
## [2.5.3](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.2...v2.5.3) (2022-05-06)
|
|
2
8
|
|
|
3
9
|
- escaping content in script tags ([25bf038](https://github.com/oekazuma/svelte-meta-tags/commit/25bf038a485697249ecc9633166599b0652f3550))
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
## [2.5.2](https://github.com/oekazuma/svelte-meta-tags/compare/v2.5.1...v2.5.2) (2022-05-06)
|
|
6
12
|
|
|
7
13
|
- version bump for package
|
|
8
14
|
|
package/JsonLd.svelte
CHANGED
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
export let output = 'head';
|
|
3
3
|
export let schema = undefined;
|
|
4
4
|
|
|
5
|
-
const jsonSchema = (schema) =>
|
|
6
|
-
JSON.stringify({ '@context': 'https://schema.org', ...schema }, null, 2);
|
|
5
|
+
const jsonSchema = (schema) => JSON.stringify({ '@context': 'https://schema.org', ...schema });
|
|
7
6
|
</script>
|
|
8
7
|
|
|
9
8
|
<svelte:head>
|