using the plugin config module prefix
parent
3645479754
commit
fcd4cf7b35
|
@ -65,7 +65,7 @@ class SvgSpriteModule extends Module {
|
||||||
}
|
}
|
||||||
|
|
||||||
identifier() {
|
identifier() {
|
||||||
return "svg-sprite/" + this.configName;
|
return this.pluginConfig.modulePrefix + this.configName;
|
||||||
}
|
}
|
||||||
|
|
||||||
readableIdentifier() {
|
readableIdentifier() {
|
||||||
|
@ -73,7 +73,7 @@ class SvgSpriteModule extends Module {
|
||||||
}
|
}
|
||||||
|
|
||||||
libIdent() {
|
libIdent() {
|
||||||
return "svg-sprite/" + this.configName;
|
return this.pluginConfig.modulePrefix + this.configName;
|
||||||
}
|
}
|
||||||
|
|
||||||
needBuild(context, callback) {
|
needBuild(context, callback) {
|
||||||
|
|
Loading…
Reference in New Issue