dhtpublic / dht_gin_custom
DHT Gin 自定义样式
1.7.5
2024-09-13 12:35 UTC
Requires
- php: >=8.1.0
- drupal/gin: ^3.0@RC
- dev-main
- 1.7.5
- 1.7.4
- 1.7.3
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.9
- 1.6.8
- 1.6.7
- 1.6.6
- 1.6.5
- 1.6.4
- 1.6.3
- 1.6.2
- 1.6.1
- 1.6.0
- 1.5.9
- 1.5.8
- 1.5.7
- 1.5.6
- 1.5.5
- 1.5.4
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.9
- 1.4.8
- 1.4.7
- 1.4.6
- 1.4.5
- 1.4.4
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.9
- 1.3.8
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.9
- 1.2.8
- 1.2.7
- 1.2.6
- 1.2.5
- 1.2.4
- 1.2.3
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.9
- 1.1.8
- 1.1.7
- 1.1.6
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2024-09-13 12:35:45 UTC
README
信息
安装
composer require dhtpublic/dht_gin_custom
开发
Drupal 编码标准 必须遵守。代码、机器名和注释必须使用英语。
Gulp 现在可用
npm install
新版本
为新的发布创建一个新的标签,遵循 semver.org 标准。
查看当前的标签和版本
git tag
创建一个新版本
git tag x.x.x
git push
1. To push your changes into git use the common git push command
2. To update the version of the contrib module use the git push --tags
在模块中解决 .git 文件夹问题
Regardless of whether composer require or update the module in a project, please head to the contrib/dht_gin_custom folder and delete the .git folder
It could help adding following script to the composer.json if not allready included.
"scripts": {
"post-install-cmd": [
"@composer drupal:scaffold",
"find htdocs/vendor -name '.git' | xargs rm -rf",
"find htdocs/vendor -name '.git' | xargs rm -rf",
"find htdocs/modules -name '.git' | xargs rm -rf",
"find htdocs/modules -name '.github' | xargs rm -rf"
],
"post-update-cmd": [
"@composer drupal:scaffold",
"find htdocs/vendor -name '.git' | xargs rm -rf",
"find htdocs/vendor -name '.git' | xargs rm -rf",
"find htdocs/modules -name '.git' | xargs rm -rf",
"find htdocs/modules -name '.github' | xargs rm -rf"
]
}