codify-plugin-lib 1.0.182-beta49 → 1.0.182-beta50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/build.js +1 -5
- package/package.json +1 -1
package/bin/build.js
CHANGED
|
@@ -15,7 +15,7 @@ const ajv = new Ajv({
|
|
|
15
15
|
});
|
|
16
16
|
const ipcMessageValidator = ajv.compile(IpcMessageSchema);
|
|
17
17
|
|
|
18
|
-
function sendMessageAndAwaitResponse(process, message)
|
|
18
|
+
function sendMessageAndAwaitResponse(process, message) {
|
|
19
19
|
return new Promise((resolve, reject) => {
|
|
20
20
|
process.on('message', (response) => {
|
|
21
21
|
if (!ipcMessageValidator(response)) {
|
|
@@ -107,7 +107,3 @@ console.log('Successfully wrote schema to ./dist/schemas.json')
|
|
|
107
107
|
|
|
108
108
|
plugin.kill(9);
|
|
109
109
|
process.exit(0);
|
|
110
|
-
|
|
111
|
-
async function loadReadmes(){
|
|
112
|
-
const readmes = new Map();
|
|
113
|
-
}
|