@d1g1tal/transportr 3.0.3 → 3.1.1
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 +22 -0
- package/package.json +11 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## [3.1.1](https://github.com/D1g1talEntr0py/transportr/compare/v3.1.0...v3.1.1) (2026-04-08)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* include iife bundles in npm package (d64205fd71c6ec184fe842bd24fe324d06fc5fb3)
|
|
6
|
+
* include iife bundles in npm package (a3247587b470e2628d43cbd1ad660e9039bae7a7)
|
|
7
|
+
|
|
8
|
+
## [3.1.0](https://github.com/D1g1talEntr0py/transportr/compare/v3.0.3...v3.1.0) (2026-04-08)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **build:** add script to generate IIFE bundles (41c0c295b363ad939c17b2d491658f7cfd49ef86)
|
|
13
|
+
Introduces a new build script that reads the ESM output in the dist directory and creates IIFE wrapped versions. Updating the package configurations ensures compatibility with older environments or script tag usage.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Miscellaneous Chores
|
|
17
|
+
|
|
18
|
+
* **deps:** update project dependencies (42e1910f0706158c43fea4f208fca8b22dbf5199)
|
|
19
|
+
Bumps `@typescript-eslint/eslint-plugin`, `@typescript-eslint/parser`, and related dependencies to the latest patch versions. Synchronizes the lockfile and workspace configurations accordingly.
|
|
20
|
+
|
|
21
|
+
* more fun with the lockfile (b8f25c3c87a5c091fd45975d4e2e659564652053)
|
|
22
|
+
|
|
1
23
|
## [3.0.3](https://github.com/D1g1talEntr0py/transportr/compare/v3.0.2...v3.0.3) (2026-04-07)
|
|
2
24
|
|
|
3
25
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d1g1tal/transportr",
|
|
3
3
|
"author": "D1g1talEntr0py",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "JavaScript wrapper for the Fetch API and more...",
|
|
7
7
|
"homepage": "https://github.com/D1g1talEntr0py/transportr#readme",
|
|
@@ -43,6 +43,10 @@
|
|
|
43
43
|
"./content-type": {
|
|
44
44
|
"types": "./dist/content-type.d.ts",
|
|
45
45
|
"import": "./dist/content-type.js"
|
|
46
|
+
},
|
|
47
|
+
"./iife/*": {
|
|
48
|
+
"types": "./dist/iife/*.d.ts",
|
|
49
|
+
"import": "./dist/iife/*.js"
|
|
46
50
|
}
|
|
47
51
|
},
|
|
48
52
|
"publishConfig": {
|
|
@@ -73,8 +77,8 @@
|
|
|
73
77
|
"@eslint/js": "^10.0.1",
|
|
74
78
|
"@types/jsdom": "^28.0.1",
|
|
75
79
|
"@types/node": "^25.5.2",
|
|
76
|
-
"@typescript-eslint/eslint-plugin": "^8.58.
|
|
77
|
-
"@typescript-eslint/parser": "^8.58.
|
|
80
|
+
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
81
|
+
"@typescript-eslint/parser": "^8.58.1",
|
|
78
82
|
"@vitest/coverage-v8": "^4.1.3",
|
|
79
83
|
"@vitest/ui": "^4.1.3",
|
|
80
84
|
"@xmldom/xmldom": "^0.9.9",
|
|
@@ -84,7 +88,7 @@
|
|
|
84
88
|
"globals": "^17.4.0",
|
|
85
89
|
"jsdom": "^29.0.2",
|
|
86
90
|
"typescript": "^6.0.2",
|
|
87
|
-
"typescript-eslint": "^8.58.
|
|
91
|
+
"typescript-eslint": "^8.58.1",
|
|
88
92
|
"vitest": "^4.1.3"
|
|
89
93
|
},
|
|
90
94
|
"browserslist": [
|
|
@@ -106,8 +110,9 @@
|
|
|
106
110
|
"TypeScript"
|
|
107
111
|
],
|
|
108
112
|
"scripts": {
|
|
109
|
-
"build": "tsbuild",
|
|
110
|
-
"build:
|
|
113
|
+
"build": "tsbuild && node scripts/build-iife.js",
|
|
114
|
+
"build:iife": "node scripts/build-iife.js",
|
|
115
|
+
"build:release": "tsbuild --minify --force && node scripts/build-iife.js",
|
|
111
116
|
"build:watch": "tsbuild --watch",
|
|
112
117
|
"type-check": "tsbuild --noEmit",
|
|
113
118
|
"lint": "eslint ./src",
|