From 4db8bdf1790c04d72729332fcbf03bf4b7a49ea3 Mon Sep 17 00:00:00 2001 From: Vasco Santos Date: Sun, 18 Apr 2021 18:25:01 +0200 Subject: [PATCH 1/3] chore: update deps --- package.json | 4 ++-- index.js => src/index.js | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename index.js => src/index.js (100%) diff --git a/package.json b/package.json index 9b79133..12af167 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "is-loopback-addr", "version": "1.0.1", "description": "Check if a IP address is a loopback address", - "main": "index.js", + "main": "src/index.js", "author": "Vasco Santos", "scripts": { "test": "aegir test -t node -t browser", @@ -20,7 +20,7 @@ ], "license": "MIT", "devDependencies": { - "aegir": "^30.0.1" + "aegir": "^33.1.0" }, "contributors": [ "Vasco Santos " diff --git a/index.js b/src/index.js similarity index 100% rename from index.js rename to src/index.js From 5bd6c5ad7072770f2725150368a6a2fd078dc64c Mon Sep 17 00:00:00 2001 From: Vasco Santos Date: Fri, 4 Jun 2021 16:28:43 +0200 Subject: [PATCH 2/3] chore: trigger ci From f1d4d2deee72b175fd1df8d45af4743050f4fe0d Mon Sep 17 00:00:00 2001 From: Vasco Santos Date: Fri, 4 Jun 2021 16:31:27 +0200 Subject: [PATCH 3/3] chore: ci node 16 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8517b75..54dea8a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,7 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-latest, macos-latest] - node: [12, 14] + node: [14, 16] fail-fast: true steps: - uses: actions/checkout@v2