@ht85 wrote:
I am using Ionic and I am pretty new to node.js.
I would like to automate the increase of version and build number when usingionic build
. The manipulation of theconfig.xml
works (usingxml2js
). But I'd like to implement a prompt asking for a new version.Using a prompt in a standalone file works without problems:
var readline = require('readline'); var rl = readline.createInterface(process.stdin, process.stdout); rl.setPrompt('Neue Version (leer für weiter, oder x.y.z)> '); rl.on('line', function(line) { console.log(line); });
If I put the file into the
hooks/before_build
folder and runionic build
the prompt is shown but therl.on('line')
is never triggered.Why? Did I miss something?
Thanks in advance!
Posts: 1
Participants: 1