-
-
Notifications
You must be signed in to change notification settings - Fork 43
Closed
amiabl-programr/jargons.dev
#3Labels
↗️ medium priorityThis issue is crucialThis issue is crucial✨ enhancementNew feature or request or improvementNew feature or request or improvementgood first issueGood for newcomersGood for newcomers
Description
Currently, Tailwind CSS is listed as a dependency in package.json. To align with our development practices, we should move Tailwind CSS to devDependencies.
Steps:
- Open
package.jsonfile. - Locate the
"dependencies"section. - Find the entry for
"tailwindcss"and cut it. - Scroll down to the
"devDependencies"section. - Paste the
"tailwindcss"entry under"devDependencies". - Save the
package.jsonfile.
Additional Steps:
- Run
npm installto update thepackage-lock.jsonfile with the changes made topackage.json.
Additional Note:
- Moving Tailwind CSS to
devDependenciesensures that it is only installed in the development environment, reducing the package size in production builds. - This should be easy 😉, feel free to ask question if you have any challenges following through the steps
Metadata
Metadata
Assignees
Labels
↗️ medium priorityThis issue is crucialThis issue is crucial✨ enhancementNew feature or request or improvementNew feature or request or improvementgood first issueGood for newcomersGood for newcomers