@alwatr/resolve-url 5.5.3 → 5.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## <small>5.5.4 (2025-04-15)</small>
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @alwatr/resolve-url
|
|
9
|
+
|
|
6
10
|
## [5.5.3](https://github.com/Alwatr/nanolib/compare/@alwatr/resolve-url@5.5.2...@alwatr/resolve-url@5.5.3) (2025-04-01)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @alwatr/resolve-url
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/resolve-url v5.5.
|
|
1
|
+
/* @alwatr/resolve-url v5.5.4 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -25,7 +25,7 @@ __export(main_exports, {
|
|
|
25
25
|
});
|
|
26
26
|
module.exports = __toCommonJS(main_exports);
|
|
27
27
|
var import_package_tracer = require("@alwatr/package-tracer");
|
|
28
|
-
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/resolve-url", "5.5.
|
|
28
|
+
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/resolve-url", "5.5.4");
|
|
29
29
|
function resolveUrl(...parts) {
|
|
30
30
|
if (parts.length === 0) {
|
|
31
31
|
return "";
|
package/dist/main.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/* @alwatr/resolve-url v5.5.
|
|
1
|
+
/* @alwatr/resolve-url v5.5.4 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { packageTracer } from "@alwatr/package-tracer";
|
|
5
|
-
__dev_mode__: packageTracer.add("@alwatr/resolve-url", "5.5.
|
|
5
|
+
__dev_mode__: packageTracer.add("@alwatr/resolve-url", "5.5.4");
|
|
6
6
|
function resolveUrl(...parts) {
|
|
7
7
|
if (parts.length === 0) {
|
|
8
8
|
return "";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/resolve-url",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.4",
|
|
4
4
|
"description": "A tiny TypeScript library to resolve URLs.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -67,15 +67,15 @@
|
|
|
67
67
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@alwatr/package-tracer": "^5.5.
|
|
70
|
+
"@alwatr/package-tracer": "^5.5.3"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@alwatr/nano-build": "^5.5.
|
|
73
|
+
"@alwatr/nano-build": "^5.5.3",
|
|
74
74
|
"@alwatr/prettier-config": "^5.0.0",
|
|
75
75
|
"@alwatr/tsconfig-base": "^5.0.0",
|
|
76
|
-
"@alwatr/type-helper": "^5.4.
|
|
76
|
+
"@alwatr/type-helper": "^5.4.1",
|
|
77
77
|
"jest": "^29.7.0",
|
|
78
|
-
"typescript": "^5.8.
|
|
78
|
+
"typescript": "^5.8.3"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "424a7a3e08e5f10fcfe53440d1cead68c88baf32"
|
|
81
81
|
}
|