Skip to content

Commit c2e225f

Browse files
authored
Merge pull request #25 from contentstack/Feat/CS-35685
Remove Oclif core dependency
2 parents ea4beb7 + 5ba1db4 commit c2e225f

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@contentstack/cli-cm-regex-validate",
33
"description": "Validate Fields with Regex Property of Content Type and Global Field in a Stack",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"author": "Contentstack",
66
"bugs": "https://github.com/contentstack/cli-cm-regex-validate/issues",
77
"devDependencies": {

src/commands/cm/stacks/validate-regex.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { FlagInput } from '@contentstack/cli-utilities/node_modules/@oclif/core/lib/interfaces/parser';
21
import { Command } from "@contentstack/cli-command";
32
import { flags } from '@contentstack/cli-utilities';
43
import { inquireAlias, inquireModule } from "../../../utils/interactive";
@@ -8,7 +7,7 @@ const regexMessages = require("../../../../messages/index.json").validateRegex;
87
export default class ValidateRegex extends Command {
98
static description = regexMessages.command.description;
109

11-
static flags: FlagInput = {
10+
static flags: any = {
1211
help: flags.help({ char: "h", description: regexMessages.command.help }),
1312
alias: flags.string({
1413
char: "a",

0 commit comments

Comments
 (0)