Skip to content

Commit

Permalink
chore: add external resource autoUpdate option
Browse files Browse the repository at this point in the history
  • Loading branch information
zdm committed Dec 30, 2024
1 parent fd70180 commit b8c3a1e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions lib/uws.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@ import externalResources from "@softvisio/utils/external-resources";
import { require } from "@softvisio/utils/utils";

const resource = await externalResources
.add( {
"id": "softvisio-node/uws",
"node": true,
} )
.add(
{
"id": "softvisio-node/uws",
"node": true,
},
{
"autoUpdate": false,
}
)
.check();

export default require( resource.getResourcePath( "uws.node" ) );

0 comments on commit b8c3a1e

Please sign in to comment.