@contentstack/cli-audit 2.0.0-beta.5 → 2.0.0-beta.6

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/README.md CHANGED
@@ -19,7 +19,7 @@ $ npm install -g @contentstack/cli-audit
19
19
  $ csdx COMMAND
20
20
  running command...
21
21
  $ csdx (--version|-v)
22
- @contentstack/cli-audit/2.0.0-beta.5 linux-x64 node-v22.22.0
22
+ @contentstack/cli-audit/2.0.0-beta.6 linux-x64 node-v22.22.0
23
23
  $ csdx --help [COMMAND]
24
24
  USAGE
25
25
  $ csdx COMMAND
@@ -340,5 +340,5 @@
340
340
  ]
341
341
  }
342
342
  },
343
- "version": "2.0.0-beta.5"
343
+ "version": "2.0.0-beta.6"
344
344
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentstack/cli-audit",
3
- "version": "2.0.0-beta.5",
3
+ "version": "2.0.0-beta.6",
4
4
  "description": "Contentstack audit plugin",
5
5
  "author": "Contentstack CLI",
6
6
  "homepage": "https://github.com/contentstack/cli",
@@ -18,8 +18,8 @@
18
18
  "/oclif.manifest.json"
19
19
  ],
20
20
  "dependencies": {
21
- "@contentstack/cli-command": "~2.0.0-beta",
22
- "@contentstack/cli-utilities": "~2.0.0-beta.1",
21
+ "@contentstack/cli-command": "~2.0.0-beta.2",
22
+ "@contentstack/cli-utilities": "~2.0.0-beta.2",
23
23
  "@oclif/core": "^4.3.0",
24
24
  "@oclif/plugin-help": "^6.2.28",
25
25
  "chalk": "^4.1.2",
@@ -64,15 +64,15 @@
64
64
  "repositoryPrefix": "<%- repo %>/blob/main/packages/contentstack-audit/<%- commandPath %>"
65
65
  },
66
66
  "scripts": {
67
- "build": "npm run clean && shx rm -rf lib && tsc -b",
67
+ "build": "pnpm compile && oclif manifest && oclif readme",
68
68
  "lint": "eslint . --ext .ts --config .eslintrc",
69
69
  "postpack": "shx rm -f oclif.manifest.json",
70
70
  "posttest": "npm run lint",
71
- "compile": "shx rm -rf lib tsconfig.tsbuildinfo && tsc -b",
71
+ "compile": "tsc -b tsconfig.json",
72
72
  "prepack": "pnpm compile && oclif manifest && oclif readme",
73
73
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
74
74
  "version": "oclif readme && git add README.md",
75
- "clean": "rm -rf ./lib ./node_modules .tsbuildinfo oclif.manifest.json",
75
+ "clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo oclif.manifest.json",
76
76
  "test:unit:report": "nyc --extension .ts mocha --forbid-only \"test/unit/**/*.test.ts\"",
77
77
  "test:unit": "mocha --timeout 10000 --forbid-only \"test/unit/**/*.test.ts\""
78
78
  },
@@ -83,4 +83,4 @@
83
83
  "keywords": [
84
84
  "oclif"
85
85
  ]
86
- }
86
+ }