bytekit 0.2.5 → 0.2.7
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 +5 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -289,7 +289,7 @@ function Users() {
|
|
|
289
289
|
}
|
|
290
290
|
```
|
|
291
291
|
|
|
292
|
-
**[📖 Full React Guide](./docs/examples/react.md)** • **[💻 Working Example](./examples/react-app)**
|
|
292
|
+
**[📖 Full React Guide](./docs/examples/react.md)** • **[💻 Working Example](./examples/react-app)** • **[🚀 Try on CodeSandbox](https://codesandbox.io/p/devbox/bytekit-react-example-gr2k2j)**
|
|
293
293
|
|
|
294
294
|
#### Vue 3
|
|
295
295
|
|
|
@@ -311,7 +311,7 @@ onMounted(async () => {
|
|
|
311
311
|
</template>
|
|
312
312
|
```
|
|
313
313
|
|
|
314
|
-
**[📖 Full Vue Guide](./docs/examples/vue.md)** • **[💻 Working Example](./examples/vue-app)**
|
|
314
|
+
**[📖 Full Vue Guide](./docs/examples/vue.md)** • **[💻 Working Example](./examples/vue-app)** • **[🚀 Try on CodeSandbox](https://codesandbox.io/p/devbox/df26fs)**
|
|
315
315
|
|
|
316
316
|
#### Svelte
|
|
317
317
|
|
|
@@ -333,7 +333,7 @@ onMounted(async () => {
|
|
|
333
333
|
{/each}
|
|
334
334
|
```
|
|
335
335
|
|
|
336
|
-
**[📖 Full Svelte Guide](./docs/examples/svelte.md)** • **[💻 Working Example](./examples/svelte-app)**
|
|
336
|
+
**[📖 Full Svelte Guide](./docs/examples/svelte.md)** • **[💻 Working Example](./examples/svelte-app)** • **[🚀 Try on CodeSandbox](https://codesandbox.io/p/devbox/lxvghg)**
|
|
337
337
|
|
|
338
338
|
### 🚀 Try the Examples / Probá los Ejemplos
|
|
339
339
|
|
|
@@ -2347,26 +2347,13 @@ npm run build
|
|
|
2347
2347
|
|
|
2348
2348
|
### Testing TypeScript Compatibility / Testeando Compatibilidad
|
|
2349
2349
|
|
|
2350
|
-
**EN:** Run the
|
|
2351
|
-
**ES:** Ejecutá
|
|
2350
|
+
**EN:** Run the test suite to verify TypeScript compatibility:
|
|
2351
|
+
**ES:** Ejecutá la suite de tests para verificar compatibilidad con TypeScript:
|
|
2352
2352
|
|
|
2353
2353
|
```bash
|
|
2354
|
-
# Run compatibility tests
|
|
2355
|
-
node .kiro/test-ts-compat.js
|
|
2356
|
-
|
|
2357
|
-
# Or run full test suite
|
|
2358
2354
|
npm run test
|
|
2359
2355
|
```
|
|
2360
2356
|
|
|
2361
|
-
### Detailed Compatibility Guide / Guía Detallada de Compatibilidad
|
|
2362
|
-
|
|
2363
|
-
**EN:** For detailed information about TypeScript compatibility, see:
|
|
2364
|
-
**ES:** Para información detallada sobre compatibilidad con TypeScript, ver:
|
|
2365
|
-
|
|
2366
|
-
- `.kiro/TYPESCRIPT_COMPATIBILITY.md` - Full compatibility matrix and migration paths
|
|
2367
|
-
- `.kiro/MULTI_VERSION_TEST_REPORT.md` - Detailed test results and performance metrics
|
|
2368
|
-
- `.kiro/TYPESCRIPT_TESTING_SUMMARY.md` - Summary of testing methodology
|
|
2369
|
-
|
|
2370
2357
|
## Migration from @sebamar88/utils / Migración desde @sebamar88/utils
|
|
2371
2358
|
|
|
2372
2359
|
**EN:** If you were using `@sebamar88/utils`, simply update your package name to `bytekit`. No code changes are required—all APIs remain the same.
|