test-bdk-cli 0.1.6 → 0.1.7

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.
@@ -33,7 +33,7 @@ async function validatePkg(appPath) {
33
33
  throw new Error('Manifest schema not found');
34
34
  const manifest = JSON.parse(fs_1.default.readFileSync(manifestPath, 'utf8'));
35
35
  const schema = JSON.parse(fs_1.default.readFileSync(schemaPath, 'utf8'));
36
- const ajv = new ajv_1.default();
36
+ const ajv = new ajv_1.default({ allErrors: true, allowUnionTypes: true });
37
37
  const validate = ajv.compile(schema);
38
38
  const valid = validate(manifest);
39
39
  if (!valid) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-bdk-cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "test CLI",
5
5
  "author": "@raisulaslam",
6
6
  "bin": {
@@ -17,12 +17,12 @@
17
17
  "dependencies": {
18
18
  "ajv": "^8.12.0",
19
19
  "archiver": "^5.3.1",
20
- "test-bdk-cli": "^0.1.5",
21
20
  "chokidar": "^3.5.3",
22
21
  "commander": "^10.0.0",
23
22
  "form-data": "^4.0.0",
24
23
  "inquirer": "^9.0.0",
25
- "node-fetch": "^2.6.7"
24
+ "node-fetch": "^2.6.7",
25
+ "test-bdk-cli": "^0.1.6"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/archiver": "^7.0.0",