Skip to content

Commit

Permalink
Build api for NE 4
Browse files Browse the repository at this point in the history
  • Loading branch information
marwie committed Dec 9, 2024
1 parent 102b949 commit 4de8cf0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/build_api_docs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ async function main() {
// download and unzip latest needle-engine package
const npmEndpoint = "https://registry.npmjs.org/@needle-tools/engine";

console.log("FETCH neelde engine versions from " + npmEndpoint);

/**
* @type {object}
*/
Expand All @@ -52,7 +54,7 @@ async function main() {
const version = versions[i];
const prevVersion = versions[i + 1];

if (!version.startsWith("3")) continue;
if (!version.startsWith("3") && !version.startsWith("4")) continue;

/**
* @type {{name:string, version:string, dist:{tarball:string}}}
Expand Down

0 comments on commit 4de8cf0

Please sign in to comment.