@akadenia/helpers 1.10.0 → 1.11.0

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.
Files changed (2) hide show
  1. package/README.MD +4 -3
  2. package/package.json +7 -5
package/README.MD CHANGED
@@ -751,9 +751,9 @@ We welcome contributions! Please feel free to submit a Pull Request.
751
751
  ```bash
752
752
  git clone https://github.com/akadenia/AkadeniaHelpers.git
753
753
  cd AkadeniaHelpers
754
- npm install
755
- npm run build
756
- npm test
754
+ pnpm install
755
+ pnpm run build
756
+ pnpm test
757
757
  ```
758
758
 
759
759
  ### Commit Message Guidelines
@@ -776,3 +776,4 @@ type(scope): description
776
776
  ## License
777
777
 
778
778
  [MIT](LICENSE)
779
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akadenia/helpers",
3
- "version": "1.10.0",
3
+ "version": "1.11.0",
4
4
  "description": "Akadenia helpers",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,9 +13,9 @@
13
13
  "test": "jest",
14
14
  "format": "prettier --write \"./**/*.{ts,tsx,js,jsx,json,yml}\"",
15
15
  "lint": "prettier --check \"./**/*.{ts,tsx,js,jsx,json,yml}\"",
16
- "prepare": "npm run build",
16
+ "prepare": "pnpm run build",
17
17
  "version": "git add -A src",
18
- "updateLink": "npm run build && npm rm @akadenia/helpers -g && npm link",
18
+ "updateLink": "pnpm run build && pnpm rm -g @akadenia/helpers && pnpm add -g .",
19
19
  "generate:docs": "jsdoc2md dist/*.js"
20
20
  },
21
21
  "files": [
@@ -53,6 +53,8 @@
53
53
  "typescript": "^5.8.3"
54
54
  },
55
55
  "engines": {
56
- "node": ">=20.x"
57
- }
56
+ "node": ">=22.x",
57
+ "pnpm": ">=11.x"
58
+ },
59
+ "packageManager": "pnpm@11.9.0"
58
60
  }