@jungvonmatt/cssg-plugin-hugo 1.14.2 → 1.14.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/.turbo/turbo-lint.log +1 -1
- package/CHANGELOG.md +6 -0
- package/index.js +0 -2
- package/package.json +2 -2
package/.turbo/turbo-lint.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.14.3](https://github.com/jungvonmatt/contentful-ssg/compare/v1.14.2...v1.14.3) (2024-06-24)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- remove deprecated custom lang param ([#75](https://github.com/jungvonmatt/contentful-ssg/issues/75)) ([a2bd437](https://github.com/jungvonmatt/contentful-ssg/commit/a2bd4373c0035b25bb81bf8bb212ce9f570030c0)), closes [#62](https://github.com/jungvonmatt/contentful-ssg/issues/62)
|
|
11
|
+
|
|
6
12
|
## [1.14.2](https://github.com/jungvonmatt/contentful-ssg/compare/v1.14.1...v1.14.2) (2024-06-01)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @jungvonmatt/cssg-plugin-hugo
|
package/index.js
CHANGED
|
@@ -286,12 +286,10 @@ export default (args) => {
|
|
|
286
286
|
const { code, name: languageName } = locale;
|
|
287
287
|
|
|
288
288
|
const languageCode = code;
|
|
289
|
-
const [languageNameShort] = languageCode.split('-');
|
|
290
289
|
|
|
291
290
|
const localeConfig = {
|
|
292
291
|
languageCode,
|
|
293
292
|
languageName,
|
|
294
|
-
languageNameShort,
|
|
295
293
|
weight: locale.default ? 1 : 2,
|
|
296
294
|
};
|
|
297
295
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jungvonmatt/cssg-plugin-hugo",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"typings": "./index.d.ts",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"fs-extra": "^11.1.0",
|
|
32
32
|
"micromatch": "^4.0.5"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "e63fa0662f3a88bfccb05abfabc74dbfa4863200"
|
|
35
35
|
}
|