Skip to content

Commit

Permalink
feat: Adds GHES 3.13 as a supported operation (#458)
Browse files Browse the repository at this point in the history
* Adds GHES 3.13 as a supported operation

* fixes linting issues
  • Loading branch information
nickfloyd committed May 24, 2024
1 parent d0f55a9 commit 15de6f7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion scripts/overrides/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@ import { readFileSync } from "fs";
import { resolve, join, dirname } from "path";
import { fileURLToPath } from "url";

const SUPPORTED_GHES_OPERATIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"];
const SUPPORTED_GHES_OPERATIONS = [
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
];
const __dirname = dirname(fileURLToPath(import.meta.url));

function isDeferenced(filename) {
Expand Down

0 comments on commit 15de6f7

Please sign in to comment.