Commit 03557885 authored by Ben Galloway's avatar Ben Galloway

Update README.md with scoped package name

parent c519e296
...@@ -5,7 +5,7 @@ A library of async JavaScript functions that make the corresponding calls to the ...@@ -5,7 +5,7 @@ A library of async JavaScript functions that make the corresponding calls to the
## Installation ## Installation
```bash ```bash
yarn add git+ssh://git@gscgit:utils/gammajs.git yarn add git+ssh://git@gitlab.gsc.org.uk:2222/gsc-libraries/gammajs.git
``` ```
## Config ## Config
...@@ -18,7 +18,7 @@ This library uses the `debug` module to provide debug logs. To turn this on, set ...@@ -18,7 +18,7 @@ This library uses the `debug` module to provide debug logs. To turn this on, set
```javascript ```javascript
// Simple example, with no error handling // Simple example, with no error handling
import { gammaResourceViewListLoad } from "gammajs"; import { gammaResourceViewListLoad } from "@gsc/gammajs";
(async () => { (async () => {
const resourceViews = await gammaResourceViewListLoad(); const resourceViews = await gammaResourceViewListLoad();
console.log(resourceViews); console.log(resourceViews);
...@@ -154,7 +154,7 @@ More complex nested objects are also parsed - for example, to make this call to ...@@ -154,7 +154,7 @@ More complex nested objects are also parsed - for example, to make this call to
you might use the following JavaScript: you might use the following JavaScript:
```javascript ```javascript
import { gammaBookingAllSave } from "gammajs"; import { gammaBookingAllSave } from "@gsc/gammajs";
const testBookingItem = { const testBookingItem = {
GammaInputType: "Booking", GammaInputType: "Booking",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment