@eik/node-client
Advanced tools
Comparing version 1.0.0-next.5 to 1.0.0-next.6
@@ -0,1 +1,8 @@ | ||
# [1.0.0-next.6](https://github.com/eik-lib/node-client/compare/v1.0.0-next.5...v1.0.0-next.6) (2021-04-09) | ||
### Bug Fixes | ||
* Make default value of integrity to be undefined ([a679f73](https://github.com/eik-lib/node-client/commit/a679f733351413e5e59cbd0f71c86fef8a08042c)) | ||
# [1.0.0-next.5](https://github.com/eik-lib/node-client/compare/v1.0.0-next.4...v1.0.0-next.5) (2021-03-23) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@eik/node-client", | ||
"version": "1.0.0-next.5", | ||
"version": "1.0.0-next.6", | ||
"description": "A node.js client for interacting with a Eik server.", | ||
@@ -19,3 +19,3 @@ "type": "module", | ||
"scripts": { | ||
"test": "tap --no-esm test/*.js --no-coverage", | ||
"test": "tap test/*.js --no-coverage", | ||
"lint:fix": "eslint --fix .", | ||
@@ -52,2 +52,3 @@ "lint": "eslint .", | ||
"@semantic-release/release-notes-generator": "9.0.2", | ||
"babel-eslint": "10.1.0", | ||
"eslint": "7.21.0", | ||
@@ -58,8 +59,7 @@ "eslint-config-airbnb-base": "14.2.1", | ||
"eslint-plugin-prettier": "3.3.1", | ||
"babel-eslint": "10.1.0", | ||
"prettier": "2.2.1", | ||
"rollup": "2.40.0", | ||
"semantic-release": "17.4.1", | ||
"tap": "14.11.0" | ||
"tap": "15.0.2" | ||
} | ||
} |
@@ -141,3 +141,3 @@ # @eik/node-client | ||
Returns the image maps defined in Eik config from the Eik server. For the maps to be returned they need to be loaded from the Eik server. This is done by setting the `maps` option on the `.load()` method to `true`. | ||
Returns the import maps defined in Eik config from the Eik server. For the maps to be returned they need to be loaded from the Eik server. This is done by setting the `maps` option on the `.load()` method to `true`. | ||
@@ -144,0 +144,0 @@ ## License |
@@ -5,5 +5,5 @@ export default class Asset { | ||
} = {}) { | ||
this.integrity = null; | ||
this.integrity = undefined; | ||
this.value = value; | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16511