Ustun Ozgur
Ustun Ozgur
Seems like the latest released version is FirebaseExtended/action-hosting-deploy@v0, which points to https://github.com/FirebaseExtended/action-hosting-deploy/releases/tag/v0 That does not include some later fixes like https://github.com/FirebaseExtended/action-hosting-deploy/issues/55 Are there any plans to update this action's version?...
The service account email used for the deployments is too long, preventing the final column in console from being visible. This is probably outside the scope of this project, but...
firebase allows one to specify the commit message while deploying. Setting this to the short git sha would make it easier to see which commit a deploy is associated with,...
I created a brand new React-TypeScript addin using the yo office generator. The sample project, without any changes results in almost 3 MB of JS output. This seems like an...
We had a situation where we ran a cluster to cluster migration once. Then, months later, someone accidentally ran the same script. :/ This caused security docs to be reverted...
Could you please provide TypeScript definitions either in the repo, or in DefinitelyTyped?
Are there any plans to add coercion for fields? For example, the following fails: ` (validate {:id "1"} {:id [v/positive v/number]}) ` Something like this could work: ` (validate {:id...
Without any arguments, it toggles the env var and handles the initial invocation.
`js_body_filter` should have an optional argument in which case nginx would buffer the body, and pass that to `js_body_filter` without chunking. Current workaround is to collect the data in a...
On the following line: https://github.com/jgardella/compat/blob/master/src/js/features/es6/syntax/octalAndBinaryLiterals/binaryLiterals.js#L13 we check for binary literal by matching 'b' in the lowercase version of the number. However, 0xb is a valid ES5 hexadecimal literal. We should...