rjgotten

Results 175 comments of rjgotten

> @nuxodin > Both have advantages and disadvantages, for me **not** inheriting is the better solution. Even when inheriting, your use-case can still be supported. Just reset back to border-box...

> @jamiebuilds > That's it, they are done. You're conveniently leaving out the case where `.widget` nests something else which needs `box-sizing:border-box` and which is styled using best-practice short class-only...

>That problem is only difficult because you decided that this was a best practice. Maybe re-evaluate that. Oh yes; let's force site authors to needlessly write higher-specificity selectors to cater...

> Has this been addressed? No, it's still on the current `master` : https://github.com/vuelidate/vuelidate/blob/3e534eb3ffb9086ad10737285b2f1fff6420811a/src/withParams.js#L1-L7 You can probably ~fix~ work around it by using `DefinePlugin` and defining `process.env.BUILD` as `"web"`. That...

>Since process.env.BUILD is a compile-time constant, the other branch of the ternary operator is unreachable. Maybe that's something more recent builds of Webpack added, or it's an optimization only done...

> Is there a better non-verb that denotes conversion Why not create a sub-namespace? `type.coerced.Number` `type.coerced.String` etc. Something similar would work for nullables as well: `type.nullable.Number` `type.nullable.String` etc. As functions...

> Instead of `eventType` Just putting it out there as a possibility; `operation` is also a good fit and a bit more descriptive as to what the property actually indicates,...

> VS Code Settings for can-stache tag auto-completion without a plugin That doesn't actually work properly and will leave a broken experience. IIRC this is the case for all code...

Found a working solution: ```js var supportsNativeSymbols = (function() { var symbolExists = typeof Symbol !== "undefined" && typeof Symbol.for === "function" && !Symbol.sham; if (!symbolExists) { return false; }...

Everything which uses `can-symbol` should atleast be fully retained. The canonical solution practically everyone uses for transpilation is Babel. Babel relies on CoreJS for polyfills and the Symbol polyfill offered...