![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
github.com/g-plane/zsh-yarn-autocompletions
You can customize the autocompletion of yarn add
command.
It's configurable.
Please go to the GitHub releases page and download the latest binary files.
Note that you should choose correct file according to your OS.
Unzip the compressed file you downloaded.
For 1.x (or above) users, please run:
$ ./install.sh $ZSH_CUSTOM/plugins
For 0.2 users, please run:
$ ./install.sh $ZSH_CUSTOM
Next please edit your .zshrc
file.
Add yarn-autocompletions
to plugins
section.
Like this:
plugins=(
# ... your other plugins
+ yarn-autocompletions
)
Restart your terminal.
Update your .zshrc
file with the following line:
zinit ice atload"zpcdreplay" atclone'./zplug.zsh'
zinit light g-plane/zsh-yarn-autocompletions
Update your .zshrc
file with the following line:
zplug "g-plane/zsh-yarn-autocompletions", hook-build:"./zplug.zsh", defer:2
yarn add
commandSince v1.0.0
This plugin support adding your favorite packages name for autocompletion
of yarn add
and yarn add --dev
command.
First, put a new file called .yarn-autocompletions.yml
in your home directory.
For example:
$ touch ~/.yarn-autocompletions.yml
This file is in YAML format.
We assume you want to add vue
and react
.
So you can edit that file like this:
dependencies:
- vue
- react
And dev_dependencies
:
dev_dependencies:
- vue-loader
- parcel-bundler
In fact, this plugin has some builtin packages autocompletion
which can provide out-of-the-box experience, such as vue
or react
.
However you don't like those builtin packages.
So you can add it to exclude
section:
exclude:
- react
Now you won't see react
in autocompletion.
Now the whole configuration file looks like:
dependencies:
- vue
- react
dev_dependencies:
- vue-loader
- parcel-bundler
exclude:
- react
Keep in mind that any sections are optional.
Make sure that you've installed rustup first and use rustup to install Rust.
Next, follow the steps below:
git clone https://github.com/g-plane/zsh-yarn-autocompletions.git
cd zsh-yarn-autocompletions
cargo build --release
mkdir -p $ZSH_CUSTOM/plugins/yarn-autocompletions
cp ./yarn-autocompletions.plugin.zsh $ZSH_CUSTOM/plugins/yarn-autocompletions/
cp ./target/release/yarn-autocompletions $ZSH_CUSTOM/plugins/yarn-autocompletions/
Then, edit your .zshrc
like this:
plugins=(
# ... your other plugins
+ yarn-autocompletions
)
Restart your terminal.
Any contributions are welcome.
MIT License
Copyright (c) 2018-present Pig Fang
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.