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.
Files changed (2) hide show
  1. package/bin/build.js +1 -5
  2. 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): Promise<any> {
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
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codify-plugin-lib",
3
- "version": "1.0.182-beta49",
3
+ "version": "1.0.182-beta50",
4
4
  "description": "Library plugin library",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",