Skip to content

Commit 88f7891

Browse files
chore(release): @tymber/config@0.1.0
1 parent 53e1ba0 commit 88f7891

6 files changed

Lines changed: 47 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ Here are the detailed changelogs for each package in this monorepo:
1111
| `@tymber/sqlite` | [link](packages/sqlite/CHANGELOG.md) |
1212
| `@tymber/user` | [link](packages/user/CHANGELOG.md) |
1313
| `@tymber/openapi` | [link](packages/openapi/CHANGELOG.md) |
14+
| `@tymber/config` | [link](packages/config/CHANGELOG.md) |

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ This repository contains the following packages:
103103
| `@tymber/user` | The user module | [`0.1.0`](packages/user/CHANGELOG.md) |
104104
| `@tymber/postgres` | The PostgreSQL module (DB & PubSubService components) | [`0.1.0`](packages/postgres/CHANGELOG.md) |
105105
| `@tymber/sqlite` | The SQLite module | [`0.1.0`](packages/sqlite/CHANGELOG.md) |
106-
| `@tymber/openapi` | The OpenAPI module | [`0.0.1`](packages/openapi/CHANGELOG.md) |
106+
| `@tymber/openapi` | The OpenAPI module | [`0.1.0`](packages/openapi/CHANGELOG.md) |
107+
| `@tymber/config` | The config module | [`0.1.0`](packages/config/CHANGELOG.md) |
107108

108109
## License
109110

packages/config/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
| Release | Date |
4+
|--------------------------|------------|
5+
| [0.1.0](#010-2026-03-27) | March 2026 |
6+
7+
8+
## 0.1.0 (2026-03-27)
9+
10+
Initial release!

packages/config/README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<h1>Config module of the Tymber framework</h1>
2+
3+
The config module.
4+
5+
**Table of contents**
6+
7+
<!-- TOC -->
8+
* [Installation](#installation)
9+
* [Usage](#usage)
10+
* [License](#license)
11+
<!-- TOC -->
12+
13+
## Installation
14+
15+
```
16+
npm i @tymber/config
17+
```
18+
19+
## Usage
20+
21+
```ts
22+
import { ConfigModule } from "@tymber/config";
23+
24+
const app = await App.create({
25+
components: [db],
26+
modules: [ConfigModule]
27+
});
28+
```
29+
30+
## License
31+
32+
[MIT](./LICENSE)

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tymber/config",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "Config module for the Tymber framework",
55
"license": "MIT",
66
"author": "Damien ARRACHEQUESNE",

packages/config/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { RevertToRevision } from "./admin-endpoints/RevertToRevision.js";
77

88
export const ConfigModule: Module = {
99
name: "@tymber/config",
10-
version: "0.0.1",
10+
version: "0.1.0",
1111

1212
adminSidebarItems: [],
1313
assetsDir: FS.join(import.meta.dirname, "..", "assets"),

0 commit comments

Comments
 (0)