Pier Paolo Ramon

Results 95 comments of Pier Paolo Ramon

You can do that already. What’s missing from the current proposal that’s stopping you from doing what you’re saying?

A decorator is just a function which operates either on the prototype of the class or the class itself for static methods/props. You can set new properties up, reimplement the...

Ok. There's something similar going on on `liferay/metaljs` repo. To do what you want you can either 1. Completely replace the underlying method with a wrapper 2. Add metadata on...

To solve this a lot of companies _enforced_ the use of function expressions over function declaration. In fact once you change a function declaration to an expression you get different...

Design time means roughly ‘when the developer writes and declares the classes/objects/interfaces’ and therefore means that it's something that must be both human and machine readable. AFAIK.

AFAIK this: ``` js export default class C {} ``` **already** desugars to: ``` js class C {} export default C; ``` So this is a non-issue. Please @sebmck check...

:+1: on 1 :-1: on 2. I suspect that bracket notation is going to be used way more than before, given it’s currently the only way to use symbols.

You pointed what in my humble opinion is the biggest issue with the current resolving algorithm. Currently it resolves things as they are in the resulting app, that means that...

Probably the issue happens when [calling `getDefaultBranchName`](https://github.com/decaporg/decap-cms/blob/cdd0899c3d1b2aada5ea6e8a983499ec099814f5/packages/decap-cms-backend-gitlab/src/implementation.ts#L157-L161) without passing all backend configuration options. Indeed if you add `branch: master` (or whatever you need) to the backend configuration it will work.