svelte-meta-tags 2.2.0 → 2.2.1
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 +6 -0
- package/package.json +13 -8
- package/types.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
# [2.2.0](https://github.com/oekazuma/svelte-meta-tags/compare/v2.1.0...v2.2.0) (2021-12-17)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- improved Twitter's CardType type definition ([13b11fd](https://github.com/oekazuma/svelte-meta-tags/commit/13b11fd2e9f6625e1cd0802e825f312f37988666))
|
|
6
|
+
|
|
1
7
|
# [2.1.0](https://github.com/oekazuma/svelte-meta-tags/compare/v2.0.0...v2.1.0) (2021-11-04)
|
|
2
8
|
|
|
3
9
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-meta-tags",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "Svelte Meta Tags is a plugin that makes managing your SEO easier in Svelte projects.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -30,22 +30,22 @@
|
|
|
30
30
|
"@semantic-release/changelog": "6.0.1",
|
|
31
31
|
"@semantic-release/git": "10.0.1",
|
|
32
32
|
"@sveltejs/kit": "1.0.0-next.202",
|
|
33
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
34
|
-
"@typescript-eslint/parser": "5.
|
|
33
|
+
"@typescript-eslint/eslint-plugin": "5.8.0",
|
|
34
|
+
"@typescript-eslint/parser": "5.8.0",
|
|
35
35
|
"cypress": "9.1.1",
|
|
36
|
-
"eslint": "8.
|
|
36
|
+
"eslint": "8.5.0",
|
|
37
37
|
"eslint-config-prettier": "8.3.0",
|
|
38
38
|
"eslint-plugin-cypress": "2.12.1",
|
|
39
39
|
"eslint-plugin-svelte3": "3.2.1",
|
|
40
40
|
"husky": "7.0.4",
|
|
41
|
-
"lint-staged": "12.1.
|
|
41
|
+
"lint-staged": "12.1.3",
|
|
42
42
|
"prettier": "2.5.1",
|
|
43
43
|
"prettier-plugin-svelte": "2.5.1",
|
|
44
44
|
"semantic-release": "18.0.1",
|
|
45
45
|
"svelte": "3.44.3",
|
|
46
|
-
"svelte-check": "2.2.
|
|
47
|
-
"svelte-preprocess": "4.10.
|
|
48
|
-
"svelte2tsx": "0.4.
|
|
46
|
+
"svelte-check": "2.2.11",
|
|
47
|
+
"svelte-preprocess": "4.10.1",
|
|
48
|
+
"svelte2tsx": "0.4.12",
|
|
49
49
|
"tslib": "2.3.1",
|
|
50
50
|
"typescript": "4.5.4"
|
|
51
51
|
},
|
|
@@ -89,6 +89,11 @@
|
|
|
89
89
|
"main"
|
|
90
90
|
]
|
|
91
91
|
},
|
|
92
|
+
"engines": {
|
|
93
|
+
"npm": "forbidden, use pnpm",
|
|
94
|
+
"pnpm": ">=6",
|
|
95
|
+
"yarn": "forbidden, use pnpm"
|
|
96
|
+
},
|
|
92
97
|
"exports": {
|
|
93
98
|
"./package.json": "./package.json",
|
|
94
99
|
"./JsonLd.svelte": "./JsonLd.svelte",
|
package/types.d.ts
CHANGED