From a0aa7f22a81e5e1429ef12c720991befc1263918 Mon Sep 17 00:00:00 2001 From: andreacavalli Date: Thu, 19 Mar 2020 00:40:50 +0100 Subject: [PATCH] Add version variable --- scripting.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripting.js b/scripting.js index 0a90d6e..5c61532 100644 --- a/scripting.js +++ b/scripting.js @@ -1,5 +1,8 @@ #!/usr/bin/node +const jssVersion = [1, 0, 0]; +const jssVersionString = jssVersion.join("."); + const fs = require('fs'); const execSync = require('child_process').execSync; const spawn = require('child_process').spawn;