mime-bytes 0.3.3 → 0.3.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 +25 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -352,6 +352,26 @@ 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
|
+
TypeScript-native testing for Supabase with modern workflows.
|
|
371
|
+
|
|
372
|
+
6. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
373
|
+
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
374
|
+
|
|
355
375
|
## Related LaunchQL Tooling
|
|
356
376
|
|
|
357
377
|
### 🧪 Testing
|
|
@@ -393,6 +413,11 @@ Contributions are welcome! Please feel free to submit a Pull Request. For major
|
|
|
393
413
|
* [@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
414
|
* [@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
415
|
|
|
416
|
+
## Credits
|
|
417
|
+
|
|
418
|
+
🛠 Built by LaunchQL — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/launchql)
|
|
419
|
+
|
|
420
|
+
|
|
396
421
|
## Disclaimer
|
|
397
422
|
|
|
398
423
|
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.5",
|
|
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",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
|
|
24
24
|
"clean": "rimraf dist/**",
|
|
25
|
-
"
|
|
25
|
+
"prepack": "npm run build",
|
|
26
26
|
"build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
|
|
27
27
|
"build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
|
|
28
28
|
"lint": "eslint . --fix",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"@types/glob": "^8.1.0",
|
|
35
35
|
"glob": "^11.0.2"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "25b59a1403d95d86be14bd36c94e5af1689df1c3"
|
|
38
38
|
}
|