From 7ce8d1269ffbbfbfaa0c2d780c4808d8e58493d3 Mon Sep 17 00:00:00 2001 From: Bruno Henrique Paiva Date: Fri, 16 Oct 2020 16:46:10 -0300 Subject: [PATCH 1/5] Add bruno.json --- domains/bruno.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 domains/bruno.json diff --git a/domains/bruno.json b/domains/bruno.json new file mode 100644 index 000000000..1a0c9060e --- /dev/null +++ b/domains/bruno.json @@ -0,0 +1,10 @@ +{ + "description": "Bruno Henrique Paiva's personal website", + "owner": { + "username": "brunohpaiva", + "email": "bruno@sigane.com.br" + }, + "record": { + "URL": "https://bruno.codes" + } +} From 6dc6a5ff11afc8714c846bdae0ec9ef23d96cfd5 Mon Sep 17 00:00:00 2001 From: WindTR <43916344+WindTR@users.noreply.github.com> Date: Fri, 16 Oct 2020 22:51:55 +0300 Subject: [PATCH 2/5] wind.json --- domains/wind.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 domains/wind.json diff --git a/domains/wind.json b/domains/wind.json new file mode 100644 index 000000000..59f3baf85 --- /dev/null +++ b/domains/wind.json @@ -0,0 +1,10 @@ +{ + "description": "WindTR's Website", + "owner": { + "username": "WindTR", + "email": "westselim20@gmail.com" + }, + "record": { + "URL": "https://wind.js.org" + } +} From bc9bb941c806dc03d1b07d831e5f6c69896d6d1c Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 17 Oct 2020 22:21:51 +0530 Subject: [PATCH 3/5] Adds ignore engines --- .github/workflows/checks.yml | 2 +- .github/workflows/publish-records.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index f35be82a3..dfddde85f 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -12,7 +12,7 @@ jobs: - name: Installing dependencies uses: borales/actions-yarn@v2.0.0 with: - cmd: install + cmd: install --ignore-engines - name: Linting uses: borales/actions-yarn@v2.0.0 with: diff --git a/.github/workflows/publish-records.yml b/.github/workflows/publish-records.yml index 41f919882..dca09caf6 100644 --- a/.github/workflows/publish-records.yml +++ b/.github/workflows/publish-records.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: borales/actions-yarn@v2.0.0 with: - cmd: install + cmd: install --ignore-engines - name: Running tests uses: borales/actions-yarn@v2.0.0 with: From 7a651a1fcfbcbfafdf2fdfaf5572f141603f7906 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 17 Oct 2020 22:23:16 +0530 Subject: [PATCH 4/5] Removes linter frm checks --- .github/workflows/checks.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index dfddde85f..14e1a8387 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -13,10 +13,6 @@ jobs: uses: borales/actions-yarn@v2.0.0 with: cmd: install --ignore-engines - - name: Linting - uses: borales/actions-yarn@v2.0.0 - with: - cmd: lint - name: Running tests uses: borales/actions-yarn@v2.0.0 with: From ab7d7b938d7abb9a82cee69acc3285c4998c256c Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 17 Oct 2020 22:24:26 +0530 Subject: [PATCH 5/5] Removes engine --- package.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/package.json b/package.json index fef02d225..210d2b343 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,6 @@ "name": "is-a-dev-core", "version": "1.0.0", "description": "Register *.is-a.dev domains for free", - "engines": { - "node": ">=11.14.0" - }, "scripts": { "test": "ENV=test jest", "lint": "eslint utils scripts domains --ext .json,.js",