Maxime Bernard

Results 11 comments of Maxime Bernard

:+1: I found http://momentjs.com/docs/#/displaying/tonow/ but wondering how to use it with angular-moment

Anyone having a workaround for this issue ?

Would it be that hard to transform "strings" to 'strings' during the JSON to JS process? Adding JSHint rules sounds more like a temporary workaround than a true solution to...

@ajwhite I forked your project and managed to handle this by changing ``` _.each(jsonObj, function (value, key) { constants.push({ name: key, value: JSON.stringify(value, null, spaces) }); }); ``` to ```...

I'd like to have "one file per component" - each component having its own style. Currently, I'm already using your workaround with `@import` but having some `index.scss` with ``` Compass...

@Swiip I know and I loved it 👍 I fixed ordering problems by prefixing files with `10_`, `20_` when necessary (which is very occasional). About `styleUrls` property from `@Component`, is...

Ok, I found how to make this work. Here is an example: ``` typescript @Component({ selector: 'home', template: require('./home.component.html'), styles: [ String(require('./home.component.scss')) ] }) ``` Interesting notes: - As you...

Did the trick for me. Just in case you're looking for a better solution: `-b127.0.0.1` will protect you from the out world :)