@olane/o-config 0.8.2 → 0.8.4

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 +8 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -24,7 +24,7 @@ Pre-configured libp2p setup for Olane OS networking - batteries included, ready
24
24
  ### Installation
25
25
 
26
26
  ```bash
27
- npm install @olane/o-config
27
+ pnpm install @olane/o-config
28
28
  ```
29
29
 
30
30
  ### Create Your First libp2p Node
@@ -672,29 +672,29 @@ const node = await createNode({
672
672
 
673
673
  ```bash
674
674
  # Run all tests
675
- npm test
675
+ pnpm test
676
676
 
677
677
  # Node.js tests only
678
- npm run test:node
678
+ pnpm run test:node
679
679
 
680
680
  # Browser tests only
681
- npm run test:browser
681
+ pnpm run test:browser
682
682
  ```
683
683
 
684
684
  ## Development {#development}
685
685
 
686
686
  ```bash
687
687
  # Install dependencies
688
- npm install
688
+ pnpm install
689
689
 
690
690
  # Build the package
691
- npm run build
691
+ pnpm run build
692
692
 
693
693
  # Run in development mode
694
- npm run dev
694
+ pnpm run dev
695
695
 
696
696
  # Lint code
697
- npm run lint
697
+ pnpm run lint
698
698
  ```
699
699
 
700
700
  ## Related Packages {#related-packages}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olane/o-config",
3
- "version": "0.8.2",
3
+ "version": "0.8.4",
4
4
  "type": "module",
5
5
  "main": "dist/src/index.js",
6
6
  "types": "dist/src/index.d.ts",
@@ -78,5 +78,5 @@
78
78
  "libp2p": "^3.0.6",
79
79
  "uint8arraylist": "^2.4.8"
80
80
  },
81
- "gitHead": "9e35c874d849d051bcffe483fd2a8c2b3ecf68cc"
81
+ "gitHead": "b53623b1ad4365133911722f80d5597a72b65bf2"
82
82
  }