Skip to content

Commit

Permalink
Merge branch 'release/0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
devsheva committed Sep 4, 2024
2 parents 87ad883 + 81dba28 commit 98796f8
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

## [0.1.0] - 2024-09-03
## [0.1.1] - 2024-09-04

### 🚀 Features

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

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

### 🧪 Testing

Expand All @@ -51,5 +52,16 @@ All notable changes to this project will be documented in this file.
- Build with specific tsconfig.build
- *(ts)* Add js extension for nodenext path resolution
- [**breaking**] Switch to tsx to support ts out of the box
- Add author field
- Add main script
- Add declaration file generation
- Add MIT license
- Add files section
- Add package keywords

### Release

- Add version and rename to simplelog-decorator the npm
- Upgrade version

<!-- generated by git-cliff -->
20 changes: 19 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"name": "simplelog",
"name": "simplelog-decorator",
"version": "0.1.1",
"license": "MIT",
"type": "module",
"author": {
"email": "[email protected]",
"name": "Mateo Sheshi",
"url": "https://github.com/devsheva"
},
"main": "dist/logger.js",
"types": "dist/logger.d.ts",
"description": "A simple logging library",
"devDependencies": {
"@vitest/coverage-v8": "^2.0.5",
Expand All @@ -10,6 +19,15 @@
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"files": [
"dist",
"src"
],
"keywords": [
"typescript",
"nodejs",
"decorators"
],
"scripts": {
"start": "pnpm tsx src/index.ts",
"dev": "pnpm tsx watch src/index.ts",
Expand Down
3 changes: 3 additions & 0 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true
},
"exclude": [
"spec/**/*.ts",
"test/**/*.ts"
Expand Down

0 comments on commit 98796f8

Please sign in to comment.