Comparing version 0.1.21 to 0.1.22
@@ -66,2 +66,6 @@ 'use strict'; | ||
async currentStdlib() { | ||
return this.currentDirectory().stdlib(); | ||
} | ||
async getImplementation(contractName) { | ||
@@ -68,0 +72,0 @@ const directory = this.currentDirectory(); |
@@ -13,2 +13,3 @@ 'use strict'; | ||
exports.parseJsonIfExists = parseJsonIfExists; | ||
exports.editJson = editJson; | ||
exports.writeJson = writeJson; | ||
@@ -52,2 +53,8 @@ | ||
function editJson(file, edit) { | ||
const data = this.parseJson(file); | ||
edit(data); | ||
this.writeJson(file, data); | ||
} | ||
function writeJson(filename, data) { | ||
@@ -65,4 +72,5 @@ const json = JSON.stringify(data, null, 2); | ||
parseJson, | ||
editJson, | ||
parseJsonIfExists, | ||
writeJson | ||
}; |
{ | ||
"name": "zos-lib", | ||
"version": "0.1.21", | ||
"version": "0.1.22", | ||
"description": "ZeppelinOS library", | ||
@@ -5,0 +5,0 @@ "scripts": { |
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
5696867
140936