Skip to content

Commit 5bea38b

Browse files
Merge pull request #37 from contentstack/staging
DX | 08-06-2024 | Hotfix
2 parents ae86736 + 7457c5c commit 5bea38b

File tree

13 files changed

+6741
-16694
lines changed

13 files changed

+6741
-16694
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ yarn-error.log*
77
lerna-debug.log*
88
*-debug.log
99
*-error.log
10-
10+
oclif.manifest.json
1111
/.nyc_output
1212
/dist
1313
/lib

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ EXAMPLES
8686
$ csdx content-type:audit --alias "management token" --content-type "home_page"
8787
```
8888

89-
_See code: [src/commands/content-type/audit.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/audit.ts)_
89+
_See code: [src/commands/content-type/audit.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/audit.ts)_
9090

9191
## `csdx content-type:compare`
9292

@@ -116,7 +116,7 @@ EXAMPLES
116116
$ csdx content-type:compare --alias "management token" --content-type "home_page" --left # --right #
117117
```
118118

119-
_See code: [src/commands/content-type/compare.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/compare.ts)_
119+
_See code: [src/commands/content-type/compare.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/compare.ts)_
120120

121121
## `csdx content-type:compare-remote`
122122

@@ -138,7 +138,7 @@ EXAMPLES
138138
$ csdx content-type:compare-remote --origin-stack "xxxxxxxxxxxxxxxxxxx" --remote-stack "xxxxxxxxxxxxxxxxxxx" -content-type "home_page"
139139
```
140140

141-
_See code: [src/commands/content-type/compare-remote.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/compare-remote.ts)_
141+
_See code: [src/commands/content-type/compare-remote.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/compare-remote.ts)_
142142

143143
## `csdx content-type:details`
144144

@@ -167,7 +167,7 @@ EXAMPLES
167167
$ csdx content-type:details --alias "management token" --content-type "home_page" --no-path
168168
```
169169

170-
_See code: [src/commands/content-type/details.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/details.ts)_
170+
_See code: [src/commands/content-type/details.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/details.ts)_
171171

172172
## `csdx content-type:diagram`
173173

@@ -202,7 +202,7 @@ EXAMPLES
202202
$ csdx content-type:diagram --alias "management token" --output "content-model.dot" --type "dot"
203203
```
204204

205-
_See code: [src/commands/content-type/diagram.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/diagram.ts)_
205+
_See code: [src/commands/content-type/diagram.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/diagram.ts)_
206206

207207
## `csdx content-type:list`
208208

@@ -231,5 +231,5 @@ EXAMPLES
231231
$ csdx content-type:list --alias "management token" --order modified
232232
```
233233

234-
_See code: [src/commands/content-type/list.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.0/src/commands/content-type/list.ts)_
234+
_See code: [src/commands/content-type/list.ts](https://github.com/Contentstack-Solutions/contentstack-cli-content-type/blob/v1.2.1/src/commands/content-type/list.ts)_
235235
<!-- commandsstop -->

bin/run

-6
This file was deleted.

bin/run.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env node
2+
3+
// eslint-disable-next-line unicorn/prefer-top-level-await
4+
(async () => {
5+
const oclif = await import('@oclif/core')
6+
await oclif.execute({development: false, dir: __dirname})
7+
})()

0 commit comments

Comments
 (0)