@inquirer/select 1.0.0 → 1.0.1

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 +1 -1
  2. package/README.md +1 -1
  3. package/package.json +6 -6
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2022 Simon Boudrias
1
+ Copyright (c) 2023 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
package/README.md CHANGED
@@ -54,5 +54,5 @@ const answer = await select({
54
54
 
55
55
  # License
56
56
 
57
- Copyright (c) 2022 Simon Boudrias (twitter: [@vaxilart](https://twitter.com/Vaxilart))
57
+ Copyright (c) 2023 Simon Boudrias (twitter: [@vaxilart](https://twitter.com/Vaxilart))<br/>
58
58
  Licensed under the MIT license.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inquirer/select",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Inquirer select/list prompt",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "typings": "./dist/cjs/types/index.d.mts",
@@ -54,9 +54,9 @@
54
54
  "license": "MIT",
55
55
  "homepage": "https://github.com/SBoudrias/Inquirer.js/blob/master/packages/select/README.md",
56
56
  "dependencies": {
57
- "@inquirer/core": "^1.0.1",
58
- "@inquirer/type": "^1.0.0",
59
- "ansi-escapes": "^6.0.0",
57
+ "@inquirer/core": "^1.0.2",
58
+ "@inquirer/type": "^1.0.1",
59
+ "ansi-escapes": "^6.2.0",
60
60
  "chalk": "^5.2.0",
61
61
  "figures": "^5.0.0"
62
62
  },
@@ -65,7 +65,7 @@
65
65
  "clean": "rm -rf dist",
66
66
  "tsc:esm": "tsc -p ./tsconfig.esm.json",
67
67
  "tsc:cjs": "tsc -p ./tsconfig.cjs.json && yarn run fix-ext",
68
- "fix-ext": "ts-node ../../tools/rename-ext.ts"
68
+ "fix-ext": "ts-node ../../tools/rename-ext.mts"
69
69
  },
70
70
  "publishConfig": {
71
71
  "access": "public"
@@ -85,5 +85,5 @@
85
85
  }
86
86
  }
87
87
  },
88
- "gitHead": "e93c4cb14f0c35ebd1efb065776b90f48899b075"
88
+ "gitHead": "5b8563d850962ce48daba46e7e95e7285d581a56"
89
89
  }