1

I tried to import a working project into my workspace in wakanda studio 1.1.3 it show me the following error

web:src:app:home:home.component.ts doesn't exist

It works in a windows machine if i open the same project but it doesn't works on my mac.

I tried to reinstall the entire application again but still getting the same error, Is anyone having this kind of issue.

skid
  • 958
  • 4
  • 13
  • 29
  • have you reinstalled your node_modules? – Jonathan Argentiero Feb 27 '17 at 16:46
  • yes i am getting the same error even after that, actually the wakanda studio show not responding after the project is being opened – skid Feb 27 '17 at 16:54
  • 1
    Could be because the `home.component.ts` file was open in the studio. When you open the solution on your Mac, it is trying to open again the file in the studio but could not find it at the same location. – Yann Feb 28 '17 at 08:36
  • What do you mean by It doesn't work ? The solution is not open in the studio ? you don't see your files in the solution explorer ? You can't load the solution to the server ? – hamzahik Feb 28 '17 at 13:20
  • @Yann you are correct i changed the location of the project and it works fine – skid Feb 28 '17 at 15:26
  • 1
    @skid Great, I'm writing the same text as an answer to get more visible. – Yann Mar 01 '17 at 07:52

1 Answers1

2

It's because the home.component.ts file was open in the studio when you close your solution. The studio keeps track of all currently open files and reopen them next time.

When you move the solution to your Mac, the studio tries to re-open the files; could not find some at the same location and returns an error.

You can safely ignore this error. Next time, you close your solution, the studio will save the new currently open file list.

Yann
  • 478
  • 5
  • 10