ignorepatterns
Advanced tools
Comparing version 3.0.0 to 4.0.0-next.1588743508.efaad1975f054d2c753261b1c63c65e6a77d60e1
@@ -1,4 +0,4 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = /^((~|\.#).*|.*(~|\.swp)|\.(svn|git|hg|DS_Store)|node_modules|CVS|thumbs\.db|desktop\.ini)$/i; | ||
'use strict' | ||
Object.defineProperty(exports, '__esModule', { value: true }) | ||
exports.default = /^((~|\.#).*|.*(~|\.swp)|\.(svn|git|hg|DS_Store)|node_modules|CVS|thumbs\.db|desktop\.ini)$/i | ||
/* | ||
@@ -5,0 +5,0 @@ ^( |
# History | ||
## v4.0.0 2020 May 6 | ||
- Updated dependencies, [base files](https://github.com/bevry/base), and [editions](https://editions.bevry.me) using [boundation](https://github.com/bevry/boundation) | ||
- Minimum required node version changed from `node: >=8` to `node: >=10` to keep up with mandatory ecosystem changes | ||
## v3.0.0 2019 December 18 | ||
@@ -4,0 +9,0 @@ |
{ | ||
"title": "Common Ignore Patterns", | ||
"name": "ignorepatterns", | ||
"version": "3.0.0", | ||
"version": "4.0.0-next.1588743508.efaad1975f054d2c753261b1c63c65e6a77d60e1", | ||
"description": "A regular expression that matches common filenames that we want to ignore", | ||
@@ -13,2 +13,3 @@ "homepage": "https://github.com/bevry/ignorepatterns", | ||
"ignore", | ||
"node", | ||
"pattern", | ||
@@ -66,3 +67,3 @@ "typed", | ||
"engines": { | ||
"node": ">=8" | ||
"node": ">=10" | ||
}, | ||
@@ -90,3 +91,3 @@ "editions": [ | ||
"engines": { | ||
"node": "8 || 10 || 12 || 13" | ||
"node": "10 || 12 || 13 || 14" | ||
} | ||
@@ -99,15 +100,16 @@ } | ||
"devDependencies": { | ||
"@typescript-eslint/eslint-plugin": "^2.12.0", | ||
"@typescript-eslint/parser": "^2.12.0", | ||
"assert-helpers": "^5.8.0", | ||
"eslint": "^6.7.2", | ||
"eslint-config-bevry": "^2.3.0", | ||
"eslint-config-prettier": "^6.7.0", | ||
"eslint-plugin-prettier": "^3.1.2", | ||
"@bevry/update-contributors": "^1.0.1", | ||
"@typescript-eslint/eslint-plugin": "^2.31.0", | ||
"@typescript-eslint/parser": "^2.31.0", | ||
"assert-helpers": "^6.2.0", | ||
"eslint": "^6.8.0", | ||
"eslint-config-bevry": "^3.4.0", | ||
"eslint-config-prettier": "^6.11.0", | ||
"eslint-plugin-prettier": "^3.1.3", | ||
"kava": "^4.4.0", | ||
"prettier": "^1.19.1", | ||
"projectz": "^1.19.0", | ||
"prettier": "^2.0.5", | ||
"projectz": "^1.19.1", | ||
"surge": "^0.21.3", | ||
"typedoc": "^0.15.5", | ||
"typescript": "^3.7.3", | ||
"typedoc": "^0.17.6", | ||
"typescript": "^3.8.3", | ||
"valid-directory": "^1.6.0" | ||
@@ -120,6 +122,7 @@ }, | ||
"our:deploy": "echo no need for this project", | ||
"our:meta": "npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta": "npm run our:meta:contributors && npm run our:meta:docs && npm run our:meta:projectz", | ||
"our:meta:contributors": "npx @bevry/update-contributors", | ||
"our:meta:docs": "npm run our:meta:docs:typedoc", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source", | ||
"our:meta:projectz": "projectz compile", | ||
"our:meta:docs:typedoc": "rm -Rf ./docs && npx typedoc --mode file --exclude '**/+(*test*|node_modules)' --excludeExternals --name \"$npm_package_name\" --readme ./README.md --out ./docs ./source", | ||
"our:meta:projectz": "npx projectz compile", | ||
"our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push", | ||
@@ -135,5 +138,5 @@ "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)", | ||
"our:verify": "npm run our:verify:directory && npm run our:verify:eslint && npm run our:verify:prettier && npm run our:verify:typescript", | ||
"our:verify:directory": "valid-directory", | ||
"our:verify:eslint": "eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:prettier": "prettier --write ./source/**", | ||
"our:verify:directory": "npx valid-directory", | ||
"our:verify:eslint": "npx eslint --fix --ignore-pattern '**/*.d.ts' --ignore-pattern '**/vendor/' --ignore-pattern '**/node_modules/' --ext .mjs,.js,.jsx,.ts,.tsx ./source", | ||
"our:verify:prettier": "prettier --write .", | ||
"our:verify:typescript": "tsc --noEmit --project tsconfig.json", | ||
@@ -140,0 +143,0 @@ "test": "node ./edition-esnext/test.js" |
@@ -38,3 +38,5 @@ <!-- TITLE/ --> | ||
``` javascript | ||
[Complete API Documentation.](http://master.ignorepatterns.bevry.surge.sh/docs/globals.html) | ||
```javascript | ||
import ignorePatternsRegExp from 'ignorepatterns' | ||
@@ -44,6 +46,2 @@ console.log(ignorePatternsRegExp.test('.DS_Store')) // true | ||
<!-- INSTALL/ --> | ||
@@ -50,0 +48,0 @@ |
@@ -7,9 +7,8 @@ { | ||
"maxNodeModuleJsDepth": 5, | ||
"moduleResolution": "node", | ||
"moduleResolution": "Node", | ||
"strict": true, | ||
"target": "esnext" | ||
"target": "ESNext", | ||
"lib": [] | ||
}, | ||
"include": [ | ||
"source" | ||
] | ||
"include": ["source"] | ||
} |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
20886
15
69
1
135