Remove installer from release build script
This commit is contained in:
parent
946f68e4ef
commit
10fd25607d
|
@ -416,12 +416,13 @@ export default class PluginApi {
|
||||||
instead: this.patchInstead.bind(this),
|
instead: this.patchInstead.bind(this),
|
||||||
pushChildPatch: this.pushChildPatch.bind(this),
|
pushChildPatch: this.pushChildPatch.bind(this),
|
||||||
unpatchAll: this.unpatchAll.bind(this),
|
unpatchAll: this.unpatchAll.bind(this),
|
||||||
|
monkeyPatch: this.monkeyPatch.bind(this)
|
||||||
}, 'patches', {
|
}, 'patches', {
|
||||||
get: () => this.patches
|
get: () => this.patches
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
get monkeyPatch() {
|
monkeyPatch(module) {
|
||||||
return module => MonkeyPatch(this.plugin.id, module);
|
return MonkeyPatch(this.plugin.id, module);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
"lint": "eslint -f unix client/src core/src csseditor/src",
|
"lint": "eslint -f unix client/src core/src csseditor/src",
|
||||||
"test": "npm run build && npm run lint",
|
"test": "npm run build && npm run lint",
|
||||||
"build_node-sass": "node scripts/build-node-sass.js",
|
"build_node-sass": "node scripts/build-node-sass.js",
|
||||||
"build_release": "npm run release --prefix client && npm run build --prefix core && npm run release --prefix csseditor && npm run build --prefix installer",
|
"build_release": "npm run release --prefix client && npm run build --prefix core && npm run release --prefix csseditor",
|
||||||
"release": "npm run lint && npm run build_release && gulp release"
|
"release": "npm run lint && npm run build_release && gulp release"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue