Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2017-10-04 11:30:24 +0300
committerRebecca Turner <me@re-becca.org>2017-10-04 11:30:25 +0300
commit2b02e86c06cf2a5fe7146404f5bfd27f190ee4f4 (patch)
tree09949613fc22ae700307c11a1e0dad1318ec0e74
parent10d31739d39765f1f0249f688bd934ffad92f872 (diff)
meant@1.0.1
Doc updates.
-rw-r--r--node_modules/meant/CHANGELOG.md10
-rw-r--r--node_modules/meant/README.md11
-rw-r--r--node_modules/meant/package.json22
-rw-r--r--package-lock.json6
-rw-r--r--package.json2
5 files changed, 36 insertions, 15 deletions
diff --git a/node_modules/meant/CHANGELOG.md b/node_modules/meant/CHANGELOG.md
index 0117b2e10..a26b8aadf 100644
--- a/node_modules/meant/CHANGELOG.md
+++ b/node_modules/meant/CHANGELOG.md
@@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+<a name="1.0.1"></a>
+## [1.0.1](https://github.com/watilde/meant/compare/v1.0.0...v1.0.1) (2017-08-23)
+
+
+### Bug Fixes
+
+* **package:** tweak the line ([915d949](https://github.com/watilde/meant/commit/915d949))
+
+
+
<a name="1.0.0"></a>
# 1.0.0 (2016-09-08)
diff --git a/node_modules/meant/README.md b/node_modules/meant/README.md
index 6c541ce9c..90cc0ac77 100644
--- a/node_modules/meant/README.md
+++ b/node_modules/meant/README.md
@@ -2,6 +2,17 @@
Like the `Did you mean?` in git for npm
+## API
+### meant(item, list)
++ item {String} A key for finding an approximate value
++ list {Array} A list for comparing with the item
+
+```js
+const meant = require('meant')
+const result = meant('foa', ['foo', 'bar', 'baz'])
+// => [ 'foo' ]
+```
+
## Installation
Download node at [nodejs.org](http://nodejs.org) and install it, if you haven't already.
diff --git a/node_modules/meant/package.json b/node_modules/meant/package.json
index 1111b1f89..2297da005 100644
--- a/node_modules/meant/package.json
+++ b/node_modules/meant/package.json
@@ -1,27 +1,27 @@
{
- "_from": "meant@~1.0.0",
- "_id": "meant@1.0.0",
+ "_from": "meant@1.0.1",
+ "_id": "meant@1.0.1",
"_inBundle": false,
- "_integrity": "sha1-y2KG47evkxXxYRj9wiRybtOAdLs=",
+ "_integrity": "sha512-UakVLFjKkbbUwNWJ2frVLnnAtbb7D7DsloxRd3s/gDpI8rdv8W5Hp3NaDb+POBI1fQdeussER6NB8vpcRURvlg==",
"_location": "/meant",
"_phantomChildren": {},
"_requested": {
- "type": "range",
+ "type": "version",
"registry": true,
- "raw": "meant@~1.0.0",
+ "raw": "meant@1.0.1",
"name": "meant",
"escapedName": "meant",
- "rawSpec": "~1.0.0",
+ "rawSpec": "1.0.1",
"saveSpec": null,
- "fetchSpec": "~1.0.0"
+ "fetchSpec": "1.0.1"
},
"_requiredBy": [
"#USER",
"/"
],
- "_resolved": "https://registry.npmjs.org/meant/-/meant-1.0.0.tgz",
- "_shasum": "cb6286e3b7af9315f16118fdc224726ed38074bb",
- "_spec": "meant@~1.0.0",
+ "_resolved": "https://registry.npmjs.org/meant/-/meant-1.0.1.tgz",
+ "_shasum": "66044fea2f23230ec806fb515efea29c44d2115d",
+ "_spec": "meant@1.0.1",
"_where": "/Users/rebecca/code/npm",
"author": {
"name": "Daijiro Wachi"
@@ -52,5 +52,5 @@
"release": "standard-version",
"test": "standard && tap test.js"
},
- "version": "1.0.0"
+ "version": "1.0.1"
}
diff --git a/package-lock.json b/package-lock.json
index 841479429..24257e202 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1011,9 +1011,9 @@
}
},
"meant": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/meant/-/meant-1.0.0.tgz",
- "integrity": "sha1-y2KG47evkxXxYRj9wiRybtOAdLs="
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/meant/-/meant-1.0.1.tgz",
+ "integrity": "sha512-UakVLFjKkbbUwNWJ2frVLnnAtbb7D7DsloxRd3s/gDpI8rdv8W5Hp3NaDb+POBI1fQdeussER6NB8vpcRURvlg=="
},
"mississippi": {
"version": "1.3.0",
diff --git a/package.json b/package.json
index a75c332b3..9f761aed3 100644
--- a/package.json
+++ b/package.json
@@ -72,7 +72,7 @@
"lodash.uniq": "~4.5.0",
"lodash.without": "~4.4.0",
"lru-cache": "~4.1.1",
- "meant": "~1.0.0",
+ "meant": "~1.0.1",
"mississippi": "~1.3.0",
"mkdirp": "~0.5.1",
"move-concurrently": "~1.0.1",