Denis Bendrikov
Denis Bendrikov
Here is the link > https://www.typescriptlang.org/play/#src=class%20Mammal%20%7B%7D%0D%0Aclass%20Pig%20extends%20Mammal%20%7B%0D%0A%20%20oink()%3Astring%20%7B%0D%0A%20%20%20%20return%20'oink!'%0D%0A%20%20%7D%3B%0D%0A%7D%0D%0Aclass%20Cow%20extends%20Mammal%20%7B%0D%0A%20%20moo()%3Astring%20%7B%0D%0A%20%20%20%20return%20'moo!'%0D%0A%20%20%7D%3B%0D%0A%7D%0D%0A%0D%0Avar%20mammal%3AMammal%20%3D%20new%20Mammal()%3B%0D%0Avar%20cow%3ACow%20%3D%20new%20Cow()%3B%0D%0Avar%20pig%3APig%20%3D%20new%20Pig()%3B%0D%0A%0D%0Amammal%20%3D%20cow%3B%0D%0Apig%20%3D%20mammal%3B%0D%0Apig.moo()%3B%0D%0Apig.oink()%3B And t.co for this link looks like this > https://t.co/BeUgOqj8qj which expands only to > https://www.typescriptlang.org/play/#src=class%20Mammal%20%7B%7D%0D%0Aclass%20Pig%20extends%20Mammal%20%7B%0D%0A%20%20oink So generally splits on first parentheses character
BREAKING CHANGE: Require Node.js 8 as per https://github.com/chalk/strip-ansi/releases/tag/v6.0.0 Closes: #108
Take into account `src/index.ejs` existence while deciding to add default meta-tags. Closes: #1387
For now angular-busy package has to much of them. https://npmcdn.com/[email protected]/ ``` node_modules/angular-busy ├── Gruntfile.js ├── LICENSE ├── README.md ├── angular-busy.css ├── angular-busy.html ├── angular-busy.js ├── bower.json ├── bower_components │ ├──...
### Is this a regression? - [X] Yes, this behavior used to work in the previous version ### The previous version in which this bug was not present was 13...
**Is your feature request related to a problem? Please describe.** Since webpack@5 recommends [configuration cleanup](https://webpack.js.org/migrate/5/?_sm_au_=iVVn83n2sDMW0RFrMjpfkK68cqsfp#clean-up-configuration) and `output.path` removing... > Consider removing defaults: Using output.path: path.resolve(__dirname, 'dist'): you can omit it,...
This change helps for cases when `useCompilerPath` option is used, but `output.path` is not defined (since it is optional https://webpack.js.org/migrate/5/?_sm_au_=iVVn83n2sDMW0RFrMjpfkK68cqsfp#clean-up-configuration ) Closes: #403
**Describe the bug** `webpack-assets.json` gets removed if the new [output.clean](https://webpack.js.org/guides/output-management/?_sm_au_=iVVn83n2sDMW0RFrMjpfkK68cqsfp#cleaning-up-the-dist-folder) webpack@5 option is used. **To Reproduce** Steps to reproduce the behavior: ``` npm init -y npm i webpack assets-webpack-plugin webpack-cli...
- [ ] I'd be willing to implement this feature ([contributing guide](https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md)) ## Description `npx nx migrate 17.2` should migrate to the latest patch version of nx (f.e. 17.2.8), cause...
### Current Behavior after migration to 2.2.0 I see 2 issues: * running tests now leads to running a build 2.1.2  2.2.0  * after the build I see...