diff --git a/github-action/package-lock.json b/github-action/package-lock.json index 5d22917d..dd4365b1 100644 --- a/github-action/package-lock.json +++ b/github-action/package-lock.json @@ -18,7 +18,7 @@ "@types/node": "^24.12.0", "esbuild": "^0.28.1", "eslint": "^10.6.0", - "globals": "^17.7.0" + "globals": "^17.8.0" } }, "node_modules/@actions/core": { @@ -1310,9 +1310,9 @@ } }, "node_modules/globals": { - "version": "17.7.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-17.7.0.tgz", - "integrity": "sha512-Czmyns5dUsq4seFBR/Kdydhmo8y9kC79hiSkPn0YcGtNnYWnrgt0vjrSjx9tspoDGWm2CMarffRuLjM4xUz8xg==", + "version": "17.8.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-17.8.0.tgz", + "integrity": "sha512-Zz/LMDZScFmkakeL2cTHzf+PbWKdpU3uclqkZT7TjDG58j5WPt0PpA+n9uPI24fZtlw07q0OtEi84K+umsRzqQ==", "dev": true, "license": "MIT", "engines": { diff --git a/github-action/package.json b/github-action/package.json index f79b53ab..f54c122f 100644 --- a/github-action/package.json +++ b/github-action/package.json @@ -39,6 +39,6 @@ "@types/node": "^24.12.0", "esbuild": "^0.28.1", "eslint": "^10.6.0", - "globals": "^17.7.0" + "globals": "^17.8.0" } } diff --git a/mdsf/src/filetype/generated_file_types.rs b/mdsf/src/filetype/generated_file_types.rs index 7e8d3c97..685e9d9c 100644 --- a/mdsf/src/filetype/generated_file_types.rs +++ b/mdsf/src/filetype/generated_file_types.rs @@ -378,6 +378,8 @@ pub fn language_to_ext(language: &str) -> Option<&'static str> { "glyph bitmap distribution format" => Some(".bdf"), "glyph" => Some(".glf"), "gn" => Some(".gn"), + "gno" => Some(".gno"), + "gnolang" => Some(".gno"), "gnu asm" => Some(".s"), "gnuplot" => Some(".gp"), "go template" => Some(".gohtml"), @@ -1544,6 +1546,8 @@ mod test_language_to_ext { ("glyph bitmap distribution format", ".bdf"), ("glyph", ".glf"), ("gn", ".gn"), + ("gno", ".gno"), + ("gnolang", ".gno"), ("gnu asm", ".s"), ("gnuplot", ".gp"), ("go template", ".gohtml"),