Skip to content

Commit

Permalink
Adding binary support
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Dewhurst committed Jun 22, 2022
1 parent 7dbfc42 commit 87f5978
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions bin/azure-ddns.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env node
const main = require('../main');

;(async () => {
await main();
})();
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{
"name": "azure-ddns",
"version": "1.0.0",
"version": "1.0.2",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dewhurstwill/azure-ddns.git"
},
"bin": {
"azure-ddns": "./bin/azure-ddns.js"
},
"scripts": {
"start": "node index.js"
"start": "node index.js",
"install": "npm install && npm link && azure-ddns",
"uninstall": "npm unlink azure-ddns",
},
"license": "MIT",
"dependencies": {
Expand Down

0 comments on commit 87f5978

Please sign in to comment.