Replies: 2 comments 2 replies
-
You can also create a zip through git. Example: git archive --format zip --output your-theme.zip main Where |
Beta Was this translation helpful? Give feedback.
1 reply
-
I was using something like this (work in progress)
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As we know that any wp-theme could be compressed to a
*.zip
file for uploading to WordPress site. Would tailpress support the compressing feature?It would be best practice that finally
*.zip
shouldn't contain the following files or folders:node_modules
resources
package.json
,package-lock.json
,postcss.config.js
,tailwind.config.js
There're two approaches for reference:
First approach is compatible for the current project but the second approach is more clean and engineering because it follow the principle of SoC (Separation of concerns).
Beta Was this translation helpful? Give feedback.
All reactions