1
0
Fork 0

tada: First commit

This commit is contained in:
Joost De Cock 2018-08-11 12:41:00 +02:00
parent 4bf5995d5d
commit 8e473c635c
10 changed files with 4995 additions and 2 deletions

View file

@ -0,0 +1,20 @@
import { version, name } from "../package.json";
export default {
name: name,
version: version,
hooks: {
debug: function(next, d = "", e = "", b = "", u = "", g = "") {
console.log(
"%cDebug",
"color: #dd69dd; font-weight: bold",
d,
e,
b,
u,
g
);
next();
}
}
};