Skip to content

Commit

Permalink
Release v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeboer committed Apr 5, 2020
2 parents 73994e9 + 2b4eb64 commit 3bbef72
Show file tree
Hide file tree
Showing 6 changed files with 674 additions and 1,163 deletions.
30 changes: 22 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,31 @@
version: 2

shared: &shared
steps:
- checkout
- run: yarn
- run: yarn test:ci

jobs:
test:
test-node-10:
docker:
- image: node:10
<<: *shared

test-node-12:
docker:
- image: node:8
steps:
- checkout
- image: node:12
<<: *shared

- run: yarn
- run: yarn test:ci
test-node-13:
docker:
- image: node:13
<<: *shared

workflows:
version: 2
test-publish:
test:
jobs:
- test
- test-node-10
- test-node-12
- test-node-13
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules/
/dist
.nyc_output
coverage
.idea/
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/dubnium
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ It doesn't do anything fancy and it doesn't have a fancy name. Yet I needed a si

## Requirements

* NodeJS >= 8
* NodeJS >= 10
* NPM / Yarn

## Installation
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudstek/cache",
"version": "1.0.5",
"version": "2.0.0",
"description": "Simple key/value (cache) store.",
"author": "Maarten de Boer <maarten@cloudstek.nl>",
"license": "MIT",
Expand All @@ -10,25 +10,25 @@
"/dist"
],
"dependencies": {
"fs-extra": "^8.0.1",
"fs-extra": "^9.0.0",
"moment": "^2.24.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/mockdate": "^2.0.0",
"@types/node": "^12.0.2",
"ava": "^2.2.0",
"@types/node": "^13.11.0",
"ava": "^3.6.0",
"coveralls": "^3.0.3",
"del-cli": "^3.0.0",
"mockdate": "^2.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint": "^6.1.1",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=8"
"node": ">=10"
},
"scripts": {
"clean": "npm-run-all -p clean:*",
Expand Down
Loading

0 comments on commit 3bbef72

Please sign in to comment.