@tryghost/social-urls 0.1.57 → 0.1.59
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/LICENSE +1 -1
- package/README.md +2 -2
- package/package.json +4 -4
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ or
|
|
|
15
15
|
const {twitter: makeTwitter, facebook: makeFacebook} = require('@tryghost/social-urls');
|
|
16
16
|
|
|
17
17
|
const socialUrls = [
|
|
18
|
-
makeTwitter('@ghost'), // https://
|
|
18
|
+
makeTwitter('@ghost'), // https://x.com/ghost
|
|
19
19
|
makeFacebook('/ghost') // https://facebook.com/ghost
|
|
20
20
|
];
|
|
21
21
|
```
|
|
@@ -44,4 +44,4 @@ Follow the instructions for the top-level repo.
|
|
|
44
44
|
|
|
45
45
|
# Copyright & License
|
|
46
46
|
|
|
47
|
-
Copyright (c) 2013-
|
|
47
|
+
Copyright (c) 2013-2026 Ghost Foundation - Released under the [MIT license](LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tryghost/social-urls",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.59",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/TryGhost/SDK.git",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"main": "lib/index.js",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"dev": "echo \"Implement me!\"",
|
|
14
|
-
"test": "NODE_ENV=testing c8 --
|
|
14
|
+
"test": "NODE_ENV=testing c8 --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
|
15
15
|
"lint": "eslint . --ext .js --cache",
|
|
16
16
|
"posttest": "yarn lint"
|
|
17
17
|
},
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"c8": "
|
|
25
|
+
"c8": "11.0.0",
|
|
26
26
|
"mocha": "11.7.5",
|
|
27
27
|
"should": "13.2.3",
|
|
28
28
|
"sinon": "21.0.1"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "363a7f5cf228bd7cc7ee92e6fb54c7b6796d7260"
|
|
31
31
|
}
|