@eventcatalog/core 2.0.18 → 2.0.19

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.
@@ -365,6 +365,15 @@
365
365
  "contributions": [
366
366
  "code"
367
367
  ]
368
+ },
369
+ {
370
+ "login": "nathanbirrell",
371
+ "name": "Nathan Birrell",
372
+ "avatar_url": "https://avatars.githubusercontent.com/u/4300215?v=4",
373
+ "profile": "https://natee.biz",
374
+ "contributions": [
375
+ "code"
376
+ ]
368
377
  }
369
378
  ],
370
379
  "contributorsPerLine": 7,
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eventcatalog/core
2
2
 
3
+ ## 2.0.19
4
+
5
+ ### Patch Changes
6
+
7
+ - 4be2512: feat(core): added ability to configure port on EventCatlog
8
+
3
9
  ## 2.0.18
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  <!-- [![MIT License][license-badge]][license] -->
12
12
  <!-- [![PRs Welcome][prs-badge]][prs] -->
13
13
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
14
- [![All Contributors](https://img.shields.io/badge/all_contributors-38-orange.svg?style=flat-square)](#contributors-)
14
+ [![All Contributors](https://img.shields.io/badge/all_contributors-39-orange.svg?style=flat-square)](#contributors-)
15
15
  <!-- ALL-CONTRIBUTORS-BADGE:END -->
16
16
 
17
17
  <!-- [![Watch on GitHub][github-watch-badge]][github-watch] -->
@@ -192,6 +192,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
192
192
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/danielcastill0"><img src="https://avatars.githubusercontent.com/u/40574235?v=4?s=100" width="100px;" alt="Daniel Andres Castillo Ardila"/><br /><sub><b>Daniel Andres Castillo Ardila</b></sub></a><br /><a href="https://github.com/event-catalog/eventcatalog/commits?author=danielcastill0" title="Code">💻</a></td>
193
193
  <td align="center" valign="top" width="14.28%"><a href="http://www.ennovative-solutions.be"><img src="https://avatars.githubusercontent.com/u/2007116?v=4?s=100" width="100px;" alt="Baerten Dennis"/><br /><sub><b>Baerten Dennis</b></sub></a><br /><a href="https://github.com/event-catalog/eventcatalog/commits?author=debae" title="Code">💻</a></td>
194
194
  <td align="center" valign="top" width="14.28%"><a href="https://github.com/ryancormack"><img src="https://avatars.githubusercontent.com/u/1962883?v=4?s=100" width="100px;" alt="Ryan Cormack"/><br /><sub><b>Ryan Cormack</b></sub></a><br /><a href="https://github.com/event-catalog/eventcatalog/commits?author=ryancormack" title="Code">💻</a></td>
195
+ <td align="center" valign="top" width="14.28%"><a href="https://natee.biz"><img src="https://avatars.githubusercontent.com/u/4300215?v=4?s=100" width="100px;" alt="Nathan Birrell"/><br /><sub><b>Nathan Birrell</b></sub></a><br /><a href="https://github.com/event-catalog/eventcatalog/commits?author=nathanbirrell" title="Code">💻</a></td>
195
196
  </tr>
196
197
  </tbody>
197
198
  </table>
package/astro.config.mjs CHANGED
@@ -16,7 +16,7 @@ import config from './eventcatalog.config';
16
16
  // https://astro.build/config
17
17
  export default defineConfig({
18
18
  base: config.base || '/',
19
- server: { port: 3000 },
19
+ server: { port: config.port || 3000 },
20
20
 
21
21
  // https://docs.astro.build/en/reference/configuration-reference/#site
22
22
  site: config.homepageLink || 'https://eventcatalog.dev/',
@@ -8,6 +8,7 @@ interface Config {
8
8
  homepageLink: string;
9
9
  editUrl: string;
10
10
  base?: string;
11
+ port?: string;
11
12
  trailingSlash?: boolean;
12
13
  logo?: {
13
14
  alt: string;
@@ -8,6 +8,7 @@ interface Config {
8
8
  homepageLink: string;
9
9
  editUrl: string;
10
10
  base?: string;
11
+ port?: string;
11
12
  trailingSlash?: boolean;
12
13
  logo?: {
13
14
  alt: string;
@@ -9,6 +9,7 @@ export interface Config {
9
9
  homepageLink: string;
10
10
  editUrl: string;
11
11
  base?: string;
12
+ port?: string;
12
13
  trailingSlash?: boolean;
13
14
  logo?: {
14
15
  alt: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eventcatalog/core",
3
3
  "type": "module",
4
- "version": "2.0.18",
4
+ "version": "2.0.19",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },