klaim 1.6.13 → 1.6.15

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.
@@ -2,7 +2,7 @@ name: Auto Update & Release
2
2
 
3
3
  on:
4
4
  schedule:
5
- - cron: '0 0 * * 1'
5
+ - cron: '0 0 * * *'
6
6
  workflow_dispatch:
7
7
 
8
8
  jobs:
@@ -54,4 +54,4 @@ jobs:
54
54
  env:
55
55
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56
56
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
57
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
57
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
package/deno.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antharuu/klaim",
3
- "version": "1.6.13",
3
+ "version": "1.6.15",
4
4
  "description": "Klaim is a lightweight TypeScript library designed to manage APIs and record requests, optimized for an optimal user experience.",
5
5
  "repository": {
6
6
  "type": "git",
package/eslint.config.mjs CHANGED
@@ -46,9 +46,10 @@ export default tseslint.config(
46
46
  "@typescript-eslint/ban-ts-comment": "off",
47
47
  "@typescript-eslint/no-dynamic-delete": "off",
48
48
  "@typescript-eslint/no-namespace": "off",
49
- "@typescript-eslint/ no-empty-object-type": "off",
49
+ "@typescript-eslint/no-empty-object-type": "off",
50
50
  "@typescript-eslint/explicit-function-return-type": "error",
51
51
  "@typescript-eslint/consistent-indexed-object-style": "error",
52
+ "@typescript-eslint/no-unused-expressions": "error",
52
53
 
53
54
  // ----------------------------------------
54
55
  // ---------------------- Stylistic
@@ -202,8 +203,8 @@ export default tseslint.config(
202
203
  ],
203
204
  "dot-notation": "off",
204
205
  "no-underscore-dangle": "off",
205
- "func-style": ["error", "declaration"]
206
-
206
+ "func-style": ["error", "declaration"],
207
+ "no-unused-expressions": "off",
207
208
  }
208
209
  }
209
210
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klaim",
3
- "version": "1.6.13",
3
+ "version": "1.6.15",
4
4
  "author": "antharuu",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,22 +9,23 @@
9
9
  "main": "dist/klaim.cjs.js",
10
10
  "module": "dist/klaim.es.js",
11
11
  "devDependencies": {
12
- "@eslint/js": "^9.14.0",
13
- "@stylistic/eslint-plugin": "^2.10.1",
12
+ "@eslint/js": "9.15.0",
13
+ "@stylistic/eslint-plugin": "2.10.1",
14
14
  "@types/bun": "latest",
15
- "@types/eslint__js": "^8.42.3",
15
+ "@types/eslint__js": "8.42.3",
16
16
  "@types/node": "^22.9.0",
17
- "@vitest/coverage-v8": "^2.1.4",
18
- "@vitest/ui": "^2.1.4",
17
+ "@vitest/coverage-v8": "^2.1.5",
18
+ "@vitest/ui": "^2.1.5",
19
19
  "dotenv-cli": "^7.4.2",
20
- "eslint": "^9.14.0",
21
- "eslint-plugin-jsdoc": "^50.4.3",
22
- "eslint-plugin-simple-import-sort": "^12.1.1",
20
+ "eslint": "9.15.0",
21
+ "eslint-plugin-jsdoc": "50.5.0",
22
+ "eslint-plugin-simple-import-sort": "12.1.1",
23
23
  "jsdom": "^25.0.1",
24
24
  "release-it": "^17.10.0",
25
- "typescript-eslint": "^8.13.0",
26
- "vite": "^5.4.10",
27
- "vitest": "^2.1.4",
25
+ "typescript": "^5.6.3",
26
+ "typescript-eslint": "8.14.0",
27
+ "vite": "^5.4.11",
28
+ "vitest": "^2.1.5",
28
29
  "yup": "^1.4.0"
29
30
  },
30
31
  "bugs": {
@@ -54,5 +55,6 @@
54
55
  "release:major": "dotenv release-it -- major --config release-it.config.cjs --ci"
55
56
  },
56
57
  "type": "module",
57
- "types": "dist/index.d.ts"
58
+ "types": "dist/index.d.ts",
59
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
58
60
  }
@@ -21,7 +21,6 @@ module.exports = {
21
21
  hooks: {
22
22
  'before:init': [
23
23
  'git pull',
24
- 'npm run lint',
25
24
  'npm run build'
26
25
  ],
27
26
  'after:bump': [
@@ -29,4 +28,4 @@ module.exports = {
29
28
  'npx jsr publish --allow-dirty'
30
29
  ]
31
30
  }
32
- };
31
+ };