mime-bytes 0.3.4 → 0.3.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 +28 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -352,6 +352,29 @@ Contributions are welcome! Please feel free to submit a Pull Request. For major
|
|
|
352
352
|
3. Add tests for the new file type
|
|
353
353
|
4. Submit a PR with a description of the format
|
|
354
354
|
|
|
355
|
+
## Education and Tutorials
|
|
356
|
+
|
|
357
|
+
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
358
|
+
Get started with modular databases in minutes. Install prerequisites and deploy your first module.
|
|
359
|
+
|
|
360
|
+
2. 📦 [Modular PostgreSQL Development with Database Packages](https://launchql.com/learn/modular-postgres)
|
|
361
|
+
Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
|
|
362
|
+
|
|
363
|
+
3. ✏️ [Authoring Database Changes](https://launchql.com/learn/authoring-database-changes)
|
|
364
|
+
Master the workflow for adding, organizing, and managing database changes with pgpm.
|
|
365
|
+
|
|
366
|
+
4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://launchql.com/learn/e2e-postgres-testing)
|
|
367
|
+
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
368
|
+
|
|
369
|
+
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
370
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
371
|
+
|
|
372
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
373
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
374
|
+
|
|
375
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
376
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
377
|
+
|
|
355
378
|
## Related LaunchQL Tooling
|
|
356
379
|
|
|
357
380
|
### 🧪 Testing
|
|
@@ -393,6 +416,11 @@ Contributions are welcome! Please feel free to submit a Pull Request. For major
|
|
|
393
416
|
* [@launchql/query-builder](https://github.com/launchql/launchql/tree/main/packages/query-builder): **🏗️ SQL constructor** providing a robust TypeScript-based query builder for dynamic generation of `SELECT`, `INSERT`, `UPDATE`, `DELETE`, and stored procedure calls—supports advanced SQL features like `JOIN`, `GROUP BY`, and schema-qualified queries.
|
|
394
417
|
* [@launchql/query](https://github.com/launchql/launchql/tree/main/packages/query): **🧩 Fluent GraphQL builder** for PostGraphile schemas. ⚡ Schema-aware via introspection, 🧩 composable and ergonomic for building deeply nested queries.
|
|
395
418
|
|
|
419
|
+
## Credits
|
|
420
|
+
|
|
421
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
422
|
+
|
|
423
|
+
|
|
396
424
|
## Disclaimer
|
|
397
425
|
|
|
398
426
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mime-bytes",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "Lightning-fast file type detection using magic bytes (file signatures) with a focus on stream processing and minimal memory usage",
|
|
6
6
|
"main": "index.js",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"@types/glob": "^8.1.0",
|
|
35
35
|
"glob": "^11.0.2"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
|
|
38
38
|
}
|