componentsjs 5.0.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +3 -3
- package/index.js +5 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
<a name="v5.0.1"></a>
|
|
5
|
+
## [v5.0.1](https://github.com/LinkedSoftwareDependencies/Components.js/compare/v5.0.0...v5.0.1) - 2022-03-02
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
* [Bump to rdf-parse 2](https://github.com/LinkedSoftwareDependencies/Components.js/commit/5957c21d9ea0d8e6086be09d67ee99e64f8b2960)
|
|
9
|
+
|
|
4
10
|
<a name="v5.0.0"></a>
|
|
5
11
|
## [v5.0.0](https://github.com/LinkedSoftwareDependencies/Components.js/compare/v5.0.0-beta.7...v5.0.0) - 2022-03-01
|
|
6
12
|
|
package/README.md
CHANGED
|
@@ -80,7 +80,7 @@ export class MyClass {
|
|
|
80
80
|
```json
|
|
81
81
|
{
|
|
82
82
|
"@context": [
|
|
83
|
-
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^
|
|
83
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^5.0.0/components/context.jsonld",
|
|
84
84
|
"https://linkedsoftwaredependencies.org/bundles/npm/my-package/^2.0.0/components/context.jsonld"
|
|
85
85
|
],
|
|
86
86
|
"@id": "urn:my-package:myInstance",
|
|
@@ -132,7 +132,7 @@ export class MyClass {
|
|
|
132
132
|
```json
|
|
133
133
|
{
|
|
134
134
|
"@context": [
|
|
135
|
-
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^
|
|
135
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^5.0.0/components/context.jsonld",
|
|
136
136
|
{ "ex": "http://example.org/" }
|
|
137
137
|
],
|
|
138
138
|
"@id": "ex:MyPackage",
|
|
@@ -164,7 +164,7 @@ The constructor of `MyClass` takes a single `name` argument.
|
|
|
164
164
|
```json
|
|
165
165
|
{
|
|
166
166
|
"@context": [
|
|
167
|
-
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^
|
|
167
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^5.0.0/components/context.jsonld",
|
|
168
168
|
{
|
|
169
169
|
"ex": "http://example.org/",
|
|
170
170
|
"name": "ex:MyPackage/MyClass#name"
|
package/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "componentsjs",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "A semantic dependency injection framework",
|
|
5
5
|
"lsd:contexts": {
|
|
6
|
-
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^
|
|
6
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^5.0.0/components/context.jsonld": "components/context.jsonld"
|
|
7
7
|
},
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"bin": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"minimist": "^1.2.0",
|
|
42
42
|
"rdf-data-factory": "^1.1.0",
|
|
43
43
|
"rdf-object": "^1.13.1",
|
|
44
|
-
"rdf-parse": "^
|
|
44
|
+
"rdf-parse": "^2.0.0",
|
|
45
45
|
"rdf-quad": "^1.5.0",
|
|
46
46
|
"rdf-terms": "^1.7.0",
|
|
47
47
|
"semver": "^7.3.2",
|