Yarn: Difference between revisions
Jump to navigation
Jump to search
Line 112: | Line 112: | ||
| valign="top" | | | valign="top" | | ||
* [https://codeburst.io/javascript-wtf-is-es6-es8-es-2017-ecmascript-dca859e4821c ES5(2009) vs. ES6(2015) vs. ES7(20216) vs. ES8(2017)] | |||
* [https://askubuntu.com/questions/371579/ Exclude directories and file zipping a directory] | * [https://askubuntu.com/questions/371579/ Exclude directories and file zipping a directory] | ||
* [https://stackoverflow.com/questions/42461279/ Deploy a React App on Apache Web Server] | * [https://stackoverflow.com/questions/42461279/ Deploy a React App on Apache Web Server] | ||
* [https://jsramblings.com/how-to-upgrade-a-yarn-package-to-the-latest-version/ Upgrade a yarn package to the latest] | * [https://jsramblings.com/how-to-upgrade-a-yarn-package-to-the-latest-version/ Upgrade a yarn package to the latest] | ||
* [https://classic.yarnpkg.com/en/docs/install Yarn Installation] | * [https://classic.yarnpkg.com/en/docs/install Yarn Installation] | ||
* [https://angular.io/cli/build Angular Build] | * [https://angular.io/cli/build Angular Build] |
Revision as of 19:40, 29 September 2021
yarn install <git-host>:<git-user>/<repo-name>
yarn install <alias>@npm:<name>
yarn install <git repo url>
yarn install <tarball file>
yarn install <tarball url>
yarn install <folder>
|
yarn install [<@scope>/]<name>@<version range>
yarn install [<@scope>/]<name>@<version>
yarn install [<@scope>/]<name>@<tag>
yarn install [<@scope>/]<name>
yarn install
|
| |
aliases: yarn i, yarn add common options: [-P|--save-prod|-D|--save-dev|-O|--save-optional|--save-peer] [-E|--save-exact] [-B|--save-bundle] [--no-save] [--dry-run] |
Angular
zip -r angular_20211010_1010.zip angular -x '**/node_modules/*' -x '**/dist/*' yarn install -g @angular/cli ng serve --open yarn install yarn upgrade
ng build --aot --build-optimizer --output-hashing=none --vendor-chunk=false --named-chunks=false --common-chunk=false
ng build --aot --build-optimizer --output-hashing=none --vendor-chunk=false --named-chunks=false --common-chunk=true
ng build --aot --build-optimizer --output-hashing=none --vendor-chunk=false --named-chunks=false
ng build --aot --build-optimizer --output-hashing=none --vendor-chunk=false
ng build --aot --build-optimizer --output-hashing=none
ng build --aot --build-optimizer
ng build --aot --build-optimizer --output-hashing=none --vendor-chunk --named-chunks --common-chunk
ng build --aot --build-optimizer --output-hashing=none --vendor-chunk --named-chunks
ng build --aot --build-optimizer --output-hashing=none --vendor-chunk
ng build --aot --build-optimizer --output-hashing=none
ng build --aot --build-optimizer
ReactJS
zip -r reactjs_20211010_1010.zip reactjs -x '**/node_modules/*' -x '**/dist/*' yarn upgrade yarn install yarn start
Knowledge
yarn config set key=value [key=value...] yarn config delete key [key ...] yarn config get [key ...] yarn config list yarn config edit | |
| |
npm install yarn@latest -g yarn list -g --depth 0 node -v yarn -v |
yarn cache clean -f && yarn install -g n && n stable yarn install -g npm yarn upgrade -g yarn update -g |
| |
yarn install -g serve serve -s build |