@tsed/cli-prompts 7.0.0-rc.4 → 7.0.0

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.
Files changed (2) hide show
  1. package/package.json +3 -6
  2. package/readme.md +34 -6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tsed/cli-prompts",
3
3
  "description": "Prompt runner and schema shared across Ts.ED CLIs",
4
- "version": "7.0.0-rc.4",
4
+ "version": "7.0.0",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "source": "./src/index.ts",
@@ -29,7 +29,7 @@
29
29
  "@tsed/logger": ">=8.0.3"
30
30
  },
31
31
  "devDependencies": {
32
- "@tsed/typescript": "7.0.0-rc.4",
32
+ "@tsed/typescript": "7.0.0",
33
33
  "typescript": "5.6.2",
34
34
  "vitest": "3.2.4"
35
35
  },
@@ -40,8 +40,5 @@
40
40
  },
41
41
  "homepage": "https://github.com/tsedio/tsed-cli/tree/master/packages/cli-prompts",
42
42
  "author": "Romain Lenzotti",
43
- "license": "MIT",
44
- "publishConfig": {
45
- "tag": "rc"
46
- }
43
+ "license": "MIT"
47
44
  }
package/readme.md CHANGED
@@ -70,6 +70,8 @@ const answers = await runner.run(questions);
70
70
  console.log(answers);
71
71
  ```
72
72
 
73
+ > 📚 Want a larger multi-step flow? See [`docs/examples/cli/prompts-command-decorators.ts`](../../docs/examples/cli/prompts-command-decorators.ts) or the [CLI prompts guide](https://cli.tsed.dev/guide/cli/prompts) for a production-style walkthrough that stays in sync with this repository.
74
+
73
75
  ### Supported question types
74
76
 
75
77
  | Type | Description |
@@ -101,12 +103,38 @@ try {
101
103
  }
102
104
  ```
103
105
 
104
- ## Development
106
+ ## Contributors
107
+
108
+ Please read [contributing guidelines here](https://tsed.dev/CONTRIBUTING.html)
109
+
110
+ <a href="https://github.com/tsedio/ts-express-decorators/graphs/contributors"><img src="https://opencollective.com/tsed/contributors.svg?width=890" /></a>
111
+
112
+ ## Backers
113
+
114
+ Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/tsed#backer)]
115
+
116
+ <a href="https://opencollective.com/tsed#backers" target="_blank"><img src="https://opencollective.com/tsed/tiers/backer.svg?width=890"></a>
117
+
118
+ ## Sponsors
119
+
120
+ Support this project by becoming a sponsor. Your logo will show up here with a link to your
121
+ website. [[Become a sponsor](https://opencollective.com/tsed#sponsor)]
122
+
123
+ ## License
124
+
125
+ The MIT License (MIT)
126
+
127
+ Copyright (c) 2016 - Today Romain Lenzotti
105
128
 
106
- This package follows the same conventions as other Ts.ED workspaces:
129
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
130
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
131
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
132
+ persons to whom the Software is furnished to do so, subject to the following conditions:
107
133
 
108
- - `yarn workspace @tsed/cli-prompts build:ts` compile to `lib/esm` + `lib/types`.
109
- - `yarn workspace @tsed/cli-prompts test` – run the Vitest suite.
110
- - `yarn lint` – run the monorepo ESLint config (covers this workspace automatically).
134
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
135
+ Software.
111
136
 
112
- Please read the [contributing guide](https://tsed.dev/CONTRIBUTING.html) before submitting changes.
137
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
138
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
139
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
140
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.