Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ferreira-tb committed May 9, 2024
1 parent c2e7d81 commit 736b0df
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 69 deletions.
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "@tb-dev/utility-types",
"version": "1.2.7",
"version": "1.3.0",
"description": "Utility types for Typescript",
"license": "MIT",
"type": "module",
"private": false,
"packageManager": "pnpm@9.0.6",
"packageManager": "pnpm@9.1.0",
"homepage": "https://tb.dev.br/utility-types/",
"author": {
"name": "Andrew Ferreira",
Expand Down Expand Up @@ -33,24 +33,25 @@
"format": "prettier . --write",
"format-check": "prettier . --check",
"lint": "eslint . --config eslint.config.js --cache",
"lint-fix": "eslint . --config eslint.config.js --fix",
"prepare": "husky",
"release": "pnpm run build && pnpm publish",
"type-check": "tsc --noEmit",
"update": "miho update major -t"
},
"devDependencies": {
"@tb-dev/eslint-config": "^3.4.0",
"@types/node": "^20.12.7",
"@tb-dev/eslint-config": "^3.5.1",
"@types/node": "^20.12.11",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"typedoc": "^0.25.13",
"typedoc-plugin-mdn-links": "^3.1.23",
"typedoc-plugin-mdn-links": "^3.1.24",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.9.0"
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1"
},
"files": [
"dist"
Expand Down
78 changes: 39 additions & 39 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 0 additions & 20 deletions src/dom.ts

This file was deleted.

2 changes: 0 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
export type * from './dom';

export type ExtractPartial<T, K extends keyof T> = Partial<T>[K];

export type ExtractRequired<T, K extends keyof T> = Required<T>[K];
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { resolve } from 'node:path';
import dts from 'vite-plugin-dts';
import { resolve } from 'node:path';
import { defineConfig } from 'vite';

export default defineConfig({
Expand Down

0 comments on commit 736b0df

Please sign in to comment.