svelte-meta-tags 2.2.2 → 2.2.3

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## [2.2.2](https://github.com/oekazuma/svelte-meta-tags/compare/v2.2.1...v2.2.2) (2021-12-26)
2
+
3
+ ### Bug Fixes
4
+
5
+ - revert changes so that npm and yarn can also be used for installation ([f536977](https://github.com/oekazuma/svelte-meta-tags/commit/f536977550948f675f4207b80dc5aca96cc535a0))
6
+
1
7
  ## [2.2.1](https://github.com/oekazuma/svelte-meta-tags/compare/v2.2.0...v2.2.1) (2021-12-21)
2
8
 
3
9
  ### Bug Fixes
@@ -1,4 +1,4 @@
1
1
  import { SvelteComponentTyped } from 'svelte';
2
- import { JsonLdProps } from 'types';
2
+ import { JsonLdProps } from './types';
3
3
 
4
4
  export default class JsonLd extends SvelteComponentTyped<JsonLdProps> {}
package/README.md CHANGED
@@ -11,6 +11,10 @@ Svelte Meta Tags is a plugin that makes managing your SEO easier in Svelte proje
11
11
 
12
12
  This library is inspired by [next-seo](https://github.com/garmeeh/next-seo)
13
13
 
14
+ **Would you like to support this project?**
15
+
16
+ <a href="https://www.buymeacoffee.com/oekazuma" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-orange.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
17
+
14
18
  **Table of Contents**
15
19
 
16
20
  - [Installing](#-installing)
@@ -53,6 +57,12 @@ or
53
57
  yarn add svelte-meta-tags
54
58
  ```
55
59
 
60
+ or
61
+
62
+ ```shell
63
+ pnpm add svelte-meta-tags
64
+ ```
65
+
56
66
  ### 🚀 Usage
57
67
 
58
68
  **Example with just title and description:**
package/package.json CHANGED
@@ -1,13 +1,9 @@
1
1
  {
2
2
  "name": "svelte-meta-tags",
3
- "version": "2.2.2",
3
+ "version": "2.2.3",
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",
7
- "svelte": "index.js",
8
- "main": "index.js",
9
- "module": "index.js",
10
- "types": "index.d.ts",
11
7
  "keywords": [
12
8
  "svelte",
13
9
  "svelteKit",
@@ -25,27 +21,27 @@
25
21
  "schema-dts": "1.0.0"
26
22
  },
27
23
  "devDependencies": {
28
- "@commitlint/cli": "16.0.0",
24
+ "@commitlint/cli": "16.0.2",
29
25
  "@commitlint/config-conventional": "16.0.0",
30
26
  "@semantic-release/changelog": "6.0.1",
31
27
  "@semantic-release/git": "10.0.1",
32
- "@sveltejs/kit": "1.0.0-next.202",
33
- "@typescript-eslint/eslint-plugin": "5.8.0",
34
- "@typescript-eslint/parser": "5.8.0",
35
- "cypress": "9.2.0",
36
- "eslint": "8.5.0",
28
+ "@sveltejs/kit": "1.0.0-next.229",
29
+ "@typescript-eslint/eslint-plugin": "5.9.1",
30
+ "@typescript-eslint/parser": "5.9.1",
31
+ "cypress": "9.2.1",
32
+ "eslint": "8.6.0",
37
33
  "eslint-config-prettier": "8.3.0",
38
34
  "eslint-plugin-cypress": "2.12.1",
39
- "eslint-plugin-svelte3": "3.2.1",
35
+ "eslint-plugin-svelte3": "3.4.0",
40
36
  "husky": "7.0.4",
41
- "lint-staged": "12.1.4",
37
+ "lint-staged": "12.1.7",
42
38
  "prettier": "2.5.1",
43
- "prettier-plugin-svelte": "2.5.1",
39
+ "prettier-plugin-svelte": "2.6.0",
44
40
  "semantic-release": "18.0.1",
45
- "svelte": "3.44.3",
46
- "svelte-check": "2.2.11",
41
+ "svelte": "3.46.1",
42
+ "svelte-check": "2.3.0",
47
43
  "svelte-preprocess": "4.10.1",
48
- "svelte2tsx": "0.4.12",
44
+ "svelte2tsx": "0.4.14",
49
45
  "tslib": "2.3.1",
50
46
  "typescript": "4.5.4"
51
47
  },
@@ -94,5 +90,6 @@
94
90
  "./JsonLd.svelte": "./JsonLd.svelte",
95
91
  "./MetaTags.svelte": "./MetaTags.svelte",
96
92
  ".": "./index.js"
97
- }
93
+ },
94
+ "svelte": "./index.js"
98
95
  }