Skip to content

Commit

Permalink
chore(release): v1.10.9 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Conventional Changelog Action committed Jul 1, 2024
1 parent 4684be1 commit dbfefd7
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 80 deletions.
19 changes: 10 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [1.10.9](https://github.com/TheNaubit/make-url/compare/v1.10.8...v1.10.9) (2024-07-01)


### Bug Fixes

* updated package.json file ([4684be1](https://github.com/TheNaubit/make-url/commit/4684be1703876d1a96b3df49ddd629bafc81c3e1))
* upgraded dependencies and migrated from eslint / prettier to biomejs ([b6bbaad](https://github.com/TheNaubit/make-url/commit/b6bbaad5dc537b8f98da4ceb1eb6a70953150758))



## [1.10.8](https://github.com/TheNaubit/make-url/compare/v1.10.7...v1.10.8) (2024-05-20)


Expand Down Expand Up @@ -34,12 +44,3 @@



## [1.10.4](https://github.com/TheNaubit/make-url/compare/v1.10.3...v1.10.4) (2024-04-07)


### Bug Fixes

* fix nullish coalescing operator usage in helpers.ts and vite.config.ts ([c841b39](https://github.com/TheNaubit/make-url/commit/c841b39af5499325281f8405b797486a80db7572))



2 changes: 1 addition & 1 deletion package-lock.json

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

142 changes: 72 additions & 70 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,72 +1,74 @@
{
"name": "@nauverse/make-url",
"description": "🪄 A tiny URL builder library for TypeScript.",
"author": {
"name": "Albert Adler | @albertadler",
"url": "https://albertadler.com"
},
"license": "MIT",
"homepage": "https://github.com/TheNaubit/make-url",
"repository": {
"type": "git",
"url": "https://github.com/TheNaubit/make-url.git"
},
"bugs": {
"url": "https://github.com/TheNaubit/make-url/issues"
},
"keywords": [
"url",
"builder",
"querystring",
"url-builder",
"query-string",
"uri",
"build",
"concat",
"concatenate",
"urlcat"
],
"version": "1.10.8",
"type": "module",
"main": "./dist/make-url.umd.cjs",
"module": "./dist/make-url.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/make-url.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/make-url.umd.cjs"
}
}
},
"files": ["dist"],
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --write",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.14.9",
"@vitest/coverage-v8": "1.6.0",
"husky": "9.0.11",
"typescript": "5.5.2",
"vite": "5.3.2",
"vite-plugin-dts": "3.9.1",
"vitest": "1.6.0"
},
"peerDependencies": {}
"name": "@nauverse/make-url",
"description": "🪄 A tiny URL builder library for TypeScript.",
"author": {
"name": "Albert Adler | @albertadler",
"url": "https://albertadler.com"
},
"license": "MIT",
"homepage": "https://github.com/TheNaubit/make-url",
"repository": {
"type": "git",
"url": "https://github.com/TheNaubit/make-url.git"
},
"bugs": {
"url": "https://github.com/TheNaubit/make-url/issues"
},
"keywords": [
"url",
"builder",
"querystring",
"url-builder",
"query-string",
"uri",
"build",
"concat",
"concatenate",
"urlcat"
],
"version": "1.10.9",
"type": "module",
"main": "./dist/make-url.umd.cjs",
"module": "./dist/make-url.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/make-url.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/make-url.umd.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "npx @biomejs/biome check",
"lint:fix": "npx @biomejs/biome check --write",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.14.9",
"@vitest/coverage-v8": "1.6.0",
"husky": "9.0.11",
"typescript": "5.5.2",
"vite": "5.3.2",
"vite-plugin-dts": "3.9.1",
"vitest": "1.6.0"
},
"peerDependencies": {}
}

0 comments on commit dbfefd7

Please sign in to comment.