LP

Results 104 comments of LP

I tried doing this but I just get "Command not found", in reality the actual output is `MyAppName` not `Electron` but if I were to do `./MyAppName` it just gives...

Yeah, Here is a screenshot: https://dl.dropboxusercontent.com/u/98595151/ShareX/EMBERSOFT1/electron-linux.jpg It shows the folder structure as well as the contents and the call to it in the terminal (although I had to sudo for...

I ran it via grunt with these settings: ``` electron: { windows: { // Lets not care about this }, linux: { options: { dir: "./app", name: "MyAppName", platform: "linux",...

HUZZAH! ok so if I right click there is a check box "Allow Running As Executable", clicked that and boom runs like it should do. So I guess the next...

Yeah, I just didnt want to have to start hopping between O/S to build stuff, although I heard somewhere that I would need to do that for Mac OS anyway,...

Ah right, so including `lib: [ "es6" ]` stopped the errors with sugar.d.ts but the rest of the errors still apply.

ok, so the actual `Sugar.extend()` should I be doing that once per file or just once in the entire module?

ok thanks, have added the reference and it is all working, although `sortBy` seemed to have some odd behaviour as `myTypedArray.sortBy( (x: TypeOfArray) => { return x.someField; });` threw an...

hmm right so first problem, so I added the path to the sugar stuff as requested: ``` /// ``` This works fine in `lib-a` however when this is pushed up...

Thanks for getting back to me, so the scenario I have here is there is a library (not an application, just a module for re-use in other projects), and that...