Skip to content

Commit

Permalink
🧰 [Dependency] Bumps for 05-04-2023 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
beefchimi authored Mar 5, 2023
1 parent 8b8c61c commit 0322cd4
Show file tree
Hide file tree
Showing 8 changed files with 209 additions and 5,177 deletions.
5 changes: 5 additions & 0 deletions .changeset/olive-tips-knock.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'emitten': patch
---

Simplify exported types.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"project": "./tsconfig.json"
},
"rules": {
"no-console": "warn",
"prettier/prettier": ["error"],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/consistent-indexed-object-style": [
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.12.0
18.14.2
4 changes: 4 additions & 0 deletions config/tests-setup.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import {beforeEach, afterEach} from 'vitest';

beforeEach(() => {});
afterEach(() => {});
5,349 changes: 184 additions & 5,165 deletions package-lock.json

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,27 +45,27 @@
"lint": "eslint 'src/**/*.{ts,tsx}'",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"coverage": "vitest --run --coverage",
"report": "changeset",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@vitest/coverage-c8": "^0.28.4",
"@vitest/ui": "^0.28.4",
"eslint": "^8.34.0",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@vitest/coverage-c8": "^0.29.2",
"@vitest/ui": "^0.29.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vite-plugin-dts": "^1.7.2",
"vitest": "^0.28.4"
"vite": "^4.1.4",
"vite-plugin-dts": "^2.0.2",
"vitest": "^0.29.2"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"noImplicitReturns": true,
"skipLibCheck": true
},
"include": ["./src/**/*", "./vite.config.ts"],
"include": ["./vite.config.ts", "./src/**/*", "./config/**/*"],
"exclude": ["./node_modules/**/*"]
}
5 changes: 4 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ export default defineConfig({
},
minify: false,
},
plugins: [dts()],
plugins: [dts({rollupTypes: true})],
test: {
setupFiles: 'config/tests-setup',
},
});

0 comments on commit 0322cd4

Please sign in to comment.