Skip to content
This repository was archived by the owner on Apr 3, 2026. It is now read-only.

Commit 3bbef72

Browse files
committed
Release v2.0.0
2 parents 73994e9 + 2b4eb64 commit 3bbef72

File tree

6 files changed

+674
-1163
lines changed

6 files changed

+674
-1163
lines changed

.circleci/config.yml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,31 @@
11
version: 2
22

3+
shared: &shared
4+
steps:
5+
- checkout
6+
- run: yarn
7+
- run: yarn test:ci
8+
39
jobs:
4-
test:
10+
test-node-10:
11+
docker:
12+
- image: node:10
13+
<<: *shared
14+
15+
test-node-12:
516
docker:
6-
- image: node:8
7-
steps:
8-
- checkout
17+
- image: node:12
18+
<<: *shared
919

10-
- run: yarn
11-
- run: yarn test:ci
20+
test-node-13:
21+
docker:
22+
- image: node:13
23+
<<: *shared
1224

1325
workflows:
1426
version: 2
15-
test-publish:
27+
test:
1628
jobs:
17-
- test
29+
- test-node-10
30+
- test-node-12
31+
- test-node-13

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ node_modules/
33
/dist
44
.nyc_output
55
coverage
6+
.idea/

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lts/dubnium

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ It doesn't do anything fancy and it doesn't have a fancy name. Yet I needed a si
1515

1616
## Requirements
1717

18-
* NodeJS >= 8
18+
* NodeJS >= 10
1919
* NPM / Yarn
2020

2121
## Installation

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudstek/cache",
3-
"version": "1.0.5",
3+
"version": "2.0.0",
44
"description": "Simple key/value (cache) store.",
55
"author": "Maarten de Boer <maarten@cloudstek.nl>",
66
"license": "MIT",
@@ -10,25 +10,25 @@
1010
"/dist"
1111
],
1212
"dependencies": {
13-
"fs-extra": "^8.0.1",
13+
"fs-extra": "^9.0.0",
1414
"moment": "^2.24.0"
1515
},
1616
"devDependencies": {
1717
"@types/fs-extra": "^8.0.0",
1818
"@types/mockdate": "^2.0.0",
19-
"@types/node": "^12.0.2",
20-
"ava": "^2.2.0",
19+
"@types/node": "^13.11.0",
20+
"ava": "^3.6.0",
2121
"coveralls": "^3.0.3",
2222
"del-cli": "^3.0.0",
2323
"mockdate": "^2.0.2",
2424
"npm-run-all": "^4.1.5",
2525
"nyc": "^15.0.0",
2626
"ts-node": "^8.1.0",
27-
"tslint": "^5.16.0",
27+
"tslint": "^6.1.1",
2828
"typescript": "^3.4.5"
2929
},
3030
"engines": {
31-
"node": ">=8"
31+
"node": ">=10"
3232
},
3333
"scripts": {
3434
"clean": "npm-run-all -p clean:*",

0 commit comments

Comments
 (0)