Comparing version 2.3.0 to 3.0.0-next.1588743287.d5f0254199abe4afc08e0ac0c4cc4e6b1d3753c4
# History | ||
## v3.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 | ||
## v2.3.0 2019 December 9 | ||
@@ -4,0 +9,0 @@ |
106
package.json
{ | ||
"title": "IgnoreFS", | ||
"name": "ignorefs", | ||
"version": "2.3.0", | ||
"version": "3.0.0-next.1588743287.d5f0254199abe4afc08e0ac0c4cc4e6b1d3753c4", | ||
"description": "Ignore common and custom patterns of the file system", | ||
@@ -9,5 +9,9 @@ "homepage": "https://github.com/bevry/ignorefs", | ||
"keywords": [ | ||
"binary", | ||
"encoding", | ||
"node", | ||
"text", | ||
"binary", | ||
"encoding" | ||
"typed", | ||
"types", | ||
"typescript" | ||
], | ||
@@ -51,4 +55,3 @@ "badges": { | ||
"contributors": [ | ||
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)", | ||
"dependabot-preview[bot] (http://github.com/apps/dependabot-preview)" | ||
"Benjamin Lupton <b@lupton.cc> (http://balupton.com)" | ||
], | ||
@@ -63,7 +66,7 @@ "bugs": { | ||
"engines": { | ||
"node": ">=8" | ||
"node": ">=10" | ||
}, | ||
"editions": [ | ||
{ | ||
"description": "typescript source code with import for modules", | ||
"description": "TypeScript source code with Import for modules", | ||
"directory": "source", | ||
@@ -78,12 +81,12 @@ "entry": "index.ts", | ||
{ | ||
"description": "typescript compiled for node.js 12 with require for modules", | ||
"directory": "edition-node-12", | ||
"description": "TypeScript compiled against ESNext for Node.js with Require for modules", | ||
"directory": "edition-esnext", | ||
"entry": "index.js", | ||
"tags": [ | ||
"javascript", | ||
"esnext", | ||
"require" | ||
], | ||
"engines": { | ||
"node": "8 || 10 || 12", | ||
"browsers": false | ||
"node": "10 || 12 || 13 || 14" | ||
} | ||
@@ -94,39 +97,33 @@ } | ||
"type": "commonjs", | ||
"main": "edition-node-12/index.js", | ||
"main": "edition-esnext/index.js", | ||
"dependencies": { | ||
"ignorepatterns": "^2.2.0" | ||
"ignorepatterns": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.7.5", | ||
"@babel/core": "^7.7.5", | ||
"@babel/plugin-proposal-class-properties": "^7.7.4", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.7.4", | ||
"@babel/plugin-proposal-optional-chaining": "^7.7.5", | ||
"@babel/preset-env": "^7.7.6", | ||
"@babel/preset-typescript": "^7.7.4", | ||
"@typescript-eslint/eslint-plugin": "^2.10.0", | ||
"@typescript-eslint/parser": "^2.10.0", | ||
"assert-helpers": "^5.8.0", | ||
"babel-plugin-add-module-exports": "^1.0.2", | ||
"eslint": "^6.7.2", | ||
"eslint-config-bevry": "^2.3.0", | ||
"eslint-config-prettier": "^6.7.0", | ||
"eslint-plugin-prettier": "^3.1.1", | ||
"kava": "^4.3.0", | ||
"prettier": "^1.19.1", | ||
"projectz": "^1.15.0", | ||
"@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": "^2.0.5", | ||
"projectz": "^1.19.1", | ||
"surge": "^0.21.3", | ||
"typedoc": "^0.15.4", | ||
"typescript": "^3.7.3", | ||
"valid-directory": "^1.5.0" | ||
"typedoc": "^0.17.6", | ||
"typescript": "^3.8.3", | ||
"valid-directory": "^1.6.0" | ||
}, | ||
"scripts": { | ||
"our:clean": "rm -Rf ./docs ./edition* ./es2015 ./es5 ./out ./.next", | ||
"our:compile": "npm run our:compile:edition-node-12", | ||
"our:compile:edition-node-12": "env BABEL_ENV=edition-node-12 babel --extensions \".ts,.tsx\" --out-dir ./edition-node-12 ./source", | ||
"our:compile": "npm run our:compile:edition-esnext", | ||
"our:compile:edition-esnext": "tsc --module commonjs --target ESNext --outDir ./edition-esnext --project tsconfig.json && test -d edition-esnext/source && ( mv edition-esnext/source edition-temp && rm -Rf edition-esnext && mv edition-temp edition-esnext ) || true", | ||
"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", | ||
@@ -143,6 +140,6 @@ "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:directory": "npx 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: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", | ||
"test": "node ./edition-node-12/test.js" | ||
"test": "node ./edition-esnext/test.js" | ||
}, | ||
@@ -157,28 +154,3 @@ "eslintConfig": { | ||
"singleQuote": true | ||
}, | ||
"babel": { | ||
"env": { | ||
"edition-node-12": { | ||
"sourceType": "module", | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": { | ||
"node": "12" | ||
}, | ||
"modules": "commonjs" | ||
} | ||
], | ||
"@babel/preset-typescript" | ||
], | ||
"plugins": [ | ||
"@babel/proposal-object-rest-spread", | ||
"@babel/plugin-proposal-optional-chaining", | ||
"@babel/proposal-class-properties", | ||
"add-module-exports" | ||
] | ||
} | ||
} | ||
} | ||
} |
@@ -36,2 +36,6 @@ <!-- TITLE/ --> | ||
## Usage | ||
[Complete API Documentation.](http://master.ignorefs.bevry.surge.sh/docs/globals.html) | ||
<!-- INSTALL/ --> | ||
@@ -44,3 +48,4 @@ | ||
<li>Install: <code>npm install --save ignorefs</code></li> | ||
<li>Require: <code>require('ignorefs')</code></li> | ||
<li>Import: <code>import * as pkg from ('ignorefs')</code></li> | ||
<li>Require: <code>const pkg = require('ignorefs')</code></li> | ||
</ul> | ||
@@ -52,5 +57,5 @@ | ||
<ul><li><code>ignorefs/source/index.ts</code> is typescript source code with import for modules</li> | ||
<li><code>ignorefs</code> aliases <code>ignorefs/edition-node-12/index.js</code></li> | ||
<li><code>ignorefs/edition-node-12/index.js</code> is typescript compiled for node.js 12 with require for modules</li></ul> | ||
<ul><li><code>ignorefs/source/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li> | ||
<li><code>ignorefs</code> aliases <code>ignorefs/edition-esnext/index.js</code></li> | ||
<li><code>ignorefs/edition-esnext/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li></ul> | ||
@@ -60,7 +65,2 @@ <!-- /INSTALL --> | ||
## Usage | ||
[API Documentation](http://master.ignorefs.bevry.surge.sh/docs/) | ||
<!-- HISTORY/ --> | ||
@@ -67,0 +67,0 @@ |
@@ -7,10 +7,8 @@ { | ||
"maxNodeModuleJsDepth": 5, | ||
"moduleResolution": "node", | ||
"noEmit": true, | ||
"moduleResolution": "Node", | ||
"strict": true, | ||
"target": "esnext" | ||
"target": "ESNext", | ||
"lib": [] | ||
}, | ||
"include": [ | ||
"source" | ||
] | ||
"include": ["source"] | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22700
15
131
8
1
1
+ Addedignorepatterns@3.0.0(transitive)
- Removedignorepatterns@2.3.0(transitive)
Updatedignorepatterns@^3.0.0