From 889616a0cc7e9383b298c361b1940566215b1ca7 Mon Sep 17 00:00:00 2001 From: Alejandro Corredor Date: Fri, 6 Oct 2023 10:32:45 -0400 Subject: [PATCH] fix: use node 18 --- .github/workflows/pull-request.yml | 2 +- .github/workflows/release.yml | 2 +- README.md | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 10189d5..413bcc5 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - name: Test and Build run: | yarn diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 928e32f..3fa06e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 16 + node-version: 18 - name: Test and Build run: | echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc diff --git a/README.md b/README.md index a94d0ea..19c4890 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ code in every repo that wants to check for cyclic dependencies. Install the package: ``` -yarn add @lifeomic/cyclone +yarn add -D @lifeomic/cyclone ``` Add a `cyclone.config.json` file to the root of the project with the following diff --git a/package.json b/package.json index 49784a0..12e33c5 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "cyclone": "cli.js" }, "author": "LifeOmic ", - "license": "", + "license": "MIT", "publishConfig": { "access": "public" },