topsyde-utils 1.0.4 → 1.0.5

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/README.md CHANGED
@@ -183,8 +183,9 @@ The build process is streamlined to perform several tasks in sequence:
183
183
 
184
184
  1. Clean the dist directory
185
185
  2. Generate index files
186
- 3. Format code with Prettier (using cache for performance)
187
- 4. Compile TypeScript
186
+ 3. Compile TypeScript using Bun's fast bundler
187
+ 4. Format generated index files
188
+ 5. Generate TypeScript declaration files
188
189
 
189
190
  To build the package:
190
191
 
@@ -192,13 +193,21 @@ To build the package:
192
193
  bun run build
193
194
  ```
194
195
 
196
+ For faster development builds (without type declarations or source maps):
197
+
198
+ ```bash
199
+ bun run build:fast
200
+ ```
201
+
195
202
  ### Development Scripts
196
203
 
197
204
  - `bun run clean` - Remove the dist directory
198
- - `bun run format` - Format TypeScript files with Prettier (using cache)
205
+ - `bun run format` - Format all TypeScript files with Prettier (using cache)
206
+ - `bun run format:generated` - Format only generated index files
199
207
  - `bun run lint` - Lint TypeScript files with ESLint (using cache)
200
208
  - `bun run test` - Run tests with Jest
201
209
  - `bun run generate-indexes` - Generate index files only
210
+ - `bun run build:fast` - Quick build for development (no type declarations)
202
211
 
203
212
  ### Publishing
204
213