@hubspot/project-parsing-lib 0.10.0 → 0.10.1-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/project-parsing-lib",
3
- "version": "0.10.0",
3
+ "version": "0.10.1-beta.0",
4
4
  "description": "Parsing library for converting projects directory structures to their intermediate representation",
5
5
  "license": "Apache-2.0",
6
6
  "main": "src/index.js",
@@ -76,8 +76,6 @@ function validateIntermediateRepresentationNode(schema, transformation, irNode,
76
76
  errors: (0, errors_1.compileError)(transformation),
77
77
  };
78
78
  }
79
- console.log('schema[irNode.componentType]', schema[irNode.componentType]);
80
- console.log('irNode.config', irNode.config);
81
79
  const validate = ajv.compile(schema[irNode.componentType]);
82
80
  const valid = validate(irNode.config);
83
81
  if (valid) {