Remove installer from release build script

This commit is contained in:
Samuel Elliott 2018-03-29 20:04:01 +01:00
parent 946f68e4ef
commit 10fd25607d
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
2 changed files with 4 additions and 3 deletions

View File

@ -416,12 +416,13 @@ export default class PluginApi {
instead: this.patchInstead.bind(this),
pushChildPatch: this.pushChildPatch.bind(this),
unpatchAll: this.unpatchAll.bind(this),
monkeyPatch: this.monkeyPatch.bind(this)
}, 'patches', {
get: () => this.patches
});
}
get monkeyPatch() {
return module => MonkeyPatch(this.plugin.id, module);
monkeyPatch(module) {
return MonkeyPatch(this.plugin.id, module);
}
}

View File

@ -73,7 +73,7 @@
"lint": "eslint -f unix client/src core/src csseditor/src",
"test": "npm run build && npm run lint",
"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"
}
}