@studyportals/fawkes 2.0.1-36 → 2.0.1-37
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.
|
@@ -28,6 +28,8 @@ export class UniversityCountryPolicy extends BaseSeoIndexabilityPolicy {
|
|
|
28
28
|
const organisations = await organisationsClient.getOrganisations(organisationIds);
|
|
29
29
|
const isoToPath = new Map();
|
|
30
30
|
const countries = CountryPresenter.getInstance().getFragments();
|
|
31
|
+
// eslint-disable-next-line no-console
|
|
32
|
+
console.log("COUNTRY_FRAGMENTS: ", JSON.stringify(countries));
|
|
31
33
|
countries.forEach(country => {
|
|
32
34
|
isoToPath.set(country.iso, country.path);
|
|
33
35
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studyportals/fawkes",
|
|
3
|
-
"version": "2.0.1-
|
|
3
|
+
"version": "2.0.1-37",
|
|
4
4
|
"description": "A package to centralize SEO related logic for SBLP and Sitemap Generator.",
|
|
5
5
|
"files": [
|
|
6
6
|
"./dist"
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"test": "vitest run --coverage",
|
|
19
19
|
"test:dev": "vitest --coverage",
|
|
20
20
|
"lint": "eslint . --ext .ts",
|
|
21
|
-
"lint:fix": "eslint . --ext .ts --fix"
|
|
21
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
22
|
+
"t": "npm run build && npm version prerelease && npm publish --tag beta --access=public"
|
|
22
23
|
},
|
|
23
24
|
"exports": {
|
|
24
25
|
"./organisations-search-seo": "./dist/organisations-seo.js",
|