@naturalcycles/js-lib 15.47.0 → 15.47.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/dist/semver.js CHANGED
@@ -58,7 +58,6 @@ export class Semver {
58
58
  class SemverFactory {
59
59
  fromInput(input) {
60
60
  const s = this.fromInputOrUndefined(input);
61
- // oxlint-disable-next-line typescript/restrict-template-expressions
62
61
  _assert(s, `Cannot parse "${input}" into Semver`, {
63
62
  input,
64
63
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/js-lib",
3
3
  "type": "module",
4
- "version": "15.47.0",
4
+ "version": "15.47.1",
5
5
  "dependencies": {
6
6
  "tslib": "^2",
7
7
  "undici": "^7",
@@ -13,7 +13,7 @@
13
13
  "@types/semver": "^7",
14
14
  "crypto-js": "^4",
15
15
  "dayjs": "^1",
16
- "@naturalcycles/dev-lib": "18.4.2"
16
+ "@naturalcycles/dev-lib": "20.11.1"
17
17
  },
18
18
  "exports": {
19
19
  ".": "./dist/index.js",
package/src/semver.ts CHANGED
@@ -68,7 +68,6 @@ class SemverFactory {
68
68
  fromInput(input: SemverInput): Semver {
69
69
  const s = this.fromInputOrUndefined(input)
70
70
 
71
- // oxlint-disable-next-line typescript/restrict-template-expressions
72
71
  _assert(s, `Cannot parse "${input}" into Semver`, {
73
72
  input,
74
73
  })