Yarn: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 87: Line 87:


| valign="top" |
| valign="top" |
  yarn cache clean -all && yarn global add n && n stable
  yarn cache clean --all && yarn global add n && n stable
  yarn global add npm
  yarn global add npm
  yarn upgrade -g
  yarn upgrade -g
Line 150: Line 150:
| valign="top" |
| valign="top" |
* [https://classic.yarnpkg.com/lang/en/docs/cli/self-update/ yarn self-update]
* [https://classic.yarnpkg.com/lang/en/docs/cli/self-update/ yarn self-update]
| valign="top" |
| valign="top" |
|-
| colspan="3" |
----
|-
| valign="top" |
* [[React Native]]
* [[PrimeFaces]]
* [[JavaScript]]
* [[Angular:4]]
* [[ReactJS]]
* [[ExtJS]]
| valign="top" |
| valign="top" |
| valign="top" |
| valign="top" |
|-
| colspan="3" |
----
|-
| valign="top" |
* [[CocoaPods]]
* [[Maven]]
* [[Conan]]
* [[Bazel]]
* [[NPM]]
* [[Ant]]
* [[Ivy]]


| valign="top" |
| valign="top" |

Latest revision as of 20:58, 18 January 2024

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 --port 4300
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
rm -rf ~/.yarn*

current & active version
yarn set version berry

npm install --global yarn
yarn list -g --depth 0
node -v
yarn -v
yarn cache clean --all && yarn global add n && n stable
yarn global add npm
yarn upgrade -g
yarn update -g

yarn global add serve
serve -s build
sudo snap install serve
serve -d build

References