@thi.ng/errors 2.0.1 → 2.0.6

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
@@ -3,6 +3,49 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@2.0.5...@thi.ng/errors@2.0.6) (2021-10-28)
7
+
8
+ **Note:** Version bump only for package @thi.ng/errors
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@2.0.4...@thi.ng/errors@2.0.5) (2021-10-28)
15
+
16
+ **Note:** Version bump only for package @thi.ng/errors
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@2.0.3...@thi.ng/errors@2.0.4) (2021-10-25)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * [#324](https://github.com/thi-ng/umbrella/issues/324) update snowpack issue workaround ([6dfbf71](https://github.com/thi-ng/umbrella/commit/6dfbf7120faaea7ef6af4f755e1a609cb49d902a)), closes [snowpackjs/snowpack#3621](https://github.com/snowpackjs/snowpack/issues/3621)
28
+
29
+
30
+
31
+
32
+
33
+ ## [2.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@2.0.2...@thi.ng/errors@2.0.3) (2021-10-15)
34
+
35
+ **Note:** Version bump only for package @thi.ng/errors
36
+
37
+
38
+
39
+
40
+
41
+ ## [2.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@2.0.1...@thi.ng/errors@2.0.2) (2021-10-15)
42
+
43
+ **Note:** Version bump only for package @thi.ng/errors
44
+
45
+
46
+
47
+
48
+
6
49
  ## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/errors@2.0.0...@thi.ng/errors@2.0.1) (2021-10-13)
7
50
 
8
51
  **Note:** Version bump only for package @thi.ng/errors
package/assert.js CHANGED
@@ -1,6 +1,4 @@
1
1
  import { defError } from "./deferror.js";
2
- // FIXME https://github.com/snowpackjs/snowpack/issues/3621#issuecomment-907731004
3
- import.meta.hot;
4
2
  export const AssertionError = defError(() => "Assertion failed");
5
3
  /**
6
4
  * Takes a `test` result or predicate function without args and throws
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/errors",
3
- "version": "2.0.1",
3
+ "version": "2.0.6",
4
4
  "description": "Custom error types and error factory functions",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,7 +34,7 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "devDependencies": {
37
- "@thi.ng/testament": "^0.1.1"
37
+ "@thi.ng/testament": "^0.1.6"
38
38
  },
39
39
  "keywords": [
40
40
  "assert",
@@ -84,5 +84,5 @@
84
84
  "thi.ng": {
85
85
  "year": 2018
86
86
  },
87
- "gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19"
87
+ "gitHead": "c17a556ad25f6882dfa8f806a1d9e8ed7ac7cd71"
88
88
  }