cacheability
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -0,1 +1,12 @@ | ||
#### 3.0.2 (2023-08-11) | ||
##### Bug Fixes | ||
* output .mjs files for module build ([4f4ccd41](https://github.com/bad-batch/cacheability/commit/4f4ccd41de395841f6ebf9c2ccb5b505da0c00c3)) | ||
* update travis url ([575f5e2a](https://github.com/bad-batch/cacheability/commit/575f5e2ae501cbc14710bf8a9deb58d9b45f4adf)) | ||
##### Refactors | ||
* use github actions instead of travis ([69598798](https://github.com/bad-batch/cacheability/commit/69598798f8bac5ff9c08dd873165b83d57c5615e)) | ||
#### 3.0.1 (2020-03-02) | ||
@@ -2,0 +13,0 @@ |
{ | ||
"name": "cacheability", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "A utility class to parse, store and print http cache headers.", | ||
@@ -19,3 +19,3 @@ "author": "Dylan Aubrey <dylanaubrey@gmail.com>", | ||
"main": "lib/main/index.js", | ||
"module": "lib/module/index.js", | ||
"module": "lib/module/index.mjs", | ||
"browser": "lib/browser/index.js", | ||
@@ -40,3 +40,3 @@ "types": "lib/types/index.d.ts", | ||
"compile:main": "cross-env BABEL_ENV=main babel ./src --out-dir ./lib/main --extensions \".ts\" --source-maps --config-file ./babel.config.js", | ||
"compile:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./lib/module --extensions \".ts\" --source-maps --config-file ./babel.config.js", | ||
"compile:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./lib/module --extensions \".ts\" --out-file-extension \".mjs\" --source-maps --config-file ./babel.config.js", | ||
"compile:types": "tsc --declaration --declarationMap --emitDeclarationOnly", | ||
@@ -108,3 +108,2 @@ "cutoff": "cutoff", | ||
"babel-plugin-lodash": "^3.3.4", | ||
"codecov": "^3.6.5", | ||
"concurrently": "^5.1.0", | ||
@@ -111,0 +110,0 @@ "core-js": "^3.6.4", |
@@ -5,4 +5,3 @@ # cacheability | ||
[![Build Status](https://travis-ci.org/badbatch/cacheability.svg?branch=master)](https://travis-ci.org/badbatch/cacheability) | ||
[![codecov](https://codecov.io/gh/badbatch/cacheability/branch/master/graph/badge.svg)](https://codecov.io/gh/badbatch/cacheability) | ||
[![build-and-deploy](https://github.com/badbatch/cacheability/actions/workflows/build-and-deploy.yml/badge.svg)](https://github.com/badbatch/cacheability/actions/workflows/build-and-deploy.yml) | ||
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) | ||
@@ -9,0 +8,0 @@ [![npm version](https://badge.fury.io/js/cacheability.svg)](https://badge.fury.io/js/cacheability) |
77822
75
91