mime-bytes 0.3.7 → 0.3.9

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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +8 -9
package/README.md CHANGED
@@ -352,6 +352,8 @@ 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
+ ---
356
+
355
357
  ## Education and Tutorials
356
358
 
357
359
  1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
@@ -425,4 +427,4 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
425
427
 
426
428
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
427
429
 
428
- No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
430
+ No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "mime-bytes",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
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",
7
7
  "module": "esm/index.js",
8
8
  "types": "index.d.ts",
9
9
  "homepage": "https://github.com/launchql/launchql",
10
- "license": "SEE LICENSE IN LICENSE",
10
+ "license": "MIT",
11
11
  "publishConfig": {
12
12
  "access": "public",
13
13
  "directory": "dist"
@@ -20,19 +20,18 @@
20
20
  "url": "https://github.com/launchql/launchql/issues"
21
21
  },
22
22
  "scripts": {
23
- "copy": "copyfiles -f ../../LICENSE README.md package.json dist",
24
- "clean": "rimraf dist/**",
23
+ "clean": "makage clean",
25
24
  "prepack": "npm run build",
26
- "build": "npm run clean; tsc -p tsconfig.json; tsc -p tsconfig.esm.json; npm run copy",
27
- "build:dev": "npm run clean; tsc -p tsconfig.json --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
25
+ "build": "makage build",
26
+ "build:dev": "makage build --dev",
28
27
  "lint": "eslint . --fix",
29
28
  "test": "jest",
30
29
  "test:watch": "jest --watch"
31
30
  },
32
31
  "keywords": [],
33
32
  "devDependencies": {
34
- "@types/glob": "^8.1.0",
35
- "glob": "^11.0.2"
33
+ "glob": "^13.0.0",
34
+ "makage": "^0.1.6"
36
35
  },
37
- "gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
36
+ "gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
38
37
  }