@calibur/skr-template
Advanced tools
Comparing version 0.0.23-alpha.0 to 0.0.24-alpha.0
@@ -41,3 +41,3 @@ { | ||
"dotenv": "^<%= dotenv %>", | ||
"eslint": "^7", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^<%= eslint-config-prettier %>", | ||
@@ -44,0 +44,0 @@ "ethereum-waffle": "^<%= ethereum-waffle %>", |
{ | ||
"name": "@calibur/skr-template", | ||
"version": "0.0.23-alpha.0", | ||
"version": "0.0.24-alpha.0", | ||
"author": "falstack <icesilt@outlook.com>", | ||
"license": "MIT", | ||
"gitHead": "66bf569c736022435dacf37339648301b96b8927" | ||
"gitHead": "0fe3cd5c70165f46dfb55693d4fe8f237daf773b" | ||
} |
@@ -1,2 +0,7 @@ | ||
const generateCurrentTime = async () => { | ||
const init = async (opts) => { | ||
console.log('this hook called before check version', opts); | ||
} | ||
const copy = async (opts) => { | ||
console.log('this hook called before copy files', opts); | ||
return { | ||
@@ -7,2 +12,10 @@ currentTime: Date.now() | ||
module.exports = generateCurrentTime | ||
const done = async (opts) => { | ||
console.log('this hook called after copy files', opts); | ||
} | ||
module.exports = { | ||
init, | ||
copy, | ||
done | ||
} |
import { createApp } from 'vue' | ||
import App from './App.vue' | ||
createApp(App).mount('#app') | ||
const app = createApp(App) | ||
app.mount('#app') |
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
46985
830