@jmlweb/tsup-config-base 1.1.0 → 1.1.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/CHANGELOG.md +12 -0
- package/README.md +27 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @jmlweb/tsup-config-base
|
|
2
2
|
|
|
3
|
+
## 1.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6b73301: Add changelog section with link to CHANGELOG.md in package READMEs
|
|
8
|
+
|
|
9
|
+
## 1.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 21918eb: Standardize repository field format to object format across all packages and configure syncpack to preserve it.
|
|
14
|
+
|
|
3
15
|
## 1.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
npm install --save-dev @jmlweb/tsup-config-base tsup
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
+
> 💡 **Upgrading from a previous version?** See the [Migration Guide](#-migration-guide) for breaking changes and upgrade instructions.
|
|
27
|
+
|
|
26
28
|
## 🚀 Quick Start
|
|
27
29
|
|
|
28
30
|
Create a `tsup.config.ts` file in your project root:
|
|
@@ -337,11 +339,36 @@ This package requires the following peer dependency:
|
|
|
337
339
|
|
|
338
340
|
## 🔗 Related Packages
|
|
339
341
|
|
|
342
|
+
### Internal Packages
|
|
343
|
+
|
|
340
344
|
- [`@jmlweb/eslint-config-base`](../eslint-config-base) - ESLint config for TypeScript projects
|
|
341
345
|
- [`@jmlweb/prettier-config-base`](../prettier-config-base) - Prettier config for consistent formatting
|
|
342
346
|
- [`@jmlweb/tsconfig-base`](../tsconfig-base) - TypeScript configuration
|
|
343
347
|
- [`@jmlweb/vitest-config`](../vitest-config) - Vitest configuration for testing
|
|
344
348
|
|
|
349
|
+
### External Tools
|
|
350
|
+
|
|
351
|
+
- [tsup](https://tsup.egoist.dev/) - Bundle TypeScript libraries with zero config
|
|
352
|
+
- [esbuild](https://esbuild.github.io/) - Extremely fast JavaScript bundler (used by tsup)
|
|
353
|
+
- [TypeScript](https://www.typescriptlang.org/) - JavaScript with syntax for types
|
|
354
|
+
- [Rollup](https://rollupjs.org/) - Alternative bundler for complex configurations
|
|
355
|
+
|
|
356
|
+
## 🔄 Migration Guide
|
|
357
|
+
|
|
358
|
+
### Upgrading to a New Version
|
|
359
|
+
|
|
360
|
+
> **Note:** If no breaking changes were introduced in a version, it's safe to upgrade without additional steps.
|
|
361
|
+
|
|
362
|
+
**No breaking changes have been introduced yet.** This package follows semantic versioning. When breaking changes are introduced, detailed migration instructions will be provided here.
|
|
363
|
+
|
|
364
|
+
For version history, see the [Changelog](./CHANGELOG.md).
|
|
365
|
+
|
|
366
|
+
**Need Help?** If you encounter issues during migration, please [open an issue](https://github.com/jmlweb/tooling/issues/new).
|
|
367
|
+
|
|
368
|
+
## 📜 Changelog
|
|
369
|
+
|
|
370
|
+
See [CHANGELOG.md](./CHANGELOG.md) for version history and release notes.
|
|
371
|
+
|
|
345
372
|
## 📄 License
|
|
346
373
|
|
|
347
374
|
MIT
|