Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-highcharts

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-highcharts - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

4

CHANGELOG.md
# Changelog
## 0.4.1
- Fix path issue for highcharts-more & highcharts-3d
## 0.4.0

@@ -4,0 +8,0 @@

13

index.js

@@ -19,19 +19,19 @@ /* jshint node: true */

if (options.includeHighCharts || options.includeHighCharts3D) {
app.import(highchartsPath + '/highcharts.src.js');
app.import(path.join(highchartsPath, 'highcharts.src.js'));
}
if (options.includeHighStock) {
app.import(highchartsPath + '/highstock.src.js');
app.import(path.join(highchartsPath, 'highstock.src.js'));
}
if (options.includeHighMaps) {
app.import(highchartsPath + '/highmaps.src.js');
app.import(path.join(highchartsPath, 'highmaps.src.js'));
}
if (options.includeHighChartsMore) {
app.import(highchartsPath + '/highcharts/highcharts-more.src.js');
app.import(path.join(highchartsPath, 'highcharts-more.src.js'));
}
if (options.includeHighCharts3D) {
app.import(highchartsPath + '/highcharts/highcharts-3d.src.js');
app.import(path.join(highchartsPath, 'highcharts-3d.src.js'));
}

@@ -42,3 +42,4 @@

for (var i = 0; i < modules.length; i++) {
app.import(highchartsPath + '/modules/' + modules[i] + '.src.js');
var moduleFilename = modules[i] + '.src.js';
app.import(path.join(highchartsPath, 'modules', moduleFilename));
}

@@ -45,0 +46,0 @@ }

{
"name": "ember-highcharts",
"version": "0.4.0",
"version": "0.4.1",
"description": "A Highcharts, HighStock and HighMaps component for ember cli",

@@ -5,0 +5,0 @@ "directories": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc