You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 7, 2025. It is now read-only.
When the installation finishes, the `@ogcio/ogcio-ds` package will be in your `node_modules` folder.
23
24
24
25
You should now get started by <Linkhref='?path=/docs/docs-get-started--docs'>getting the CSS, assets and JavaScript working</Link> with one gov.ie Frontend component.
26
+
27
+
## Update using Node.js package manager (npm)
28
+
29
+
You can update with Node.js package manager (npm) if you originally installed OGCIO-DS with npm (mentioned above).
30
+
31
+
### Find out which version you're using
32
+
33
+
To find out which version of OGCIO-DS your project is using, you can run:
34
+
35
+
```
36
+
npm list @ogcio/ogcio-ds
37
+
```
38
+
39
+
If you do not have command line access, you can see the version number in the `package.json` file in the root of your project directory. For example:
40
+
41
+
```json
42
+
"@ogcio/ogcio-ds": "0.0.8"
43
+
```
44
+
45
+
## Update OGCIO-DS using npm
46
+
47
+
To find out the latest version of OGCIO-DS, check the [release notes](https://github.com/ogcio/ogcio-ds/releases) in the OGCIO-DS GitHub repository.
48
+
49
+
You may need to make code changes to keep OGCIO-DS working in your project, if the major version number changes when you update. The major version number is the first digit in the version number.
50
+
51
+
To update to the most recent version, run:
52
+
53
+
```
54
+
npm install @ogcio/ogcio-ds@latest
55
+
```
56
+
57
+
If you want to install an earlier version, replace `latest` with the version that you want to update to. For example:
0 commit comments