Skip to content

Commit 98796f8

Browse files
committed
Merge branch 'release/0.1.1'
2 parents 87ad883 + 81dba28 commit 98796f8

File tree

3 files changed

+35
-2
lines changed

3 files changed

+35
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [0.1.0] - 2024-09-03
5+
## [0.1.1] - 2024-09-04
66

77
### 🚀 Features
88

@@ -25,6 +25,7 @@ All notable changes to this project will be documented in this file.
2525

2626
- Use shields.io for badges
2727
- Add instructions on how to temporary type a property added by a decorator
28+
- Bump to 0.1.0
2829

2930
### 🧪 Testing
3031

@@ -51,5 +52,16 @@ All notable changes to this project will be documented in this file.
5152
- Build with specific tsconfig.build
5253
- *(ts)* Add js extension for nodenext path resolution
5354
- [**breaking**] Switch to tsx to support ts out of the box
55+
- Add author field
56+
- Add main script
57+
- Add declaration file generation
58+
- Add MIT license
59+
- Add files section
60+
- Add package keywords
61+
62+
### Release
63+
64+
- Add version and rename to simplelog-decorator the npm
65+
- Upgrade version
5466

5567
<!-- generated by git-cliff -->

package.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
{
2-
"name": "simplelog",
2+
"name": "simplelog-decorator",
3+
"version": "0.1.1",
4+
"license": "MIT",
35
"type": "module",
6+
"author": {
7+
"email": "[email protected]",
8+
"name": "Mateo Sheshi",
9+
"url": "https://github.com/devsheva"
10+
},
11+
"main": "dist/logger.js",
12+
"types": "dist/logger.d.ts",
413
"description": "A simple logging library",
514
"devDependencies": {
615
"@vitest/coverage-v8": "^2.0.5",
@@ -10,6 +19,15 @@
1019
"typescript": "^5.5.4",
1120
"vitest": "^2.0.5"
1221
},
22+
"files": [
23+
"dist",
24+
"src"
25+
],
26+
"keywords": [
27+
"typescript",
28+
"nodejs",
29+
"decorators"
30+
],
1331
"scripts": {
1432
"start": "pnpm tsx src/index.ts",
1533
"dev": "pnpm tsx watch src/index.ts",

tsconfig.build.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"declaration": true
5+
},
36
"exclude": [
47
"spec/**/*.ts",
58
"test/**/*.ts"

0 commit comments

Comments
 (0)