@wrelik/errors 0.2.0 → 0.2.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @wrelik/errors@0.2.0 build /home/runner/work/wrelik-kit/wrelik-kit/packages/errors
2
+ > @wrelik/errors@0.2.1 build /home/runner/work/wrelik-kit/wrelik-kit/packages/errors
3
3
  > tsup src/node.ts src/browser.ts src/react-native.ts --format cjs,esm --dts --clean
4
4
 
5
5
  CLI Building entry: src/browser.ts, src/node.ts, src/react-native.ts
@@ -9,43 +9,17 @@
9
9
  CLI Cleaning output folder
10
10
  CJS Build start
11
11
  ESM Build start
12
- [warn] ▲ [WARNING] Duplicate key "skipLibCheck" in object literal [duplicate-object-key]
13
-
14
- tsconfig.json:5:4:
15
-  5 │ "skipLibCheck": true
16
- ╵ ~~~~~~~~~~~~~~
17
-
18
- The original key "skipLibCheck" is here:
19
-
20
- tsconfig.json:4:22:
21
-  4 │ "outDir": "dist", "skipLibCheck": true,
22
- ╵ ~~~~~~~~~~~~~~
23
-
24
-
25
- [warn] ▲ [WARNING] Duplicate key "skipLibCheck" in object literal [duplicate-object-key]
26
-
27
- tsconfig.json:5:4:
28
-  5 │ "skipLibCheck": true
29
- ╵ ~~~~~~~~~~~~~~
30
-
31
- The original key "skipLibCheck" is here:
32
-
33
- tsconfig.json:4:22:
34
-  4 │ "outDir": "dist", "skipLibCheck": true,
35
- ╵ ~~~~~~~~~~~~~~
36
-
37
-
38
- CJS dist/node.js 3.84 KB
39
12
  CJS dist/browser.js 3.86 KB
13
+ CJS dist/node.js 3.84 KB
40
14
  CJS dist/react-native.js 3.90 KB
41
- CJS ⚡️ Build success in 70ms
42
- ESM dist/browser.mjs 895.00 B
15
+ CJS ⚡️ Build success in 56ms
43
16
  ESM dist/node.mjs 889.00 B
17
+ ESM dist/browser.mjs 895.00 B
44
18
  ESM dist/react-native.mjs 918.00 B
45
19
  ESM dist/chunk-EARDCOC4.mjs 1.34 KB
46
- ESM ⚡️ Build success in 69ms
20
+ ESM ⚡️ Build success in 60ms
47
21
  DTS Build start
48
- DTS ⚡️ Build success in 3543ms
22
+ DTS ⚡️ Build success in 3929ms
49
23
  DTS dist/browser.d.ts 432.00 B
50
24
  DTS dist/node.d.ts 432.00 B
51
25
  DTS dist/react-native.d.ts 475.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @wrelik/errors
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2b9cbf7: Fix auth role checks to reject malformed runtime role payloads and remove a duplicate TypeScript compiler option in errors to eliminate build warnings.
8
+
9
+ ## Unreleased
10
+
11
+ ### Patch Changes
12
+
13
+ - Remove duplicate `skipLibCheck` key from TypeScript config to eliminate build warnings.
14
+
3
15
  ## 0.2.0
4
16
 
5
17
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrelik/errors",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "extends": "@wrelik/tsconfig/node.json",
3
3
  "compilerOptions": {
4
- "outDir": "dist", "skipLibCheck": true,
4
+ "outDir": "dist",
5
5
  "skipLibCheck": true
6
6
  },
7
7
  "include": ["src"]