Skip to content

Releases: mikaelbr/node-osascript

v1.2.0

12 Nov 13:02

Choose a tag to compare

Changes

  • b007497 Add .gitattributes file
  • 7c73e45 Add license according to package.json
  • 11b29f1 Enhance package.json
  • b53e1b8 Add info about flags to README.md
  • 441a33f Adapt whitespace according to other project files
  • f89cc3f Add flags to osascript calls
  • 309a362 Make it possible to explicitly set type of JavaScript
  • bd7e4e1 Add example of different return types
  • 7cd9128 Add urls to Repo and issues on Github

v1.1.0

12 Oct 18:04

Choose a tag to compare

Adds ability to pass in arguments to osascript:

var osascript = require('osascript').file;
var path = require('path');
var file = path.resolve(__dirname, 'osascript.js');

osascript(file, {
  args: ['Some', 'Values']
}).pipe(process.stdout);