Vladyslav Babak
Vladyslav Babak
Fixed error: [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
@felixfbecker is PHPDoc implemented? -- edit -- I mean autocomplete based on PHPDoc (@method, @see, @var) and corresponding code navigation.
``` /** @see Class::method() */ isn't working /** @method mixed getIsActive() */ isn't working ``` Is PHPDoc implemented at all?
According to the [docs](https://webpack.js.org/configuration/output/#outputglobalobject) include `output.globalObject` into **webpack.config.js**: ``` module.exports = { output: { libraryTarget: 'umd', globalObject: 'this' } } ``` _To make UMD build available on both browsers and...
> > According to the [docs](https://webpack.js.org/configuration/output/#outputglobalobject) include `output.globalObject` into **webpack.config.js**: > > ``` > > module.exports = { > > output: { > > libraryTarget: 'umd', > > globalObject: 'this'...
And put `db:sync --dry-run` into `sequelize-cli` as option!
@sarbesh I would add "logs" folder similar to "data", including ".gitkeep". Could you also update `build.sh` and add logs cleanup?
@sarbesh configurable amount of replicas is a good point. Actually I have thought that "Master-Slave-Slave" was about chained replication. That's a little bit different setup comparing to multiple replicas. I...