@usesocial/cli 0.11.3 → 0.11.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @usesocial/cli
2
2
 
3
+ ## 0.11.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#52](https://github.com/usesocial/monorepo/pull/52) [`a272700`](https://github.com/usesocial/monorepo/commit/a272700a1e2474fd362ac993d8c096cb2a51381a) Thanks [@CyrusNuevoDia](https://github.com/CyrusNuevoDia)! - Mark feedback commands as stdin-backed in the CLI schema metadata.
8
+
3
9
  ## 0.11.3
4
10
 
5
11
  ### Patch Changes
package/dist/index.mjs CHANGED
@@ -22823,7 +22823,7 @@ function createEnv(opts) {
22823
22823
  }
22824
22824
  //#endregion
22825
22825
  //#region package.json
22826
- var version$1 = "0.11.3";
22826
+ var version$1 = "0.11.4";
22827
22827
  //#endregion
22828
22828
  //#region src/lib/env.ts
22829
22829
  const URLWithTrailingSlash = url().transform(ensureTrailingSlash);
@@ -31197,7 +31197,8 @@ const createSubmitCommand = (deps, type) => {
31197
31197
  name: type,
31198
31198
  description: `Submit a ${noun} [write] | usage: \`echo "..." | ${label}\``,
31199
31199
  capability: "write",
31200
- contract: submitContract
31200
+ contract: submitContract,
31201
+ stdin: true
31201
31202
  }),
31202
31203
  run: async () => {
31203
31204
  const text = await readPipedText(deps, label);