Esen Sagynov
Esen Sagynov
It fails with both `aglio` `2.2.0` and `2.2.1`. This happened after the `aglio-theme-olio` has been upgraded to `1.6.3`. ``` bash npm ERR! Linux 4.0.9-boot2docker npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "i"...
```bash "TypeError: token.attrGet is not a function", " at /home1/user/61916c91a4e81be8/node_modules/markdown-it-anchor/index.js:79:24", " at Array.forEach (native)", " at Array. (/home1/user/61916c91a4e81be8/node_modules/markdown-it-anchor/index.js:71:8)", " at Core.process (/home1/user/61916c91a4e81be8/node_modules/markdown-it/lib/parser_core.js:51:13)", " at MarkdownIt.parse (/home1/user/61916c91a4e81be8/node_modules/markdown-it/lib/index.js:493:13)", " at MarkdownIt.render (/home1/user/61916c91a4e81be8/node_modules/markdown-it/lib/index.js:513:36)",...
Using ES 1.3.1. The error also occurs in ES 1.2.1. Works fine with ES 1.1.2. Mapping: ``` { "digit": { "properties": { "image": { "type": "image", "feature": { "CEDD": {...
Started using `digitalocean` module in TypeScript environment. It would be nice if the module came with built-in types.
`passport.authenticate` allows to pass a callback function as a third argument. ``` module.exports = function authenticate(name, options, callback) {...} ``` When request is made, its middleware function is called: ```...
I have the following: ``` const commitApprovers = ['elza', 'esen']; const { approvalRuleTemplateName } = new ApprovalRuleTemplate(this, `${id}ApprovalRuleTemplate`, { approvalRuleTemplateName: `master-branch-required-approvers-for-${id}`, template: { approvers: { approvalPoolMembers: commitApprovers.map(userName => { return...
React 17 is now the recommended version. More and more packages are migrating to it. Would be great if Atomize worked with React 17.
AWS is phasing out Node v12 support following the EOL of Node v12 (April 30, 2022). This requires this package to start using at least v14or better v16. Since v16...
Basically this line https://github.com/theironcook/Backbone.ModelBinder/blob/master/Backbone.ModelBinder.js#L400 is not completely correct: ``` if(!_.isUndefined(previousValue) || !_.isUndefined(currentValue)){ previousValue = this._getConvertedValue(Backbone.ModelBinder.Constants.ModelToView, elementBinding, previousValue); el.removeClass(previousValue); } ``` It should be: ``` previousValue && el.removeClass(previousValue); ``` That is...
We have pushed a breaking change that throws the following error during deployment. ``` Received response status [FAILED] from custom resource. Message returned: Error: Cannot find module 'aws-sdk' Require stack:...