Skip to content

Commit

Permalink
Merge pull request #144 from RhoInc/dev-v2.6.1
Browse files Browse the repository at this point in the history
Safety Outlier Explorer v2.6.1
  • Loading branch information
jwildfire authored Jan 31, 2020
2 parents 36998ae + 25c0afa commit 161afa3
Show file tree
Hide file tree
Showing 7 changed files with 67 additions and 76 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "safety-outlier-explorer",
"version": "2.6.0",
"version": "2.6.1",
"description": "Chart showing participant trajectories of lab measures, vital signs and other related measures in clinical trials.",
"module": "./src/index.js",
"main": "./safetyOutlierExplorer.js",
Expand Down
10 changes: 3 additions & 7 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import babel from 'rollup-plugin-babel';

var pkg = require('./package.json');
const pkg = require('./package.json');

module.exports = {
export default {
input: pkg.module,
output: {
name: pkg.name
Expand All @@ -18,11 +18,7 @@ module.exports = {
webcharts: 'webCharts'
},
},
external: (function() {
var dependencies = pkg.dependencies;

return Object.keys(dependencies);
}()),
external: Object.keys(pkg.dependencies),
plugins: [
babel({
exclude: 'node_modules/**',
Expand Down
Loading

0 comments on commit 161afa3

Please sign in to comment.