dynatrace-cordova-outsystems-plugin
Version:
This plugin gives you the ability to use the Dynatrace instrumentation in your hybrid application (Cordova, Ionic, ..). It uses the Mobile Agent, the JavaScript Agent and the Javascript Bridge. The Mobile Agent will give you all device specific values con
33 lines (30 loc) • 692 B
JavaScript
import resolve from 'rollup-plugin-node-resolve';
import babel from 'rollup-plugin-babel';
const packageJson = require('./package.json');
export default {
entry : "dist/esnext/index.js",
format : "umd",
moduleName : "URI",
plugins: [
resolve({
module: true,
jsnext: true,
preferBuiltins: false
}),
babel({
"presets": [
["latest", {
"es2015": {
"modules": false
}
}]
],
"plugins": ["external-helpers"],
"externalHelpers": false
}
)
],
dest : "dist/es5/uri.all.js",
sourceMap: true,
banner: "/** @license URI.js v" + packageJson.version + " (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */"
}