Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Uninen committed Apr 13, 2024
1 parent a71cb62 commit 578e6bc
Show file tree
Hide file tree
Showing 3 changed files with 552 additions and 424 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### 0.2.0 - 2024-04-13

- fix: upgrade Vite configs
- chore: bump deps

### 0.1.3 - 2023-07-17

- fix: trigger releases on publish
Expand Down
27 changes: 14 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "@slipmatio/logger",
"version": "0.1.3",
"version": "0.2.0",
"type": "module",
"description": "Better console logging with TypScript support",
"main": "dist/index.js",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"author": {
Expand Down Expand Up @@ -39,18 +40,18 @@
],
"license": "MIT",
"devDependencies": {
"@playwright/test": "1.43.0",
"@types/node": "20.12.5",
"@playwright/test": "1.43.1",
"@types/node": "20.12.7",
"@vitejs/plugin-vue": "5.0.4",
"@vitest/coverage-v8": "1.4.0",
"@vitest/coverage-v8": "1.5.0",
"@vue/test-utils": "2.4.5",
"happy-dom": "14.6.1",
"typescript": "5.4.4",
"happy-dom": "14.7.1",
"typescript": "5.4.5",
"vite": "5.2.8",
"vite-plugin-dts": "3.2.0",
"vitest": "1.4.0",
"vite-plugin-dts": "3.8.2",
"vitest": "1.5.0",
"vue": "3.4.21",
"vue-tsc": "2.0.10"
"vue-tsc": "2.0.13"
},
"peerDependencies": {
"vue": "3"
Expand Down
Loading

0 comments on commit 578e6bc

Please sign in to comment.