Skip to content

Commit 8ffe825

Browse files
authored
Merge pull request #247 from SolidLabResearch/development
Merge for release v2.2.1
2 parents 258ead6 + 0ff09b0 commit 8ffe825

File tree

10 files changed

+35
-16
lines changed

10 files changed

+35
-16
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.2.1] - 2025-10-30
11+
12+
### Added
13+
14+
- Added a top level package.json (#246).
15+
1016
## [2.2.0] - 2025-10-30
1117

1218
### Changed
@@ -299,4 +305,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
299305
[2.1.0]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/releases/tag/v2.1.0
300306
[2.1.1]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/releases/tag/v2.1.1
301307
[2.2.0]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/releases/tag/v2.2.0
302-
[Unreleased]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/compare/v2.2.0...HEAD
308+
[2.2.1]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/releases/tag/v2.2.1
309+
[Unreleased]: https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/compare/v2.2.1...HEAD

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@ The instructions below explain when and how to use the `select-config.cjs` scrip
6565

6666
## Getting started
6767

68-
The Web application is located in directory `main`.
69-
Go to that directory.
70-
7168
To install:
7269

7370
```bash
7471
npm install
7572
```
7673

74+
The Web application is located in directory `main`.
75+
Go to that directory.
76+
7777
To select the appropriate configuration (here shown for `demo`):
7878

7979
```bash
@@ -104,12 +104,6 @@ Resources:
104104

105105
Go to directory `test`.
106106

107-
To install, execute:
108-
109-
```bash
110-
npm install
111-
```
112-
113107
Spin up resources:
114108

115109
```bash

main/package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "miravi-a-linked-data-viewer",
33
"private": true,
4-
"version": "1.0.0",
54
"type": "module",
65
"scripts": {
76
"dev": "vite",

main/src/components/ListResultTable/QueryResultList/QueryResultList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function strip(obj, level = 0) {
150150
if (level === 0 && k === 'id') {
151151
// skip id at top level
152152
} else if (level === 1 && k === 'datatype' && v && typeof v === 'object') {
153-
// remove x.datatype.termType; promote x.datatype.value to x.datatype
153+
// remove x.datatype.termType
154154
const { termType, ...rest } = v;
155155
result[k] = strip(rest, level + 1);
156156
} else {

main/src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Maintain the version string on the development branch:
22
// - during development: set to (unreleased);
33
// - right before merging to the main branch for making a new release: set to the new release tag (see https://github.com/SolidLabResearch/miravi-a-linked-data-viewer/tags).
4-
const version = "v2.2.0";
4+
const version = "v2.2.1";
55
export default version;

package-lock.json

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "miravi-a-linked-data-viewer-top-level",
3+
"description": "Miravi - a linked data viewer",
4+
"private": true,
5+
"license": "MIT",
6+
"author": "Martin Vanbrabant",
7+
"scripts": {
8+
"postinstall": "cd main && npm install && cd ../test && npm install"
9+
}
10+
}

test/package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "tools-for-miravi-a-linked-data-viewer",
33
"private": true,
4-
"version": "1.0.0",
54
"type": "module",
65
"scripts": {
76
"serve": "bash scripts/prepare-dir-to-serve.sh && http-server -p 5173 serve-this",

0 commit comments

Comments
 (0)