Skip to content

Commit ac3e8c6

Browse files
committed
Removed "watch" setting, added contact details and bumped version
1 parent 67f2cea commit ac3e8c6

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ The Elsevier Data Architecture Linked Data Extension for Visual Studio Code brin
44

55
This extension depends on the [Stardog Languages Extension Pack](https://marketplace.visualstudio.com/items?itemName=stardog-union.vscode-stardog-languages) from Stardog Union
66

7+
For any questions, comments, please contact [Rinke Hoekstra](mailto:[email protected])
8+
79
## Features
810

911
The extension supports the following:
@@ -27,7 +29,7 @@ The extension supports the following:
2729

2830
You can also access the commands through the command palette: `Cmd-Shift-p` or `Ctrl-Shift-p` and then start typing "Linked Data".
2931

30-
## Screenshots
32+
<!-- ## Screenshots
3133
3234
### Conversion Between RDF Formats
3335
@@ -38,7 +40,7 @@ You can also access the commands through the command palette: `Cmd-Shift-p` or `
3840
![Visualization](media/img/jsonld_visualisation.png)
3941
4042
### SPARQL and SHAQL
41-
![Querying and Validation](media/img/shacl_and_sparql.png)
43+
![Querying and Validation](media/img/shacl_and_sparql.png) -->
4244

4345

4446
## Extension Settings

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
"name": "linked-data",
33
"displayName": "Linked Data Extension",
44
"publisher": "Elsevier",
5+
"author": {"name": "Rinke Hoekstra", "email": "[email protected]"},
56
"repository": "https://github.com/elsevierlabs-os/linked-data",
67
"description": "This extension provides shortcuts for standard Linked Data operations, format conversions, validation, querying and a graph visualization.",
7-
"version": "1.0.2",
8+
"version": "1.0.3",
89
"icon": "media/img/lde-icon.png",
910
"engines": {
1011
"vscode": "^1.59.0"

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const path = require('path');
33
module.exports = {
44
mode: 'production',
55
entry: './src/inspector.js',
6-
watch: true,
6+
watch: false,
77
output: {
88
filename: 'inspector.js',
99
path: path.resolve(__dirname, 'media'),

0 commit comments

Comments
 (0)