@eik/common 3.0.0 → 3.0.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [3.0.1](https://github.com/eik-lib/common/compare/v3.0.0...v3.0.1) (2022-05-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency glob to v8 ([#225](https://github.com/eik-lib/common/issues/225)) ([fd01a56](https://github.com/eik-lib/common/commit/fd01a566b404164bdc847cc7a1803b124e131e41))
7
+ * **deps:** update dependency validate-npm-package-name to v4 ([#222](https://github.com/eik-lib/common/issues/222)) ([c3721ab](https://github.com/eik-lib/common/commit/c3721abf058c93d4e500945c3c014c748c1f2acd))
8
+
1
9
  # [3.0.0](https://github.com/eik-lib/common/compare/v2.0.3...v3.0.0) (2021-08-12)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/common",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Common utilities for Eik modules",
5
5
  "main": "lib/index.js",
6
6
  "types": "types/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "eikjson.d.ts"
13
13
  ],
14
14
  "scripts": {
15
- "test": "tap --test-regex=.test.js --test-ignore=node_modules",
15
+ "test": "tap --no-check-coverage",
16
16
  "lint:fix": "eslint --fix .",
17
17
  "lint": "eslint .",
18
18
  "schema:types": "json2ts lib/schemas/eikjson.schema.json > eikjson.d.ts",
@@ -36,33 +36,29 @@
36
36
  "dependencies": {
37
37
  "ajv": "^8.6.2",
38
38
  "ajv-formats": "^2.1.0",
39
- "glob": "^7.1.6",
39
+ "glob": "^8.0.0",
40
40
  "is-glob": "^4.0.1",
41
41
  "mime-types": "^2.1.29",
42
42
  "node-fetch": "^2.6.1",
43
43
  "semver": "^7.0.0",
44
- "validate-npm-package-name": "^3.0.0"
44
+ "validate-npm-package-name": "^4.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@hapi/hapi": "^20.1.0",
48
- "@semantic-release/changelog": "5.0.1",
49
- "@semantic-release/commit-analyzer": "8.0.1",
50
- "@semantic-release/git": "9.0.0",
51
- "@semantic-release/github": "7.2.3",
52
- "@semantic-release/npm": "7.1.3",
53
- "@semantic-release/release-notes-generator": "9.0.3",
47
+ "@hapi/hapi": "20.2.2",
48
+ "@semantic-release/changelog": "6.0.1",
49
+ "@semantic-release/git": "10.0.1",
54
50
  "eslint": "7.32.0",
55
51
  "eslint-config-airbnb-base": "14.2.1",
56
- "eslint-config-prettier": "8.3.0",
57
- "eslint-plugin-import": "2.24.0",
58
- "eslint-plugin-prettier": "3.4.0",
59
- "express": "4.17.1",
60
- "fastify": "3.20.1",
61
- "json-schema-to-typescript": "^10.1.3",
62
- "prettier": "2.3.2",
63
- "semantic-release": "17.4.4",
52
+ "eslint-config-prettier": "8.4.0",
53
+ "eslint-plugin-import": "2.25.4",
54
+ "eslint-plugin-prettier": "4.0.0",
55
+ "express": "4.18.1",
56
+ "fastify": "3.29.0",
57
+ "json-schema-to-typescript": "10.1.5",
58
+ "prettier": "2.5.1",
59
+ "semantic-release": "18.0.1",
64
60
  "stoppable": "1.1.0",
65
- "tap": "14.11.0",
66
- "typescript": "^4.3.5"
61
+ "tap": "15.1.6",
62
+ "typescript": "4.6.4"
67
63
  }
68
64
  }
@@ -10,5 +10,6 @@ declare const ReadFile: {
10
10
  readonly mimeType: string;
11
11
  stream: any;
12
12
  readonly etag: string;
13
+ readonly [Symbol.toStringTag]: string;
13
14
  };
14
15
  };