Assistance integrating Microsoft Project Ace w/ Meteor 1.3 Cordova

I’m trying to see if integrating Microsoft’s Project Ace Cordova plugin with Meteor 1.3 beta 11 is possible.

Currently I’ve tried this (on a new 1.3-beta.11 app)

meteor add cordova:cordova-plugin-ace@0.0.12

I then added a simple top-level file called test-ace.js

Meteor.startup(() => {
  if (Meteor.isCordova) {
    console.log('on cordova! ace?', ace);
  }
});

Running this via

meteor run ios-device

And debugging it via Safari it just throws a type error that ace is undefined. I was expecting ace to be defined here. Am I missing something, or is this possibly a bug in the new Cordova integration?

Confirmed that this works on 1.2.1.