Skip to content

Commit

Permalink
Merge pull request #139 from thegalactiks/changeset-release/main
Browse files Browse the repository at this point in the history
[ci] release
  • Loading branch information
emmanuelgautier authored Feb 8, 2024
2 parents 9232762 + 449d955 commit caa459f
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 21 deletions.
5 changes: 0 additions & 5 deletions .changeset/odd-fans-chew.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/adapters/astro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @galactiks/astro-integration

## 0.2.14

### Patch Changes

- Updated dependencies [[`9232762`](https://github.com/thegalactiks/explorer/commit/9232762363d5666d2f8355c684eb9b323b3e114b)]:
- @galactiks/explorer@0.2.13

## 0.2.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/astro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/astro-integration",
"version": "0.2.13",
"version": "0.2.14",
"description": "Galactiks Astro integration",
"author": "thegalactiks",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/adapters/astro/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"target": "ES2021",
"module": "ES2022",
"declarationDir": "./dist",
"outDir": "./dist",
},
"outDir": "./dist"
}
}
4 changes: 2 additions & 2 deletions packages/config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"allowJs": true,
"target": "ES2021",
"module": "ES2022",
"outDir": "./dist",
},
"outDir": "./dist"
}
}
4 changes: 2 additions & 2 deletions packages/contentlayer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"allowJs": true,
"target": "ES2021",
"module": "ES2022",
"outDir": "./dist",
},
"outDir": "./dist"
}
}
6 changes: 6 additions & 0 deletions packages/explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @galactiks/explorer

## 0.2.13

### Patch Changes

- [`9232762`](https://github.com/thegalactiks/explorer/commit/9232762363d5666d2f8355c684eb9b323b3e114b) Thanks [@emmanuelgautier](https://github.com/emmanuelgautier)! - fix minor issues and add selector

## 0.2.12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@galactiks/explorer",
"version": "0.2.12",
"version": "0.2.13",
"description": "Ensure Galactiks content model consistence, explore content built with ContentLayer and create dynamically missing pages and fields for SEO purposes",
"author": "thegalactiks",
"type": "module",
Expand Down
8 changes: 3 additions & 5 deletions packages/explorer/src/core/content/repositories/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,9 @@ export const getPagesPartOfRecursively = async (
}

return Promise.all(
pages.map(page => getPagesPartOfRecursively(page.identifier, filters))
).then(
items => items.reduce((acc, item) => acc.concat(item), pages)
)
}
pages.map((page) => getPagesPartOfRecursively(page.identifier, filters))
).then((items) => items.reduce((acc, item) => acc.concat(item), pages));
};

export const getPagesWithKeywordIdentifier = async (
keywordIdentifier: string,
Expand Down
6 changes: 3 additions & 3 deletions packages/explorer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"paths": {
"@/*": ["./*"],
"@content/*": ["./content/*"],
"@exceptions/*": ["./exceptions/*"],
},
},
"@exceptions/*": ["./exceptions/*"]
}
}
}

0 comments on commit caa459f

Please sign in to comment.