Prechádzať zdrojové kódy

assorted tweaks (#309)

* chore: test command

* feat: add solana pay to readme
Nick Frostbutter 1 mesiac pred
rodič
commit
a0b1405c1a
2 zmenil súbory, kde vykonal 7 pridanie a 4 odobranie
  1. 5 4
      README.md
  2. 2 0
      package.json

+ 5 - 4
README.md

@@ -42,10 +42,11 @@ You can find the gill library docs here:
 
 The following packages are published from within this repo, collectively known as the "gill sdk":
 
-| Package          | Description                                   | Version                                                                                                                       | Source                                                               |
-| :--------------- | :-------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------- |
-| `gill`           | SDK for building on the Solana blockchain     | [![npm](https://img.shields.io/npm/v/gill.svg?logo=npm&color=377CC0)](https://www.npmjs.com/package/gill)                     | [Source](https://github.com/gillsdk/gill/tree/master/packages/gill)  |
-| `@gillsdk/react` | React hooks library for the Solana blockchain | [![npm](https://img.shields.io/npm/v/@gillsdk/react.svg?logo=npm&color=377CC0)](https://www.npmjs.com/package/@gillsdk/react) | [Source](https://github.com/gillsdk/gill/tree/master/packages/react) |
+| Package               | Description                                   | Version                                                                                                                                 | Source                                                                    |
+| :-------------------- | :-------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
+| `gill`                | SDK for building on the Solana blockchain     | [![npm](https://img.shields.io/npm/v/gill.svg?logo=npm&color=377CC0)](https://www.npmjs.com/package/gill)                               | [Source](https://github.com/gillsdk/gill/tree/master/packages/gill)       |
+| `@gillsdk/react`      | React hooks library for the Solana blockchain | [![npm](https://img.shields.io/npm/v/@gillsdk/react.svg?logo=npm&color=377CC0)](https://www.npmjs.com/package/@gillsdk/react)           | [Source](https://github.com/gillsdk/gill/tree/master/packages/react)      |
+| `@gillsdk/solana-pay` | Modern Solana Pay protocol client library     | [![npm](https://img.shields.io/npm/v/@gillsdk/solana-pay.svg?logo=npm&color=377CC0)](https://www.npmjs.com/package/@gillsdk/solana-pay) | [Source](https://github.com/gillsdk/gill/tree/master/packages/solana-pay) |
 
 ## Development
 

+ 2 - 0
package.json

@@ -20,6 +20,8 @@
     "compile:docs": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} compile:docs",
     "test": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test",
     "test:typecheck": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:typecheck",
+    "test:unit:node": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:unit:node",
+    "test:unit:browser": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:unit:browser",
     "test:treeshakability:native": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:treeshakability:native",
     "test:treeshakability:browser": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:treeshakability:browser",
     "test:treeshakability:node": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:treeshakability:node",