@inquirer/input 0.0.18-alpha.0 → 0.0.19-alpha.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 (3) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +1 -1
  3. package/package.json +4 -3
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2012 Simon Boudrias
1
+ Copyright (c) 2022 Simon Boudrias
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person
4
4
  obtaining a copy of this software and associated documentation
@@ -19,4 +19,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
19
  HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
20
  WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
21
  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
- OTHER DEALINGS IN THE SOFTWARE.
22
+ OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -31,5 +31,5 @@ const answer = await input({ message: 'Enter your name' });
31
31
 
32
32
  # License
33
33
 
34
- Copyright (c) 2019 Simon Boudrias (twitter: [@vaxilart](https://twitter.com/Vaxilart))
34
+ Copyright (c) 2022 Simon Boudrias (twitter: [@vaxilart](https://twitter.com/Vaxilart))
35
35
  Licensed under the MIT license.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inquirer/input",
3
- "version": "0.0.18-alpha.0",
3
+ "version": "0.0.19-alpha.0",
4
4
  "description": "Inquirer input text prompt",
5
5
  "main": "index.js",
6
6
  "repository": "SBoudrias/Inquirer.js",
@@ -12,12 +12,13 @@
12
12
  ],
13
13
  "author": "Simon Boudrias <admin@simonboudrias.com>",
14
14
  "license": "MIT",
15
+ "homepage": "https://github.com/SBoudrias/Inquirer.js/blob/master/packages/input/README.md",
15
16
  "dependencies": {
16
- "@inquirer/core": "^0.0.18-alpha.0",
17
+ "@inquirer/core": "^0.0.19-alpha.0",
17
18
  "chalk": "^4.1.1"
18
19
  },
19
20
  "publishConfig": {
20
21
  "access": "public"
21
22
  },
22
- "gitHead": "e71313db1a6e26f501b58d75a9d3acf53dab5da7"
23
+ "gitHead": "9baee326b04b4e8565e815b1fa577c36e0b93727"
23
24
  }