1
0
Fork 0
freesewing/packages/plugin-bundle/src/index.js

21 lines
353 B
JavaScript
Raw Normal View History

2018-08-11 12:41:00 +02:00
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();
}
}
};