This repository contains various tooling configurations for NubeIO internal projects.
To use the shared configuration in your project, you need to add this repository as a submodule.
Run the following command in your project to add the configuration as a submodule:
git submodule add git@github.com:NubeIO/tailwind-config.git tooling/tailwind
If the submodule has already been added, you need to initialize all submodules after pulling the repository:
git submodule update --init
To update the submodule to the latest version, run:
git submodule update --remote --merge
If you ever need to remove a submodule, use the following steps:
- Delete the relevant section from
.gitmodules
. - Delete the relevant section from
.git/config
. - Run
git rm --cached tooling/tailwind
. - Commit the changes and delete the submodule directory.
More shared tooling configurations will be added to this repository over time. Make sure to check back for updates and new tools to enhance your development workflow.