Code Monkey home page Code Monkey logo

Comments (9)

sspilleman avatar sspilleman commented on May 21, 2024

I see jou closed it.. How did you solve this? For some reason I don't see the fix?!?

from angular2-highcharts.

gevgeny avatar gevgeny commented on May 21, 2024

You didn't specify any details when created the issue first time #10. There are no steps and info about you env, bundler etc.

from angular2-highcharts.

sspilleman avatar sspilleman commented on May 21, 2024
  1. git clone https://github.com/angular/angular2-seed.git
  2. cd angular2-seed/
  3. npm install
  4. npm install angular2-highcharts --save
  5. modify files as below
  6. npm start

about.ts:

import {Component} from '@angular/core';
import {Http} from '@angular/http';
import { CHART_DIRECTIVES } from 'angular2-highcharts';

@Component({
  selector: 'about',
  templateUrl: 'app/components/about/about.html',
  styleUrls: ['app/components/about/about.css'],
  providers: [],
  directives: [CHART_DIRECTIVES],
  pipes: []
})
export class About {

  private options: Object;

  constructor(http: Http) {
    this.options = {
      title: { text: 'simple chart' },
      series: [{
        data: [29.9, 71.5, 106.4, 129.2],
      }]
    };
  }

  ngOnInit() {

  }
}

about.html

<h3>About Component</h3>
<p>This is the about component!</p>
<chart [options]="options"></chart>

warnings:

WARNING in ./~/angular2-highcharts/dist/index.js
Cannot find source file '../src/index.ts': Error: Cannot resolve 'file' or 'directory' ../src/index.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/ChartComponent.js
Cannot find source file '../src/ChartComponent.ts': Error: Cannot resolve 'file' or 'directory' ../src/ChartComponent.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/ChartSeriesComponent.js
Cannot find source file '../src/ChartSeriesComponent.ts': Error: Cannot resolve 'file' or 'directory' ../src/ChartSeriesComponent.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/ChartPointComponent.js
Cannot find source file '../src/ChartPointComponent.ts': Error: Cannot resolve 'file' or 'directory' ../src/ChartPointComponent.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/Highcharts.js
Cannot find source file '../src/Highcharts.ts': Error: Cannot resolve 'file' or 'directory' ../src/Highcharts.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/HighchartsService.js
Cannot find source file '../src/HighchartsService.ts': Error: Cannot resolve 'file' or 'directory' ../src/HighchartsService.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/initChart.js
Cannot find source file '../src/initChart.ts': Error: Cannot resolve 'file' or 'directory' ../src/initChart.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/createBaseOpts.js
Cannot find source file '../src/createBaseOpts.ts': Error: Cannot resolve 'file' or 'directory' ../src/createBaseOpts.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/deepAssign.js
Cannot find source file '../src/deepAssign.ts': Error: Cannot resolve 'file' or 'directory' ../src/deepAssign.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

WARNING in ./~/angular2-highcharts/dist/ChartEvent.js
Cannot find source file '../src/ChartEvent.ts': Error: Cannot resolve 'file' or 'directory' ../src/ChartEvent.ts in /private/tmp/angular2-seed/node_modules/angular2-highcharts/dist

from angular2-highcharts.

pevans360 avatar pevans360 commented on May 21, 2024

Note the paths in the message e.g. '../src/ChartEvent.ts'. If you look in the angular2-highcharts folder in node_modules, you'll notice 3 issues:

  1. there's no src folder ... just dist
  2. there are no xxx.ts files ... just xxx.js and xxx.d.ts
  3. the references refer to the same folder ... not one up in the tree ... so the '../' is an issue

If you go into each of the the map files and change e.g.
{"version":3,"file":"deepAssign.js","sourceRoot":"","sources":["../src/deepAssign.ts"]
to
{"version":3,"file":"deepAssign.js","sourceRoot":"","sources":["deepAssign.js"]

... the messages go away ... and it works.

from angular2-highcharts.

skyrocknroll avatar skyrocknroll commented on May 21, 2024

@gevgeny We are also facing this issue. Can you please reopen it ? If you need further details i am ready help.

from angular2-highcharts.

gevgeny avatar gevgeny commented on May 21, 2024

try v0.4.0

from angular2-highcharts.

wouterter avatar wouterter commented on May 21, 2024

The problem still exists in 0.4.1 with the Webpack starter. I get a lot of these warnings, for example:

Cannot find source file '../src/ChartXAxisComponent.ts': Error: Can't resolve '../src/ChartXAxisComponent.ts'.

from angular2-highcharts.

tsabran avatar tsabran commented on May 21, 2024

I also still have the issue with v0.4.1, which I can fix by manually applying the patch from pevans306 / Raymice on my node_modules/angular2-highcharts/dist.

So I guess PR #100 is still applicable.

from angular2-highcharts.

tsabran avatar tsabran commented on May 21, 2024

Actually the PR #100 is changing the map files in dist directory, that are regenerated at build time, so I guess it's not an option.

I don't understand how the map files are generated, but if they are referencing the .ts files in ../src/ directory, maybe the simpler would be to ship the src folder in the npm package, so that the map files can be valid.
@gevgeny what do you think of this option ?

from angular2-highcharts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.