cacheability
Advanced tools
Comparing version 2.0.5 to 2.0.6
@@ -0,1 +1,7 @@ | ||
#### 2.0.6 (2019-08-30) | ||
##### New Features | ||
* **configs:** add repodog configs and update deps ([9e3b985a](https://github.com/bad-batch/cacheability/commit/9e3b985a6c70b07982105a58a9b4a2e73be906aa)) | ||
#### 2.0.5 (2019-07-31) | ||
@@ -2,0 +8,0 @@ |
----------------------------- | ||
Rollup File Analysis | ||
----------------------------- | ||
bundle size: 5.452 KB | ||
original size: 6.706 KB | ||
code reduction: 18.7 % | ||
bundle size: 5.453 KB | ||
original size: 6.406 KB | ||
code reduction: 14.88 % | ||
module count: 3 | ||
██████████████████████████████████████████████████ | ||
file: /src/cacheability/index.ts | ||
file: /src/main/index.ts | ||
bundle space: 100 % | ||
rendered size: 5.452 KB | ||
original size: 5.947 KB | ||
code reduction: 8.32 % | ||
rendered size: 5.453 KB | ||
original size: 5.704 KB | ||
code reduction: 4.4 % | ||
dependents: 1 | ||
@@ -22,3 +22,3 @@ - /src/index.ts | ||
rendered size: 0 Byte | ||
original size: 676 Bytes | ||
original size: 643 Bytes | ||
code reduction: 100 % | ||
@@ -32,5 +32,5 @@ dependents: 1 | ||
rendered size: 0 Byte | ||
original size: 83 Bytes | ||
original size: 59 Bytes | ||
code reduction: 100 % | ||
dependents: 0 | ||
"use strict"; | ||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); | ||
Object.defineProperty(exports, "__esModule", { | ||
@@ -10,7 +12,7 @@ value: true | ||
get: function () { | ||
return _cacheability.Cacheability; | ||
return _main.default; | ||
} | ||
}); | ||
var _cacheability = require("./cacheability"); | ||
var _main = _interopRequireDefault(require("./main")); | ||
@@ -17,0 +19,0 @@ var _types = require("./types"); |
@@ -1,2 +0,2 @@ | ||
export { Cacheability as default } from "./cacheability"; | ||
export { default } from "./main"; | ||
export * from "./types"; |
@@ -1,3 +0,3 @@ | ||
export { Cacheability as default } from "./cacheability"; | ||
export { default } from "./main"; | ||
export * from "./types"; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "cacheability", | ||
"version": "2.0.5", | ||
"version": "2.0.6", | ||
"description": "A utility class to parse, store and print http cache headers.", | ||
@@ -49,4 +49,10 @@ "author": "Dylan Aubrey <dylanaubrey@gmail.com>", | ||
"type-check": "tsc --noEmit", | ||
"validate": "yarn run build && yarn run lint && yarn run type-check && yarn run test", | ||
"wipe": "del-cli ./yarn.lock ./node_modules" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
}, | ||
"peerDependencies": { | ||
@@ -77,10 +83,19 @@ "@babel/runtime": "^7.0.0", | ||
"@babel/runtime": "^7.5.5", | ||
"@commitlint/cli": "^8.1.0", | ||
"@commitlint/config-conventional": "^8.1.0", | ||
"@repodog/commitlint-config": "^0.2.26", | ||
"@repodog/eslint-config": "^0.2.26", | ||
"@repodog/markdownlint-config": "^0.2.26", | ||
"@repodog/prettier-config": "^0.2.26", | ||
"@repodog/ts-config": "^0.2.26", | ||
"@repodog/tslint-config": "^0.2.26", | ||
"@repodog/typedoc-config": "^0.2.26", | ||
"@types/isomorphic-fetch": "^0.0.35", | ||
"@types/jest": "^24.0.15", | ||
"@types/lodash": "^4.14.110", | ||
"@types/node": "^12.6.8", | ||
"babel-eslint": "^10.0.2", | ||
"@types/jest": "^24.0.18", | ||
"@types/lodash": "^4.14.138", | ||
"@types/node": "^12.7.3", | ||
"babel-eslint": "^10.0.3", | ||
"babel-plugin-lodash": "^3.3.4", | ||
"codecov": "^3.0.0", | ||
"concurrently": "^4.1.1", | ||
"concurrently": "^4.1.2", | ||
"core-js": "^2.6.8", | ||
@@ -90,17 +105,21 @@ "cross-env": "^5.2.0", | ||
"del-cli": "^2.0.0", | ||
"eslint": "^6.1.0", | ||
"eslint-config-airbnb": "^17.1.1", | ||
"eslint": "^6.2.2", | ||
"eslint-config-airbnb": "^18.0.1", | ||
"eslint-config-prettier": "^6.1.0", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-jsx-a11y": "^6.2.3", | ||
"eslint-plugin-react": "^7.14.3", | ||
"eslint-plugin-react-hooks": "^2.0.1", | ||
"eslint-plugin-sort-class-members": "^1.6.0", | ||
"fs-extra": "^8.1.0", | ||
"husky": "3.0.2", | ||
"husky": "3.0.4", | ||
"isomorphic-fetch": "^2.2.1", | ||
"jest": "^24.8.0", | ||
"jest": "^24.9.0", | ||
"lodash": "^4.17.5", | ||
"markdownlint-cli": "^0.17.0", | ||
"rollup": "^1.17.0", | ||
"markdownlint-cli": "^0.18.0", | ||
"prettier": "^1.18.2", | ||
"rollup": "^1.20.3", | ||
"rollup-plugin-analyzer": "^3.1.2", | ||
"rollup-plugin-babel": "^4.3.3", | ||
"rollup-plugin-commonjs": "^10.0.1", | ||
"rollup-plugin-commonjs": "^10.1.0", | ||
"rollup-plugin-json": "^4.0.0", | ||
@@ -110,8 +129,10 @@ "rollup-plugin-node-resolve": "^5.2.0", | ||
"ts-jest": "^24.0.2", | ||
"tslint": "^5.8.0", | ||
"type-fest": "^0.6.0", | ||
"tslint": "^5.19.0", | ||
"tslint-config-prettier": "^1.18.0", | ||
"tslint-plugin-prettier": "^2.0.1", | ||
"type-fest": "^0.7.1", | ||
"typedoc": "^0.15.0", | ||
"typedoc-plugin-markdown": "^2.1.0", | ||
"typescript": "^3.5.3" | ||
"typedoc-plugin-markdown": "^2.1.4", | ||
"typescript": "^3.6.2" | ||
} | ||
} |
@@ -0,12 +1,5 @@ | ||
const repodogConfig = require('@repodog/typedoc-config'); | ||
module.exports = { | ||
excludeExternals: true, | ||
excludePrivate: true, | ||
excludeProtected: true, | ||
hideGenerator: true, | ||
ignoreCompilerErrors: true, | ||
includeDeclarations: false, | ||
mode: 'file', | ||
name: 'Documentation', | ||
readme: 'none', | ||
theme: 'markdown', | ||
...repodogConfig, | ||
}; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
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
46761
23
69
540