@calibur/skr-template
Advanced tools
Comparing version 0.0.28-alpha.0 to 0.0.29-alpha.0
@@ -13,3 +13,3 @@ import * as dotenv from 'dotenv' | ||
const config: HardhatUserConfig = { | ||
solidity: '0.8.4', | ||
solidity: '<%= solc %>', | ||
gasReporter: { | ||
@@ -16,0 +16,0 @@ currency: 'USD', |
@@ -51,2 +51,3 @@ { | ||
"shx": "^<%= shx %>", | ||
"solc": "^<%= solc %>", | ||
"solhint": "^<%= solhint %>", | ||
@@ -53,0 +54,0 @@ "solhint-plugin-prettier": "^<%= solhint-plugin-prettier %>", |
{ | ||
"name": "@calibur/skr-template", | ||
"version": "0.0.28-alpha.0", | ||
"version": "0.0.29-alpha.0", | ||
"author": "falstack <icesilt@outlook.com>", | ||
"license": "MIT", | ||
"gitHead": "dd0ba0fba0e2945015f6786cf4a0ac99795abf2d" | ||
"gitHead": "a2a725e70d6421b112182fa6eb61353e4498b308" | ||
} |
@@ -1,7 +0,7 @@ | ||
const beforeCheckVersion = async (opts) => { | ||
// console.log('this hook called before check version', opts); | ||
const beforeCheckVersion = async (opts, axios) => { | ||
// console.log('this hook called before check version', opts, axios); | ||
} | ||
const afterCheckVersion = async (opts) => { | ||
// console.log('this hook called after check version', opts); | ||
const afterCheckVersion = async (opts, axios) => { | ||
// console.log('this hook called after check version', opts, axios); | ||
return { | ||
@@ -12,4 +12,4 @@ currentTime: Date.now() | ||
const beforeCopyFiles = async (opts, files) => { | ||
// console.log('this hook called before copy files', opts); | ||
const beforeCopyFiles = async (opts, files, axios) => { | ||
// console.log('this hook called before copy files', opts, axios); | ||
if (opts.isMonorepo) { | ||
@@ -20,4 +20,4 @@ return files.filter(_ => !_.startsWith('_')) | ||
const afterCopyFiles = async (opts) => { | ||
// console.log('this hook called after copy files', opts); | ||
const afterCopyFiles = async (opts, axios) => { | ||
// console.log('this hook called after copy files', opts, axios); | ||
} | ||
@@ -24,0 +24,0 @@ |
const beforeCopyFiles = async (opts, files) => { | ||
// console.log('this hook called before copy files', opts); | ||
if (opts.isMonorepo) { | ||
return files.filter(_ => !_.startsWith('.')) | ||
} | ||
return files.filter(_ => !_.startsWith('.')) | ||
} | ||
@@ -7,0 +5,0 @@ |
Sorry, the diff of this file is not supported yet
47543
845