File tree Expand file tree Collapse file tree 3 files changed +35
-2
lines changed
Expand file tree Collapse file tree 3 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 22
33All 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 -->
Original file line number Diff line number Diff line change 11{
2- "name" : " simplelog" ,
2+ "name" : " simplelog-decorator" ,
3+ "version" : " 0.1.1" ,
4+ "license" : " MIT" ,
35 "type" : " module" ,
6+ "author" : {
7+ 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" ,
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" ,
Original file line number Diff line number Diff line change 11{
22 "extends" : " ./tsconfig.json" ,
3+ "compilerOptions" : {
4+ "declaration" : true
5+ },
36 "exclude" : [
47 " spec/**/*.ts" ,
58 " test/**/*.ts"
You can’t perform that action at this time.
0 commit comments