[Pkg-javascript-commits] [node-minimatch] 01/03: New upstream version 3.0.4
Praveen Arimbrathodiyil
praveen at moszumanska.debian.org
Mon May 15 10:09:20 UTC 2017
This is an automated email from the git hooks/post-receive script.
praveen pushed a commit to branch master
in repository node-minimatch.
commit 2fb3c84433eca2dc1d409527b917be58dbed7148
Author: Pirate Praveen <praveen at debian.org>
Date: Mon May 15 15:22:39 2017 +0530
New upstream version 3.0.4
---
package-lock.json | 21 +++++++++++++++++++++
package.json | 13 +++++++------
test/basic.js | 2 +-
3 files changed, 29 insertions(+), 7 deletions(-)
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 0000000..0944258
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,21 @@
+{
+ "name": "minimatch",
+ "version": "3.0.4",
+ "dependencies": {
+ "balanced-match": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
+ "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
+ },
+ "brace-expansion": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz",
+ "integrity": "sha1-Pv/DxQ4ABTH7cg6v+A8K6O8jz1k="
+ },
+ "concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
+ }
+ }
+}
diff --git a/package.json b/package.json
index ec4b9fd..c4514c8 100644
--- a/package.json
+++ b/package.json
@@ -2,25 +2,26 @@
"author": "Isaac Z. Schlueter <i at izs.me> (http://blog.izs.me)",
"name": "minimatch",
"description": "a glob matcher in javascript",
- "version": "3.0.3",
+ "version": "3.0.4",
"repository": {
"type": "git",
"url": "git://github.com/isaacs/minimatch.git"
},
"main": "minimatch.js",
"scripts": {
- "posttest": "standard minimatch.js test/*.js",
- "test": "tap test/*.js"
+ "test": "tap test/*.js --cov",
+ "preversion": "npm test",
+ "postversion": "npm publish",
+ "postpublish": "git push origin --all; git push origin --tags"
},
"engines": {
"node": "*"
},
"dependencies": {
- "brace-expansion": "^1.0.0"
+ "brace-expansion": "^1.1.7"
},
"devDependencies": {
- "standard": "^3.7.2",
- "tap": "^5.6.0"
+ "tap": "^10.3.2"
},
"license": "ISC",
"files": [
diff --git a/test/basic.js b/test/basic.js
index 465795a..4f96c8e 100644
--- a/test/basic.js
+++ b/test/basic.js
@@ -54,7 +54,7 @@ tap.test('basic tests', function (t) {
tap.test('global leak test', function (t) {
var globalAfter = Object.keys(global).filter(function (k) {
- return (k !== '__coverage__')
+ return (k !== '__coverage__' && k !== '__core-js_shared__')
})
t.equivalent(globalAfter, globalBefore, 'no new globals, please')
t.end()
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-minimatch.git
More information about the Pkg-javascript-commits
mailing list