@git.zone/tsbundle 2.5.0 → 2.5.2
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/assets/tsconfig.json +2 -4
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/package.json +1 -1
- package/readme.md +14 -6
- package/ts/00_commitinfo_data.ts +1 -1
package/assets/tsconfig.json
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"module": "ES2020",
|
|
3
|
+
"target": "ES2022",
|
|
4
|
+
"module": "ES2022",
|
|
6
5
|
"moduleResolution": "node12",
|
|
7
|
-
"useDefineForClassFields": false,
|
|
8
6
|
"preserveValueImports": true,
|
|
9
7
|
"esModuleInterop": true
|
|
10
8
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@git.zone/tsbundle',
|
|
6
|
-
version: '2.5.
|
|
6
|
+
version: '2.5.2',
|
|
7
7
|
description: 'a multi-bundler tool supporting esbuild, rolldown, and rspack for painless bundling of web projects'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxvQkFBb0I7SUFDMUIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLHFHQUFxRztDQUNuSCxDQUFBIn0=
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -299,13 +299,21 @@ tsbundle works best with the following TypeScript configuration:
|
|
|
299
299
|
4. **Assets**: Place static assets in the `assets/` directory
|
|
300
300
|
5. **HTML**: Keep HTML templates in the `html/` directory
|
|
301
301
|
|
|
302
|
-
##
|
|
302
|
+
## License and Legal Information
|
|
303
303
|
|
|
304
|
-
|
|
304
|
+
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
|
|
305
305
|
|
|
306
|
-
|
|
306
|
+
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
|
307
307
|
|
|
308
|
-
|
|
309
|
-
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
|
308
|
+
### Trademarks
|
|
310
309
|
|
|
311
|
-
|
|
310
|
+
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
|
|
311
|
+
|
|
312
|
+
### Company Information
|
|
313
|
+
|
|
314
|
+
Task Venture Capital GmbH
|
|
315
|
+
Registered at District court Bremen HRB 35230 HB, Germany
|
|
316
|
+
|
|
317
|
+
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
|
318
|
+
|
|
319
|
+
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
|